Skip to content

Commit

Permalink
tests/integration: Automate manual 'nets_test1' test
Browse files Browse the repository at this point in the history
Signed-off-by: Monika Kairaityte <[email protected]>
  • Loading branch information
mokibit committed Sep 26, 2024
1 parent f8ea85e commit 2f0bf23
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions tests/integration/test_podman_compose_nets_test1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# SPDX-License-Identifier: GPL-2.0

import os
import unittest

import requests

from tests.integration.test_podman_compose import podman_compose_path
from tests.integration.test_podman_compose import test_path
from tests.integration.test_utils import RunSubprocessMixin


def compose_yaml_path():
return os.path.join(os.path.join(test_path(), "nets_test1"), "docker-compose.yml")


class TestComposeNetsTest1(unittest.TestCase, RunSubprocessMixin):
# test if port mapping works as expected
def test_nets_test1(self):
try:
self.run_subprocess_assert_returncode(
[
podman_compose_path(),
"-f",
compose_yaml_path(),
"up",
"-d",
],
)
output, _ = self.run_subprocess_assert_returncode([
podman_compose_path(),
"-f",
compose_yaml_path(),
"ps",
])
self.assertIn(b"nets_test1_web1_1", output)
self.assertIn(b"nets_test1_web2_1", output)

response = requests.get('http://localhost:8001/index.txt')
self.assertEqual(response.ok, True)
self.assertEqual(response.text, "test1\n")

response = requests.get('http://localhost:8002/index.txt')
self.assertEqual(response.ok, True)
self.assertEqual(response.text, "test2\n")
finally:
self.run_subprocess_assert_returncode([
podman_compose_path(),
"-f",
compose_yaml_path(),
"down",
"-t",
"0",
])

0 comments on commit 2f0bf23

Please sign in to comment.