X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=kconfig_hardened_check%2Ftest_engine.py;h=8dea037bc701bd3a9660c460829ff513a0e9a5f2;hb=1a8840f79258007750d7227dd93c494739678793;hp=c5f6beb55c8800a5e3c29f343240d5641fca1d9b;hpb=28d6393fabcd704663cd2e73057f9b18802392af;p=kconfig-hardened-check.git diff --git a/kconfig_hardened_check/test_engine.py b/kconfig_hardened_check/test_engine.py index c5f6beb..8dea037 100644 --- a/kconfig_hardened_check/test_engine.py +++ b/kconfig_hardened_check/test_engine.py @@ -10,6 +10,8 @@ Author: Alexander Popov This module performs unit-testing of the kconfig-hardened-check engine. """ +# pylint: disable=missing-function-docstring,line-too-long + import unittest from collections import OrderedDict import json @@ -71,28 +73,24 @@ class TestEngine(unittest.TestCase): print(json.dumps(result)) print() - def test_1(self): + def test_kconfig_ok(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')] + config_checklist += [KconfigCheck('reason_1', 'decision_1', 'NAME_1', 'expected_1')] # 2. prepare the parsed kconfig options parsed_kconfig_options = OrderedDict() - parsed_kconfig_options['CONFIG_KCONFIG_NAME'] = 'UNexpected_1' + parsed_kconfig_options['CONFIG_NAME_1'] = 'expected_1' - # 3. prepare the parsed cmdline options - parsed_cmdline_options = OrderedDict() - parsed_cmdline_options['cmdline_name'] = 'expected_2' + # 3. run the engine + result = [] + self.run_engine(config_checklist, parsed_kconfig_options, None, None, result) - # 4. prepare the kernel version - kernel_version = (42, 43) + # 4. check that the results are correct + self.assertEqual( + result, + [["CONFIG_NAME_1", "kconfig", "expected_1", "decision_1", "reason_1", "OK"]] + ) - # 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_2(self): - self.assertTrue('FOO'.isupper())