from cgroup import Cgroup, CgroupVersion
import consts
import ftests
-import os
import sys
+import os
CONTROLLER = 'memory'
CGNAME = '008cgget'
SETTING2_V2 = 'memory.high'
VALUE2 = '1024000'
+
def prereqs(config):
result = consts.TEST_PASSED
cause = None
return result, cause
+
def setup(config):
Cgroup.create(config, CONTROLLER, CGNAME)
Cgroup.set(config, CGNAME, SETTING1_V2, VALUE1)
Cgroup.set(config, CGNAME, SETTING2_V2, VALUE2)
+
def test(config):
result = consts.TEST_PASSED
cause = None
version = CgroupVersion.get_version(CONTROLLER)
if version == CgroupVersion.CGROUP_V1:
- settings=[SETTING1_V1, SETTING2_V1]
+ settings = [SETTING1_V1, SETTING2_V1]
elif version == CgroupVersion.CGROUP_V2:
- settings=[SETTING1_V2, SETTING2_V2]
+ settings = [SETTING1_V2, SETTING2_V2]
out = Cgroup.get(config, controller=None, cgname=CGNAME, setting=settings)
- if out.splitlines()[0] != "{}:".format(CGNAME):
+ if out.splitlines()[0] != '{}:'.format(CGNAME):
result = consts.TEST_FAILED
- cause = "cgget expected the cgroup name {} in the first line.\n" \
- "Instead it received {}".format(CGNAME, out.splitlines()[0])
+ cause = (
+ 'cgget expected the cgroup name {} in the first line.\n'
+ 'Instead it received {}'
+ ''.format(CGNAME, out.splitlines()[0])
+ )
- if out.splitlines()[1] != "{}: {}".format(settings[0], VALUE1):
+ if out.splitlines()[1] != '{}: {}'.format(settings[0], VALUE1):
result = consts.TEST_FAILED
- cause = "cgget expected the following:\n\t" \
- "{}: {}\nbut received:\n\t{}".format(
- settings[0], VALUE1, out.splitlines()[1])
+ cause = (
+ 'cgget expected the following:\n\t{}: {}\n'
+ 'but received:\n\t{}'
+ ''.format(settings[0], VALUE1, out.splitlines()[1])
+ )
- if out.splitlines()[2] != "{}: {}".format(settings[1], VALUE2):
+ if out.splitlines()[2] != '{}: {}'.format(settings[1], VALUE2):
result = consts.TEST_FAILED
- cause = "cgget expected the following:\n\t" \
- "{}: {}\nbut received:\n\t{}".format(
- settings[1], VALUE2, out.splitlines()[2])
+ cause = (
+ 'cgget expected the following:\n\t{}: {}\n'
+ 'but received:\n\t{}'
+ ''.format(settings[1], VALUE2, out.splitlines()[2])
+ )
return result, cause
+
def teardown(config):
Cgroup.delete(config, CONTROLLER, CGNAME)
+
def main(config):
[result, cause] = prereqs(config)
if result != consts.TEST_PASSED:
return [result, cause]
+
if __name__ == '__main__':
config = ftests.parse_args()
# this test was invoked directly. run only it