test_engine: add test_kconfig_fail()
authorAlexander Popov <alex.popov@linux.com>
Fri, 24 Mar 2023 20:16:41 +0000 (23:16 +0300)
committerAlexander Popov <alex.popov@linux.com>
Fri, 24 Mar 2023 20:16:41 +0000 (23:16 +0300)
kconfig_hardened_check/test_engine.py

index 8dea037bc701bd3a9660c460829ff513a0e9a5f2..12241d16944524967e9d12621baedcebbb5a3e5e 100644 (file)
@@ -92,5 +92,21 @@ class TestEngine(unittest.TestCase):
                 [["CONFIG_NAME_1", "kconfig", "expected_1", "decision_1", "reason_1", "OK"]]
         )
 
+    def test_kconfig_fail(self):
+        # 1. prepare the checklist
+        config_checklist = []
+        config_checklist += [KconfigCheck('reason_2', 'decision_2', 'NAME_2', 'expected_2')]
+
+        # 2. prepare the parsed kconfig options
+        parsed_kconfig_options = OrderedDict()
+        parsed_kconfig_options['CONFIG_NAME_2'] = 'UNexpected_2'
 
+        # 3. run the engine
+        result = []
+        self.run_engine(config_checklist, parsed_kconfig_options, None, None, result)
 
+        # 4. check that the results are correct
+        self.assertEqual(
+                result,
+                [["CONFIG_NAME_2", "kconfig", "expected_2", "decision_2", "reason_2", "FAIL: \"UNexpected_2\""]]
+        )