From 7d62a7fba7370b6bdf1f8dbe7377f67436596e85 Mon Sep 17 00:00:00 2001 From: Alexander Popov Date: Fri, 24 Mar 2023 23:10:35 +0300 Subject: [PATCH] Add the first unit-test draft --- .github/workflows/engine_unit-test.yml | 2 +- kconfig_hardened_check/test_engine.py | 44 ++++++++++++++++++++++++-- 2 files changed, 42 insertions(+), 4 deletions(-) diff --git a/.github/workflows/engine_unit-test.yml b/.github/workflows/engine_unit-test.yml index 3c6cf4f..71204ae 100644 --- a/.github/workflows/engine_unit-test.yml +++ b/.github/workflows/engine_unit-test.yml @@ -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 diff --git a/kconfig_hardened_check/test_engine.py b/kconfig_hardened_check/test_engine.py index 951ac47..7b34679 100644 --- a/kconfig_hardened_check/test_engine.py +++ b/kconfig_hardened_check/test_engine.py @@ -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()) -- 2.31.1