]> git.ipfire.org Git - thirdparty/libcgroup.git/commitdiff
test-008: make it PEP8 compliant
authorKamalesh Babulal <kamalesh.babulal@oracle.com>
Tue, 15 Feb 2022 07:00:59 +0000 (12:30 +0530)
committerTom Hromatka <tom.hromatka@oracle.com>
Wed, 16 Feb 2022 19:09:18 +0000 (12:09 -0700)
Make test 008-cgget-multiple_r_flags.py PEP-8 compliant.

Signed-off-by: Kamalesh Babulal <kamalesh.babulal@oracle.com>
Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com>
ftests/008-cgget-multiple_r_flags.py

index b522f49153b996b000adb89519cfb499684313b3..761da71e621882c2d115b8469aad58a667157c56 100755 (executable)
@@ -23,8 +23,8 @@
 from cgroup import Cgroup, CgroupVersion
 import consts
 import ftests
-import os
 import sys
+import os
 
 CONTROLLER = 'memory'
 CGNAME = '008cgget'
@@ -37,12 +37,14 @@ SETTING2_V1 = 'memory.soft_limit_in_bytes'
 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)
 
@@ -55,6 +57,7 @@ def setup(config):
         Cgroup.set(config, CGNAME, SETTING1_V2, VALUE1)
         Cgroup.set(config, CGNAME, SETTING2_V2, VALUE2)
 
+
 def test(config):
     result = consts.TEST_PASSED
     cause = None
@@ -62,34 +65,43 @@ def test(config):
     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:
@@ -101,6 +113,7 @@ def main(config):
 
     return [result, cause]
 
+
 if __name__ == '__main__':
     config = ftests.parse_args()
     # this test was invoked directly.  run only it