X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;ds=sidebyside;f=kconfig_hardened_check%2Ftest_engine.py;h=c5f6beb55c8800a5e3c29f343240d5641fca1d9b;hb=28d6393fabcd704663cd2e73057f9b18802392af;hp=ca6698f12a181bcaf511311fe84658330023950d;hpb=f08db00f97baf8004863be191c89285ad6c333f5;p=kconfig-hardened-check.git diff --git a/kconfig_hardened_check/test_engine.py b/kconfig_hardened_check/test_engine.py index ca6698f..c5f6beb 100644 --- a/kconfig_hardened_check/test_engine.py +++ b/kconfig_hardened_check/test_engine.py @@ -11,12 +11,88 @@ 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): + """ + Example test scenario: + + # 1. prepare 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')] + + # 2. prepare the parsed kconfig options + parsed_kconfig_options = OrderedDict() + parsed_kconfig_options['CONFIG_KCONFIG_NAME'] = 'UNexpected_1' + + # 3. prepare the parsed cmdline options + parsed_cmdline_options = OrderedDict() + parsed_cmdline_options['cmdline_name'] = 'expected_2' + + # 4. prepare the kernel version + kernel_version = (42, 43) + + # 5. run the engine + result = [] + self.run_engine(config_checklist, + parsed_kconfig_options, parsed_cmdline_options, kernel_version, + result) + + # 6. check that the results are correct + # self.assertEqual(... + """ + + @staticmethod + def run_engine(checklist, + parsed_kconfig_options, parsed_cmdline_options, kernel_version, + result): + # populate the checklist with data + populate_with_data(checklist, parsed_kconfig_options, 'kconfig') + populate_with_data(checklist, parsed_cmdline_options, 'cmdline') + populate_with_data(checklist, kernel_version, 'version') + + # now everything is ready, perform the checks + perform_checks(checklist) + + # print the table with the results + print('TABLE:') + for opt in checklist: + opt.table_print(None, True) # default mode, with_results + print() + + # print the results in JSON + print('JSON:') + for opt in checklist: + result.append(opt.json_dump(True)) # with_results + print(json.dumps(result)) + print() + + def test_1(self): + # 1. prepare 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')] + + # 2. prepare the parsed kconfig options + parsed_kconfig_options = OrderedDict() + parsed_kconfig_options['CONFIG_KCONFIG_NAME'] = 'UNexpected_1' + + # 3. prepare the parsed cmdline options + parsed_cmdline_options = OrderedDict() + parsed_cmdline_options['cmdline_name'] = 'expected_2' + + # 4. prepare the kernel version + kernel_version = (42, 43) + + # 5. run the engine + self.run_engine(config_checklist, parsed_kconfig_options, parsed_cmdline_options, kernel_version) + + # 6. check that the results are correct self.assertEqual('foo'.upper(), 'FOO') - def test_isupper(self): + def test_2(self): self.assertTrue('FOO'.isupper()) - self.assertTrue('Foo'.isupper())