Add the first unit-test draft
authorAlexander Popov <alex.popov@linux.com>
Fri, 24 Mar 2023 20:10:35 +0000 (23:10 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 24 Mar 2023 20:10:35 +0000 (23:10 +0300)
.github/workflows/engine_unit-test.yml
kconfig_hardened_check/test_engine.py

index 3c6cf4fe17f956655e1991b302fde9634e8b67f6..71204aec98aca2219d52de201e48459380e21d92 100644 (file)
@@ -34,7 +34,7 @@ jobs:
 
     - name: Run unit-tests and collect coverage
       run: |
-        coverage run --include=kconfig_hardened_check/engine.py,kconfig_hardened_check/test_engine.py -m unittest -v
+        coverage run --include=kconfig_hardened_check/engine.py,kconfig_hardened_check/test_engine.py -m unittest -v -b
         coverage xml -i -o coverage_unittest.xml
 
     - name: Handle coverage
index 951ac4775bf68dc6e8c2771ada2718a5b58604a5..7b3467984a08c3e8e1e0bd5a6c89968735f3dd13 100644 (file)
@@ -11,11 +11,49 @@ This module performs unit-testing of the kconfig-hardened-check engine.
 """
 
 import unittest
-# from .engine import populate_with_data, perform_checks
+from collections import OrderedDict
+import json
+from .engine import KconfigCheck, CmdlineCheck, populate_with_data, perform_checks
 
 class TestEngine(unittest.TestCase):
-    def test_upper(self):
+    def test_1(self):
+        # add checks to the checklist
+        config_checklist = []
+        config_checklist += [KconfigCheck('reason_1', 'decision_1', 'KCONFIG_NAME', 'expected_1')]
+        config_checklist += [CmdlineCheck('reason_2', 'decision_2', 'cmdline_name', 'expected_2')]
+
+        # populate the checklist with the parsed kconfig data
+        parsed_kconfig_options = OrderedDict()
+        parsed_kconfig_options['CONFIG_KCONFIG_NAME'] = 'UNexpected_1'
+        populate_with_data(config_checklist, parsed_kconfig_options, 'kconfig')
+
+        # populate the checklist with the parsed cmdline data
+        parsed_cmdline_options = OrderedDict()
+        parsed_cmdline_options['cmdline_name'] = 'expected_2'
+        populate_with_data(config_checklist, parsed_cmdline_options, 'cmdline')
+
+        # populate the checklist with the kernel version data
+        kernel_version = (42, 43)
+        populate_with_data(config_checklist, kernel_version, 'version')
+
+        # now everything is ready, perform the checks
+        perform_checks(config_checklist)
+
+        # print the results in json
+        output = []
+        print('JSON:')
+        for opt in config_checklist:
+            output.append(opt.json_dump(True))
+        print(json.dumps(output))
+
+        # print the results
+        print('TABLE:')
+        for opt in config_checklist:
+            opt.table_print(None, True)
+            print()
+        print()
+
         self.assertEqual('foo'.upper(), 'FOO')
 
-    def test_isupper(self):
+    def test_2(self):
         self.assertTrue('FOO'.isupper())