Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kernel-hardening-checker
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-depend
kernel-hardening-checker
Commits
dd45244e
You need to sign in or sign up before continuing.
Commit
dd45244e
authored
Mar 24, 2023
by
Alexander Popov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix pylint warnings: add class docstring
parent
90b7e8cd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
test_engine.py
kconfig_hardened_check/test_engine.py
+30
-0
No files found.
kconfig_hardened_check/test_engine.py
View file @
dd45244e
...
@@ -15,7 +15,37 @@ from collections import OrderedDict
...
@@ -15,7 +15,37 @@ from collections import OrderedDict
import
json
import
json
from
.engine
import
KconfigCheck
,
CmdlineCheck
,
populate_with_data
,
perform_checks
from
.engine
import
KconfigCheck
,
CmdlineCheck
,
populate_with_data
,
perform_checks
class
TestEngine
(
unittest
.
TestCase
):
class
TestEngine
(
unittest
.
TestCase
):
"""
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
@staticmethod
def
run_engine
(
checklist
,
parsed_kconfig_options
,
parsed_cmdline_options
,
kernel_version
):
def
run_engine
(
checklist
,
parsed_kconfig_options
,
parsed_cmdline_options
,
kernel_version
):
# populate the checklist with data
# populate the checklist with data
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment