|
| 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 | + split_output = out.strip(b"\n").split(b"\n") |
| 30 | + |
| 31 | + # trow away system specific default ulimit values |
| 32 | + output_part = [ |
| 33 | + el |
| 34 | + for el in split_output |
| 35 | + if not el.startswith(b"soft process") and not el.startswith(b"hard process") |
| 36 | + ] |
| 37 | + # BUG: figure out why echo is called twice |
| 38 | + self.assertEqual( |
| 39 | + output_part, |
| 40 | + [ |
| 41 | + b"soft nofile limit 1001", |
| 42 | + b"hard nofile limit 1001", |
| 43 | + b"soft nofile limit 1001", |
| 44 | + b"hard nofile limit 1001", |
| 45 | + ], |
| 46 | + ) |
| 47 | + |
| 48 | + out, _ = self.run_subprocess_assert_returncode([ |
| 49 | + "podman", |
| 50 | + "logs", |
| 51 | + "ulimit_ulimit2_1", |
| 52 | + ]) |
| 53 | + self.assertEqual( |
| 54 | + out, |
| 55 | + b"soft process limit 1002\nhard process limit 2002\nsoft nofile limit 1002\n" |
| 56 | + b"hard nofile limit 1002\nsoft process limit 1002\nhard process limit 2002\n" |
| 57 | + b"soft nofile limit 1002\nhard nofile limit 1002\n", |
| 58 | + ) |
| 59 | + |
| 60 | + out, _ = self.run_subprocess_assert_returncode([ |
| 61 | + "podman", |
| 62 | + "logs", |
| 63 | + "ulimit_ulimit3_1", |
| 64 | + ]) |
| 65 | + self.assertEqual( |
| 66 | + out, |
| 67 | + b"soft process limit 1003\nhard process limit 2003\nsoft nofile limit 1003\n" |
| 68 | + b"hard nofile limit 1003\nsoft process limit 1003\nhard process limit 2003\n" |
| 69 | + b"soft nofile limit 1003\nhard nofile limit 1003\n", |
| 70 | + ) |
| 71 | + finally: |
| 72 | + self.run_subprocess_assert_returncode([ |
| 73 | + podman_compose_path(), |
| 74 | + "-f", |
| 75 | + compose_path, |
| 76 | + "down", |
| 77 | + ]) |
0 commit comments