-
Notifications
You must be signed in to change notification settings - Fork 483
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1012 from mokibit/automate-exit-from-tests
tests/integration: Automate manual `exit-from` tests
- Loading branch information
Showing
3 changed files
with
54 additions
and
21 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
|
||
import os | ||
import unittest | ||
|
||
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(), "exit-from"), "docker-compose.yaml") | ||
|
||
|
||
class TestComposeExitFrom(unittest.TestCase, RunSubprocessMixin): | ||
def test_exit_code_sh1(self): | ||
try: | ||
self.run_subprocess_assert_returncode( | ||
[ | ||
podman_compose_path(), | ||
"-f", | ||
compose_yaml_path(), | ||
"up", | ||
"--exit-code-from=sh1", | ||
], | ||
1, | ||
) | ||
finally: | ||
self.run_subprocess_assert_returncode([ | ||
podman_compose_path(), | ||
"-f", | ||
compose_yaml_path(), | ||
"down", | ||
]) | ||
|
||
def test_exit_code_sh2(self): | ||
try: | ||
self.run_subprocess_assert_returncode( | ||
[ | ||
podman_compose_path(), | ||
"-f", | ||
compose_yaml_path(), | ||
"up", | ||
"--exit-code-from=sh2", | ||
], | ||
2, | ||
) | ||
finally: | ||
self.run_subprocess_assert_returncode([ | ||
podman_compose_path(), | ||
"-f", | ||
compose_yaml_path(), | ||
"down", | ||
]) |