Skip to content

Commit 7d6968c

Browse files
committed
tests/integration: Automate manual ulimit test
Signed-off-by: Monika Kairaityte <[email protected]>
1 parent c46ecb2 commit 7d6968c

File tree

3 files changed

+73
-4
lines changed

3 files changed

+73
-4
lines changed

tests/integration/ulimit/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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+
])

tests/integration/ulimit/ulimit.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/sh
22

3-
echo "soft process limit"
3+
echo -n "soft process limit "
44
ulimit -S -u
5-
echo "hard process limit"
5+
echo -n "hard process limit "
66
ulimit -H -u
7-
echo "soft nofile limit"
7+
echo -n "soft nofile limit "
88
ulimit -S -n
9-
echo "hard nofile limit"
9+
echo -n "hard nofile limit "
1010
ulimit -H -n

0 commit comments

Comments
 (0)