Files
chipsec-chipsec/tests/hardware/test_generic.py
T
Frinzell, Aaron fbde218dff Update tests for decoupling parse_arg()
Signed-off-by: Frinzell, Aaron <aaron.frinzell@intel.com>
2022-12-05 12:16:00 -06:00

77 lines
2.6 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 platform
import tempfile
import unittest
try:
import distro
mSystem = distro.linux_distribution()
except:
if platform.system() == "Windows":
# Windows does not have a "distribution"
mSystem = None
else:
mSystem = platform.dist()
import chipsec_main
from chipsec import logger
class GenericHardwareTest(unittest.TestCase):
BOOT_MODE_LEGACY = 1
BOOT_MODE_UEFI = 2
def setUp(self):
if hasattr(self, "SYSTEM") and platform.system() != self.SYSTEM:
self.skipTest("Unsupported system {}".format(self.SYSTEM))
if hasattr(self, "DIST") and mSystem != self.DIST:
self.skipTest("Unsupported distribution {}".format(self.DIST))
if (hasattr(self, "PRODUCT_NAME") and
self.product_name() != self.PRODUCT_NAME):
self.skipTest("Unsupported platform {}".format(self.PRODUCT_NAME))
if (hasattr(self, "BIOS_VERSION") and
self.bios_version() != self.BIOS_VERSION):
self.skipTest("Unsupported BIOS version "
"{}".format(self.BIOS_VERSION))
if hasattr(self, "BOOT_MODE") and self.boot_mode() != self.BOOT_MODE:
self.skipTest("Unsupported boot type {}".format(self.BOOT_MODE))
_, self.log_file = tempfile.mkstemp()
def tearDown(self):
os.remove(self.log_file)
def _generic_main(self):
arg = ['-l', self.log_file]
par = chipsec_main.parse_args(arg)
cm = chipsec_main.ChipsecMain(par, arg)
error_code = cm.main()
cm.logger.close()
self.log = open(self.log_file).read()
self.assertLessEqual(error_code, 31,
"At least one test raised an error")
for test in self.PASS:
self.assertIn("PASSED: {}".format(test), self.log)
for test in self.SKIPPED:
self.assertIn("SKIPPED: {}".format(test), self.log)