Skip to content

Commit a1be62f

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

File tree

3 files changed

+82
-4
lines changed

3 files changed

+82
-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,77 @@
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+
])

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)