|
| 1 | +# SPDX-License-Identifier: GPL-2.0 |
| 2 | + |
| 3 | + |
| 4 | +import os |
| 5 | +import unittest |
| 6 | + |
| 7 | +from tests.integration.test_utils import RunSubprocessMixin |
| 8 | +from tests.integration.test_utils import podman_compose_path |
| 9 | +from tests.integration.test_utils import test_path |
| 10 | + |
| 11 | + |
| 12 | +class TestUlimit(unittest.TestCase, RunSubprocessMixin): |
| 13 | + def test_ulimit(self): |
| 14 | + compose_path = os.path.join(test_path(), "ulimit/docker-compose.yaml") |
| 15 | + try: |
| 16 | + self.run_subprocess_assert_returncode([ |
| 17 | + podman_compose_path(), |
| 18 | + "-f", |
| 19 | + compose_path, |
| 20 | + "up", |
| 21 | + "-d", |
| 22 | + ]) |
| 23 | + |
| 24 | + out, _ = self.run_subprocess_assert_returncode([ |
| 25 | + "podman", |
| 26 | + "logs", |
| 27 | + "ulimit_ulimit1_1", |
| 28 | + ]) |
| 29 | + # BUG: figure out why echo is called twice |
| 30 | + # somehow echo doubles output information, so repeated part is thrown away |
| 31 | + split_output = out.split(b"\n")[0:4] |
| 32 | + # trow away system specific default ulimit values |
| 33 | + output_part = [] |
| 34 | + for el in split_output: |
| 35 | + if not el.startswith(b"soft process") and not el.startswith(b"hard process"): |
| 36 | + output_part.append(el) |
| 37 | + self.assertEqual(output_part, [b"soft nofile limit 1001", b"hard nofile limit 1001"]) |
| 38 | + |
| 39 | + out, _ = self.run_subprocess_assert_returncode([ |
| 40 | + "podman", |
| 41 | + "logs", |
| 42 | + "ulimit_ulimit2_1", |
| 43 | + ]) |
| 44 | + self.assertEqual( |
| 45 | + out, |
| 46 | + b"soft process limit 1002\nhard process limit 2002\nsoft nofile limit 1002\n" |
| 47 | + b"hard nofile limit 1002\nsoft process limit 1002\nhard process limit 2002\n" |
| 48 | + b"soft nofile limit 1002\nhard nofile limit 1002\n", |
| 49 | + ) |
| 50 | + |
| 51 | + out, _ = self.run_subprocess_assert_returncode([ |
| 52 | + "podman", |
| 53 | + "logs", |
| 54 | + "ulimit_ulimit3_1", |
| 55 | + ]) |
| 56 | + self.assertEqual( |
| 57 | + out, |
| 58 | + b"soft process limit 1003\nhard process limit 2003\nsoft nofile limit 1003\n" |
| 59 | + b"hard nofile limit 1003\nsoft process limit 1003\nhard process limit 2003\n" |
| 60 | + b"soft nofile limit 1003\nhard nofile limit 1003\n", |
| 61 | + ) |
| 62 | + finally: |
| 63 | + self.run_subprocess_assert_returncode([ |
| 64 | + podman_compose_path(), |
| 65 | + "-f", |
| 66 | + compose_path, |
| 67 | + "down", |
| 68 | + ]) |
0 commit comments