mirror of
https://github.com/containers/podman-compose.git
synced 2025-05-01 04:44:43 +02:00
- Change compose-up to create then start container to enforce dependency condition check - Skip running compose-down when there are no active containers - Skip dependency health check to avoid compose-up hang for podman prior to 4.6.0, which doesn't support --condition healthy - Add relevant integration test case - Relax the pylint rules for test code Signed-off-by: Justin Zhang <schnell18@gmail.com>
112 lines
3.4 KiB
Python
112 lines
3.4 KiB
Python
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
import os
|
|
import unittest
|
|
|
|
from tests.integration.test_utils import RunSubprocessMixin
|
|
from tests.integration.test_utils import podman_compose_path
|
|
from tests.integration.test_utils import test_path
|
|
|
|
|
|
def compose_yaml_path():
|
|
return os.path.join(os.path.join(test_path(), "extends"), "docker-compose.yaml")
|
|
|
|
|
|
class TestComposeExteds(unittest.TestCase, RunSubprocessMixin):
|
|
def test_extends_service_launch_echo(self):
|
|
try:
|
|
self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"up",
|
|
"echo",
|
|
])
|
|
output, _ = self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"logs",
|
|
"echo",
|
|
])
|
|
self.assertEqual(output, b"Zero\n")
|
|
finally:
|
|
self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"down",
|
|
])
|
|
|
|
def test_extends_service_launch_echo1(self):
|
|
try:
|
|
self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"up",
|
|
"echo1",
|
|
])
|
|
output, _ = self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"logs",
|
|
"echo1",
|
|
])
|
|
self.assertEqual(output, b"One\n")
|
|
finally:
|
|
self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"down",
|
|
])
|
|
|
|
def test_extends_service_launch_env1(self):
|
|
try:
|
|
self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"up",
|
|
"env1",
|
|
])
|
|
output, _ = self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"logs",
|
|
"env1",
|
|
])
|
|
lines = output.decode('utf-8').split('\n')
|
|
# Test selected env variables to improve robustness
|
|
lines = sorted([
|
|
line
|
|
for line in lines
|
|
if line.startswith("BAR")
|
|
or line.startswith("BAZ")
|
|
or line.startswith("FOO")
|
|
or line.startswith("HOME")
|
|
or line.startswith("PATH")
|
|
or line.startswith("container")
|
|
])
|
|
self.assertEqual(
|
|
lines,
|
|
[
|
|
'BAR=local',
|
|
'BAZ=local',
|
|
'FOO=original',
|
|
'HOME=/root',
|
|
'PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
|
|
'container=podman',
|
|
],
|
|
)
|
|
finally:
|
|
self.run_subprocess_assert_returncode([
|
|
podman_compose_path(),
|
|
"-f",
|
|
compose_yaml_path(),
|
|
"down",
|
|
])
|