#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 unittest from chipsec.exceptions import UnknownChipsetError from tests.software import cs from tests.software import mock_helper class TestPlatformChipsecCs(cs.TestChipsecCs): """Test the platform commands exposed by chipsec chipset.""" def test_platform(self): p = self._chipsec_cs("get_chipset_code", mock_helper.ValidChipsetHelper) self.assertEqual('SKL', p) def test_platform_given(self): p = self._chipsec_cs("get_chipset_code", mock_helper.InvalidChipsetHelper, 'CML') self.assertEqual('CML', p) def test_platform_invalid(self): try: p = self._chipsec_cs("get_chipset_code", mock_helper.InvalidChipsetHelper) self.assertTrue(False) except UnknownChipsetError: self.assertTrue(True) def test_pch(self): p = self._chipsec_cs("get_pch_code", mock_helper.ValidChipsetHelper) self.assertEqual('PCH_1xx', p) def test_pch_invalid(self): p = self._chipsec_cs("get_pch_code", mock_helper.InvalidPchHelper) self.assertEqual('', p) def test_pch_given(self): p = self._chipsec_cs("get_pch_code", mock_helper.InvalidPchHelper, None, 'PCH_495') self.assertEqual('PCH_495', p) if __name__ == '__main__': unittest.main()