mirror of
https://github.com/HorlogeSkynet/archey4
synced 2024-11-24 04:00:10 +01:00
271 lines
10 KiB
Python
271 lines
10 KiB
Python
"""Test module for Archey's device's model detection module"""
|
|
|
|
import unittest
|
|
from subprocess import CalledProcessError
|
|
from unittest.mock import mock_open, patch
|
|
|
|
from archey.entries.model import Model
|
|
from archey.test.entries import HelperMethods
|
|
|
|
|
|
class TestModelEntry(unittest.TestCase):
|
|
"""
|
|
For this test we have to go through several eventualities :
|
|
* Laptop / Desktop "regular" environments
|
|
* Raspberry Pi
|
|
* Virtual environment (as a VM or a container)
|
|
* Android devices
|
|
"""
|
|
|
|
@patch("archey.entries.model.check_output")
|
|
@patch("archey.entries.model.platform.release")
|
|
@HelperMethods.patch_clean_configuration
|
|
def test_fetch_virtual_env_info(self, platform_release_mock, check_output_mock):
|
|
"""Test `_fetch_virtual_env_info` method"""
|
|
model_mock = HelperMethods.entry_mock(Model)
|
|
|
|
with self.subTest("Detected virtual environment."):
|
|
# WSL mark on the kernel release string.
|
|
platform_release_mock.return_value = "X.Y.Z-R-Microsoft"
|
|
check_output_mock.side_effect = [] # No external calls.
|
|
|
|
self.assertEqual(
|
|
Model._fetch_virtual_env_info(model_mock), # pylint: disable=protected-access
|
|
"wsl",
|
|
)
|
|
|
|
# No WSL mark for the next cases.
|
|
platform_release_mock.reset_mock()
|
|
platform_release_mock.return_value = "X.Y.Z-R-ARCH"
|
|
|
|
check_output_mock.reset_mock()
|
|
|
|
with self.subTest("Detected virtual environment."):
|
|
check_output_mock.side_effect = [
|
|
FileNotFoundError(), # `systemd-detect-virt` is not available.
|
|
"xen\nxen-domU\n", # `virt-what` example output.
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_virtual_env_info(model_mock), # pylint: disable=protected-access
|
|
"xen, xen-domU",
|
|
)
|
|
|
|
check_output_mock.reset_mock()
|
|
|
|
with self.subTest("Virtual environment with systemd only."):
|
|
check_output_mock.side_effect = [
|
|
"systemd-nspawn\n", # `systemd-detect-virt` output.
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_virtual_env_info(model_mock), # pylint: disable=protected-access
|
|
"systemd-nspawn",
|
|
)
|
|
|
|
check_output_mock.reset_mock()
|
|
|
|
with self.subTest("Virtual environment with systemd and `dmidecode`."):
|
|
check_output_mock.side_effect = [
|
|
"systemd-nspawn\n", # `systemd-detect-virt` example output.
|
|
# `virt-what` won't be called (systemd call succeeded).
|
|
"HYPERVISOR-NAME\n", # `dmidecode` example output.
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_virtual_env_info(model_mock), # pylint: disable=protected-access
|
|
"systemd-nspawn",
|
|
)
|
|
|
|
check_output_mock.reset_mock()
|
|
|
|
with self.subTest("Not a virtual environment (systemd)."):
|
|
check_output_mock.side_effect = [CalledProcessError(1, "systemd-detect-virt", "none\n")]
|
|
|
|
self.assertIsNone(
|
|
Model._fetch_virtual_env_info(model_mock) # pylint: disable=protected-access
|
|
)
|
|
|
|
check_output_mock.reset_mock()
|
|
|
|
with self.subTest("Not a virtual environment (virt-what)."):
|
|
check_output_mock.side_effect = [
|
|
FileNotFoundError(), # `systemd-detect-virt` won't be available.
|
|
"\n", # `virt-what` won't detect anything.
|
|
]
|
|
|
|
self.assertIsNone(
|
|
Model._fetch_virtual_env_info(model_mock) # pylint: disable=protected-access
|
|
)
|
|
|
|
check_output_mock.reset_mock()
|
|
|
|
with self.subTest("Not a virtual environment (no tools or not enough privileges)"):
|
|
check_output_mock.side_effect = [
|
|
FileNotFoundError(), # `systemd-detect-virt` won't be available.
|
|
PermissionError(), # `virt-what` will fail.
|
|
]
|
|
|
|
self.assertIsNone(
|
|
Model._fetch_virtual_env_info(model_mock) # pylint: disable=protected-access
|
|
)
|
|
|
|
def test_fetch_dmi_info(self):
|
|
"""Test `_fetch_dmi_info` static method"""
|
|
# `/sys` could not be read from.
|
|
with patch("archey.entries.model.open", mock_open()) as mock:
|
|
mock.return_value.read.side_effect = [PermissionError(), PermissionError()]
|
|
|
|
self.assertIsNone(Model._fetch_dmi_info()) # pylint: disable=protected-access
|
|
|
|
# All product information are available.
|
|
with patch("archey.entries.model.open", mock_open()) as mock:
|
|
mock.return_value.read.side_effect = [
|
|
"PRODUCT-NAME\n",
|
|
"PRODUCT-VENDOR\n",
|
|
"PRODUCT-VERSION\n",
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_dmi_info(), # pylint: disable=protected-access
|
|
"PRODUCT-VENDOR PRODUCT-NAME PRODUCT-VERSION",
|
|
)
|
|
|
|
# Product vendor is included in product name
|
|
with patch("archey.entries.model.open", mock_open()) as mock:
|
|
mock.return_value.read.side_effect = [
|
|
"PRODUCT-VENDOR PRODUCT-NAME\n",
|
|
"PRODUCT-VENDOR\n",
|
|
"PRODUCT-VERSION\n",
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_dmi_info(), # pylint: disable=protected-access
|
|
"PRODUCT-VENDOR PRODUCT-NAME PRODUCT-VERSION",
|
|
)
|
|
|
|
# Only product name and version are available.
|
|
with patch("archey.entries.model.open", mock_open()) as mock:
|
|
mock.return_value.read.side_effect = [
|
|
"PRODUCT-NAME\n",
|
|
FileNotFoundError(),
|
|
"PRODUCT-VERSION\n",
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_dmi_info(), # pylint: disable=protected-access
|
|
"PRODUCT-NAME PRODUCT-VERSION",
|
|
)
|
|
|
|
# Product name is not available but some board information are.
|
|
with patch("archey.entries.model.open", mock_open()) as mock:
|
|
mock.return_value.read.side_effect = [
|
|
FileNotFoundError(),
|
|
"BOARD-NAME\n",
|
|
"To Be Filled By O.E.M.\n",
|
|
"BOARD-VERSION\n",
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_dmi_info(), # pylint: disable=protected-access
|
|
"BOARD-NAME BOARD-VERSION",
|
|
)
|
|
|
|
# Product name nor board name are available.
|
|
with patch("archey.entries.model.open", mock_open()) as mock:
|
|
mock.return_value.read.side_effect = [FileNotFoundError(), FileNotFoundError()]
|
|
|
|
self.assertIsNone(Model._fetch_dmi_info()) # pylint: disable=protected-access
|
|
|
|
@patch(
|
|
"archey.entries.model.platform.system",
|
|
side_effect=["Darwin", "Darwin", "OpenBSD", "OpenBSD", "OpenBSD"],
|
|
)
|
|
@patch(
|
|
"archey.entries.model.check_output",
|
|
side_effect=[
|
|
# First case [Darwin] (`sysctl` won't be available).
|
|
FileNotFoundError(),
|
|
# Second case [Darwin] OK.
|
|
"MacBookPro14,2",
|
|
# Fifth case [BSD] (`sysctl` won't be available).
|
|
FileNotFoundError(),
|
|
# Third case [BSD] (OK).
|
|
"VMware, Inc.\n",
|
|
"VMware Virtual Platform\n",
|
|
"None\n",
|
|
# Fourth case [BSD] (partially-OK).
|
|
CalledProcessError(1, "sysctl"),
|
|
"KALAP10D300EA\n",
|
|
"1\n",
|
|
],
|
|
)
|
|
def test_fetch_sysctl_hw(self, _, __):
|
|
"""Test `_fetch_sysctl_hw` static method"""
|
|
# pylint: disable=protected-access
|
|
# Dawin cases.
|
|
self.assertIsNone(Model._fetch_sysctl_hw())
|
|
self.assertEqual(Model._fetch_sysctl_hw(), "MacBookPro14.2")
|
|
# BSD cases.
|
|
self.assertIsNone(Model._fetch_sysctl_hw())
|
|
self.assertEqual(Model._fetch_sysctl_hw(), "VMware, Inc. VMware Virtual Platform")
|
|
self.assertEqual(Model._fetch_sysctl_hw(), "KALAP10D300EA 1")
|
|
# pylint: enable=protected-access
|
|
|
|
def test_fetch_raspberry_pi_revision(self):
|
|
"""Test `_fetch_raspberry_pi_revision` static method"""
|
|
with patch("archey.entries.model.open", mock_open()) as mock:
|
|
mock.return_value.read.side_effect = [
|
|
"Hardware\t: HARDWARE\nRevision\t: REVISION\n",
|
|
"processor : 0\ncpu family : X\n",
|
|
]
|
|
|
|
self.assertEqual(
|
|
Model._fetch_raspberry_pi_revision(), # pylint: disable=protected-access
|
|
"Raspberry Pi HARDWARE (Rev. REVISION)",
|
|
)
|
|
self.assertIsNone(
|
|
Model._fetch_raspberry_pi_revision() # pylint: disable=protected-access
|
|
)
|
|
|
|
@patch(
|
|
"archey.entries.model.check_output",
|
|
side_effect=[
|
|
"PHONE-BRAND\n", # First `getprop` call.
|
|
"PHONE-DEVICE\n", # Second `getprop` call.
|
|
FileNotFoundError(), # Second test will fail.
|
|
],
|
|
)
|
|
def test_fetch_android_device_model(self, _):
|
|
"""Test `_fetch_android_device_model` static method"""
|
|
self.assertEqual(
|
|
Model._fetch_android_device_model(), # pylint: disable=protected-access
|
|
"PHONE-BRAND (PHONE-DEVICE)",
|
|
)
|
|
self.assertIsNone(Model._fetch_android_device_model()) # pylint: disable=protected-access
|
|
|
|
@HelperMethods.patch_clean_configuration
|
|
def test_no_match(self):
|
|
"""Test when no information could be retrieved"""
|
|
model_instance_mock = HelperMethods.entry_mock(Model)
|
|
self.assertIsNone(model_instance_mock.value)
|
|
|
|
@patch(
|
|
"archey.entries.model.check_output",
|
|
side_effect=[
|
|
"VENDOR\n", # First `kenv` call.
|
|
"VERSION\n", # Second `kenv` call.
|
|
FileNotFoundError(), # Second test will fail.
|
|
],
|
|
)
|
|
def test_fetch_freebsd_model(self, _):
|
|
"""Test `_fetch_freebsd_model` static method"""
|
|
self.assertEqual(
|
|
Model._fetch_freebsd_model(), "VENDOR (VERSION)" # pylint: disable=protected-access
|
|
)
|
|
self.assertIsNone(Model._fetch_freebsd_model()) # pylint: disable=protected-access
|
|
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|