diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-28 20:15:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-28 20:15:44 +0200 |
commit | f04776073d1e46cfd022e6daf8742e0968d50e4b (patch) | |
tree | faf2bd590e2ad890d7fb1de3e916647068e2409a /smoketest/scripts/cli | |
parent | 48e5266e2bca8d1d7a2ee4bacbe0e6628de3fa66 (diff) | |
parent | 74910564f82e2837cd7eb35ea21f07601e5f8f0d (diff) | |
download | vyos-1x-f04776073d1e46cfd022e6daf8742e0968d50e4b.tar.gz vyos-1x-f04776073d1e46cfd022e6daf8742e0968d50e4b.zip |
container: T6406: add CLI option for cpu-quota
Diffstat (limited to 'smoketest/scripts/cli')
-rwxr-xr-x | smoketest/scripts/cli/test_container.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_container.py b/smoketest/scripts/cli/test_container.py index 3201883b8..90f821c60 100755 --- a/smoketest/scripts/cli/test_container.py +++ b/smoketest/scripts/cli/test_container.py @@ -91,6 +91,22 @@ class TestContainer(VyOSUnitTestSHIM.TestCase): # Check for running process self.assertEqual(process_named_running(PROCESS_NAME), pid) + def test_cpu_limit(self): + cont_name = 'c2' + + self.cli_set(base_path + ['name', cont_name, 'allow-host-networks']) + self.cli_set(base_path + ['name', cont_name, 'image', cont_image]) + self.cli_set(base_path + ['name', cont_name, 'cpu-quota', '1.25']) + + self.cli_commit() + + pid = 0 + with open(PROCESS_PIDFILE.format(cont_name), 'r') as f: + pid = int(f.read()) + + # Check for running process + self.assertEqual(process_named_running(PROCESS_NAME), pid) + def test_ipv4_network(self): prefix = '192.0.2.0/24' base_name = 'ipv4' |