mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
4b65243d9c
Signed-off-by: Nathaniel Mitchell <nathaniel.p.mitchell@intel.com>
81 lines
2.7 KiB
Python
81 lines
2.7 KiB
Python
# CHIPSEC: Platform Security Assessment Framework
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; Version 2.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
#
|
|
#
|
|
import os
|
|
import tempfile
|
|
import unittest
|
|
|
|
from tests.software import mock_helper
|
|
|
|
import chipsec_util
|
|
from chipsec import chipset
|
|
|
|
|
|
class TestChipsecUtil(unittest.TestCase):
|
|
"""Test the commands exposed by chipsec_utils.
|
|
|
|
Each test may define its virtual helper and then call the _chipsec_util
|
|
method with the command line arguments.
|
|
"""
|
|
|
|
def setUp(self):
|
|
"""Setup the environment for the utils tests.
|
|
|
|
We mock the helper registry to only contain our emulated helper.
|
|
"""
|
|
fileno, self.log_file = tempfile.mkstemp()
|
|
os.close(fileno)
|
|
chipset._chipset = None
|
|
|
|
def tearDown(self):
|
|
os.remove(self.log_file)
|
|
chipset._chipset = None
|
|
chipsec_util._cs = None
|
|
|
|
def _chipsec_util(self, arg, helper_class=mock_helper.TestHelper):
|
|
"""Run the chipsec_util command with the arguments.
|
|
|
|
Each test may setup a virtual helper to emulate the expected behaviour
|
|
from the hardware. If no helper is provided, TestHelper will be used.
|
|
It verifies that no error is being reported. self.log will be populated
|
|
with the output.
|
|
"""
|
|
args = arg.split()
|
|
par = chipsec_util.parse_args(args)
|
|
util = chipsec_util.ChipsecUtil(par, args)
|
|
util._helper = helper_class()
|
|
util.logger.VERBOSE = True
|
|
util.logger.HAL = True
|
|
util.logger.set_log_file(self.log_file)
|
|
try:
|
|
err_code = util.main()
|
|
finally:
|
|
util.logger.close()
|
|
with open(self.log_file, 'rb') as log:
|
|
self.log = log.read()
|
|
if err_code != 0:
|
|
print(self.log)
|
|
self.assertEqual(err_code, 0)
|
|
|
|
def _assertLogValue(self, name, value):
|
|
"""Shortcut to validate the output.
|
|
|
|
Assert that at least one line exists within the log which matches the
|
|
expression: name [:=] value.
|
|
"""
|
|
exp = r'(^|\W){}\s*[:=]\s*{}($|\W)'.format(name, value)
|
|
self.assertRegex(self.log, exp.encode())
|