From 46e450df11ee8ce6c7283265ab2cdd210f83f339 Mon Sep 17 00:00:00 2001 From: David Kubek Date: Tue, 20 Feb 2024 20:54:16 +0100 Subject: [PATCH] Fix incorrect parsing of `lscpu` output Original solution expected always ``key: val`` pair on each line. However, it has not been expected that val could be actually empty string, which would lead to situation where the following line is interpreted as a value. The new solution updates the parsing for output on RHEL 7, but also calls newly ``lscpu -J`` on RHEL 8+ to obtain data in the JSON format, which drops all possible parsing problems from our side. Fixes #1182 --- .github/workflows/codespell.yml | 2 +- .../actors/scancpu/libraries/scancpu.py | 39 ++++++---- .../actors/scancpu/tests/files/json/invalid | 2 + .../scancpu/tests/files/json/lscpu_aarch64 | 31 ++++++++ .../scancpu/tests/files/json/lscpu_ppc64le | 19 +++++ .../scancpu/tests/files/json/lscpu_s390x | 31 ++++++++ .../scancpu/tests/files/json/lscpu_x86_64 | 31 ++++++++ .../actors/scancpu/tests/files/lscpu_ppc64le | 24 ------- .../tests/files/{ => txt}/lscpu_aarch64 | 0 .../scancpu/tests/files/txt/lscpu_empty_field | 2 + .../scancpu/tests/files/txt/lscpu_ppc64le | 15 ++++ .../scancpu/tests/files/{ => txt}/lscpu_s390x | 0 .../tests/files/{ => txt}/lscpu_x86_64 | 0 .../actors/scancpu/tests/test_scancpu.py | 71 +++++++++++++++++-- 14 files changed, 221 insertions(+), 46 deletions(-) create mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/json/invalid create mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_aarch64 create mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_ppc64le create mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_s390x create mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_x86_64 delete mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_ppc64le rename repos/system_upgrade/common/actors/scancpu/tests/files/{ => txt}/lscpu_aarch64 (100%) create mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_empty_field create mode 100644 repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_ppc64le rename repos/system_upgrade/common/actors/scancpu/tests/files/{ => txt}/lscpu_s390x (100%) rename repos/system_upgrade/common/actors/scancpu/tests/files/{ => txt}/lscpu_x86_64 (100%) diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml index 24add3fb14..4921bc907e 100644 --- a/.github/workflows/codespell.yml +++ b/.github/workflows/codespell.yml @@ -23,7 +23,7 @@ jobs: ./repos/system_upgrade/el8toel9/actors/xorgdrvfact/tests/files/journalctl-xorg-intel,\ ./repos/system_upgrade/el8toel9/actors/xorgdrvfact/tests/files/journalctl-xorg-qxl,\ ./repos/system_upgrade/el8toel9/actors/xorgdrvfact/tests/files/journalctl-xorg-without-qxl,\ - ./repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_s390x,\ + ./repos/system_upgrade/common/actors/scancpu/tests/files,\ ./etc/leapp/files/device_driver_deprecation_data.json,\ ./etc/leapp/files/pes-events.json,\ ./etc/leapp/files/repomap.json,\ diff --git a/repos/system_upgrade/common/actors/scancpu/libraries/scancpu.py b/repos/system_upgrade/common/actors/scancpu/libraries/scancpu.py index 9de50fae04..2ec2e4b80a 100644 --- a/repos/system_upgrade/common/actors/scancpu/libraries/scancpu.py +++ b/repos/system_upgrade/common/actors/scancpu/libraries/scancpu.py @@ -1,22 +1,41 @@ +import json import re from leapp.libraries.common.config import architecture +from leapp.libraries.common.config.version import get_source_major_version from leapp.libraries.stdlib import api, CalledProcessError, run from leapp.models import CPUInfo, DetectedDeviceOrDriver, DeviceDriverDeprecationData -LSCPU_NAME_VALUE = re.compile(r'(?P[^:]+):\s+(?P.+)\n?') +LSCPU_NAME_VALUE = re.compile(r'(?P[^:]+):[^\S\n]+(?P.+)\n?') PPC64LE_MODEL = re.compile(r'\d+\.\d+ \(pvr (?P[0-9a-fA-F]+) 0*[0-9a-fA-F]+\)') -def _get_lscpu_output(): +def _get_lscpu_output(output_json=False): try: - result = run(['lscpu']) + result = run(['lscpu', '-J' if output_json else '']) return result.get('stdout', '') except (OSError, CalledProcessError): api.current_logger().debug('Executing `lscpu` failed', exc_info=True) return '' +def _parse_lscpu_output(): + if get_source_major_version() == '7': + return dict(LSCPU_NAME_VALUE.findall(_get_lscpu_output())) + + lscpu = _get_lscpu_output(output_json=True) + try: + parsed_json = json.loads(lscpu) + # The json contains one entry "lscpu" which is a list of dictionaries + # with 2 keys "field" (name of the field from lscpu) and "data" (value + # of the field). + return dict((entry['field'].rstrip(':'), entry['data']) for entry in parsed_json['lscpu']) + except ValueError: + api.current_logger().debug('Failed to parse json output from `lscpu`. Got:\n{}'.format(lscpu)) + + return dict() + + def _get_cpu_flags(lscpu): flags = lscpu.get('Flags', '') return flags.split() @@ -128,24 +147,16 @@ def _find_deprecation_data_entries(lscpu): arch_prefix, is_detected = architecture.ARCH_ARM64, _is_detected_aarch64 if arch_prefix and is_detected: - return [ - _to_detected_device(entry) for entry in _get_cpu_entries_for(arch_prefix) - if is_detected(lscpu, entry) - ] + return [_to_detected_device(entry) for entry in _get_cpu_entries_for(arch_prefix) if is_detected(lscpu, entry)] api.current_logger().warning('Unsupported platform could not detect relevant CPU information') return [] def process(): - lscpu = dict(LSCPU_NAME_VALUE.findall(_get_lscpu_output())) + lscpu = _parse_lscpu_output() api.produce(*_find_deprecation_data_entries(lscpu)) # Backwards compatibility machine_type = lscpu.get('Machine type') flags = _get_cpu_flags(lscpu) - api.produce( - CPUInfo( - machine_type=int(machine_type) if machine_type else None, - flags=flags - ) - ) + api.produce(CPUInfo(machine_type=int(machine_type) if machine_type else None, flags=flags)) diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/json/invalid b/repos/system_upgrade/common/actors/scancpu/tests/files/json/invalid new file mode 100644 index 0000000000..422c2b7ab3 --- /dev/null +++ b/repos/system_upgrade/common/actors/scancpu/tests/files/json/invalid @@ -0,0 +1,2 @@ +a +b diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_aarch64 b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_aarch64 new file mode 100644 index 0000000000..7ae3ce9b53 --- /dev/null +++ b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_aarch64 @@ -0,0 +1,31 @@ +{ + "lscpu": [ + {"field": "Architecture:", "data": "x86_64"}, + {"field": "CPU op-mode(s):", "data": "32-bit, 64-bit"}, + {"field": "Byte Order:", "data": "Little Endian"}, + {"field": "CPU(s):", "data": "2"}, + {"field": "On-line CPU(s) list:", "data": "0,1"}, + {"field": "Thread(s) per core:", "data": "1"}, + {"field": "Core(s) per socket:", "data": "1"}, + {"field": "Socket(s):", "data": "2"}, + {"field": "NUMA node(s):", "data": "1"}, + {"field": "Vendor ID:", "data": "GenuineIntel"}, + {"field": "BIOS Vendor ID:", "data": "QEMU"}, + {"field": "CPU family:", "data": "6"}, + {"field": "Model:", "data": "165"}, + {"field": "Model name:", "data": "Intel(R) Core(TM) i7-10850H CPU @ 2.70GHz"}, + {"field": "BIOS Model name:", "data": "pc-i440fx-7.2"}, + {"field": "Stepping:", "data": "2"}, + {"field": "CPU MHz:", "data": "2712.006"}, + {"field": "BogoMIPS:", "data": "5424.01"}, + {"field": "Virtualization:", "data": "VT-x"}, + {"field": "Hypervisor vendor:", "data": "KVM"}, + {"field": "Virtualization type:", "data": "full"}, + {"field": "L1d cache:", "data": "32K"}, + {"field": "L1i cache:", "data": "32K"}, + {"field": "L2 cache:", "data": "4096K"}, + {"field": "L3 cache:", "data": "16384K"}, + {"field": "NUMA node0 CPU(s):", "data": "0,1"}, + {"field": "Flags:", "data": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl xtopology cpuid tsc_known_freq pni pclmulqdq vmx ssse3 fma cx16 pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch cpuid_fault invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt xsaveopt xsavec xgetbv1 xsaves arat umip pku ospke md_clear arch_capabilities"} + ] +} diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_ppc64le b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_ppc64le new file mode 100644 index 0000000000..cc51c4ac51 --- /dev/null +++ b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_ppc64le @@ -0,0 +1,19 @@ +{ + "lscpu": [ + {"field": "Architecture:", "data": "ppc64le"}, + {"field": "Byte Order:", "data": "Little Endian"}, + {"field": "CPU(s):", "data": "8"}, + {"field": "On-line CPU(s) list:", "data": "0-7"}, + {"field": "Thread(s) per core:", "data": "1"}, + {"field": "Core(s) per socket:", "data": "1"}, + {"field": "Socket(s):", "data": "8"}, + {"field": "NUMA node(s):", "data": "1"}, + {"field": "Model:", "data": "2.1 (pvr 004b 0201)"}, + {"field": "Model name:", "data": "POWER8E (raw), altivec supported"}, + {"field": "Hypervisor vendor:", "data": "KVM"}, + {"field": "Virtualization type:", "data": "para"}, + {"field": "L1d cache:", "data": "64K"}, + {"field": "L1i cache:", "data": "32K"}, + {"field": "NUMA node0 CPU(s):", "data": "0-7"} + ] +} diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_s390x b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_s390x new file mode 100644 index 0000000000..7ae3ce9b53 --- /dev/null +++ b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_s390x @@ -0,0 +1,31 @@ +{ + "lscpu": [ + {"field": "Architecture:", "data": "x86_64"}, + {"field": "CPU op-mode(s):", "data": "32-bit, 64-bit"}, + {"field": "Byte Order:", "data": "Little Endian"}, + {"field": "CPU(s):", "data": "2"}, + {"field": "On-line CPU(s) list:", "data": "0,1"}, + {"field": "Thread(s) per core:", "data": "1"}, + {"field": "Core(s) per socket:", "data": "1"}, + {"field": "Socket(s):", "data": "2"}, + {"field": "NUMA node(s):", "data": "1"}, + {"field": "Vendor ID:", "data": "GenuineIntel"}, + {"field": "BIOS Vendor ID:", "data": "QEMU"}, + {"field": "CPU family:", "data": "6"}, + {"field": "Model:", "data": "165"}, + {"field": "Model name:", "data": "Intel(R) Core(TM) i7-10850H CPU @ 2.70GHz"}, + {"field": "BIOS Model name:", "data": "pc-i440fx-7.2"}, + {"field": "Stepping:", "data": "2"}, + {"field": "CPU MHz:", "data": "2712.006"}, + {"field": "BogoMIPS:", "data": "5424.01"}, + {"field": "Virtualization:", "data": "VT-x"}, + {"field": "Hypervisor vendor:", "data": "KVM"}, + {"field": "Virtualization type:", "data": "full"}, + {"field": "L1d cache:", "data": "32K"}, + {"field": "L1i cache:", "data": "32K"}, + {"field": "L2 cache:", "data": "4096K"}, + {"field": "L3 cache:", "data": "16384K"}, + {"field": "NUMA node0 CPU(s):", "data": "0,1"}, + {"field": "Flags:", "data": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl xtopology cpuid tsc_known_freq pni pclmulqdq vmx ssse3 fma cx16 pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm abm 3dnowprefetch cpuid_fault invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt xsaveopt xsavec xgetbv1 xsaves arat umip pku ospke md_clear arch_capabilities"} + ] +} diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_x86_64 b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_x86_64 new file mode 100644 index 0000000000..da75a3faa2 --- /dev/null +++ b/repos/system_upgrade/common/actors/scancpu/tests/files/json/lscpu_x86_64 @@ -0,0 +1,31 @@ +{ + "lscpu": [ + {"field": "Architecture:", "data": "x86_64"}, + {"field": "CPU op-mode(s):", "data": "32-bit, 64-bit"}, + {"field": "Byte Order:", "data": "Little Endian"}, + {"field": "CPU(s):", "data": "2"}, + {"field": "On-line CPU(s) list:", "data": "0,1"}, + {"field": "Thread(s) per core:", "data": "1"}, + {"field": "Core(s) per socket:", "data": "1"}, + {"field": "Socket(s):", "data": "2"}, + {"field": "NUMA node(s):", "data": "1"}, + {"field": "Vendor ID:", "data": "GenuineIntel"}, + {"field": "BIOS Vendor ID:", "data": "QEMU"}, + {"field": "CPU family:", "data": "6"}, + {"field": "Model:", "data": "165"}, + {"field": "Model name:", "data": "Intel(R) Core(TM) i7-10850H CPU @ 2.70GHz"}, + {"field": "BIOS Model name:", "data": "pc-i440fx-7.2"}, + {"field": "Stepping:", "data": "2"}, + {"field": "CPU MHz:", "data": "2712.006"}, + {"field": "BogoMIPS:", "data": "5424.01"}, + {"field": "Virtualization:", "data": "VT-x"}, + {"field": "Hypervisor vendor:", "data": "KVM"}, + {"field": "Virtualization type:", "data": "full"}, + {"field": "L1d cache:", "data": "32K"}, + {"field": "L1i cache:", "data": "32K"}, + {"field": "L2 cache:", "data": "4096K"}, + {"field": "L3 cache:", "data": "16384K"}, + {"field": "NUMA node0 CPU(s):", "data": "0,1"}, + {"field": "Flags:", "data": "fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid cqm xsaveopt cqm_llc cqm_occup_llc dtherm ida arat pln pts md_clear flush_l1d"} + ] +} diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_ppc64le b/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_ppc64le deleted file mode 100644 index 259dd19d5b..0000000000 --- a/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_ppc64le +++ /dev/null @@ -1,24 +0,0 @@ -Architecture: ppc64le -Byte Order: Little Endian -CPU(s): 8 -On-line CPU(s) list: 0-7 -Model name: POWER9 (architected), altivec supported -Model: 2.2 (pvr 004e 1202) -Thread(s) per core: 1 -Core(s) per socket: 1 -Socket(s): 8 -Hypervisor vendor: KVM -Virtualization type: para -L1d cache: 256 KiB (8 instances) -L1i cache: 256 KiB (8 instances) -NUMA node(s): 1 -NUMA node0 CPU(s): 0-7 -Vulnerability Itlb multihit: Not affected -Vulnerability L1tf: Mitigation; RFI Flush, L1D private per thread -Vulnerability Mds: Not affected -Vulnerability Meltdown: Mitigation; RFI Flush, L1D private per thread -Vulnerability Spec store bypass: Mitigation; Kernel entry/exit barrier (eieio) -Vulnerability Spectre v1: Mitigation; __user pointer sanitization, ori31 speculation barrier enabled -Vulnerability Spectre v2: Mitigation; Software count cache flush (hardware accelerated), Software link stack flush -Vulnerability Srbds: Not affected -Vulnerability Tsx async abort: Not affected diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_aarch64 b/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_aarch64 similarity index 100% rename from repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_aarch64 rename to repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_aarch64 diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_empty_field b/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_empty_field new file mode 100644 index 0000000000..056df4e905 --- /dev/null +++ b/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_empty_field @@ -0,0 +1,2 @@ +Architecture: +Flags: flag diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_ppc64le b/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_ppc64le new file mode 100644 index 0000000000..07d2ed6510 --- /dev/null +++ b/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_ppc64le @@ -0,0 +1,15 @@ +Architecture: ppc64le +Byte Order: Little Endian +CPU(s): 8 +On-line CPU(s) list: 0-7 +Thread(s) per core: 1 +Core(s) per socket: 1 +Socket(s): 8 +NUMA node(s): 1 +Model: 2.1 (pvr 004b 0201) +Model name: POWER8E (raw), altivec supported +Hypervisor vendor: KVM +Virtualization type: para +L1d cache: 64K +L1i cache: 32K +NUMA node0 CPU(s): 0-7 diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_s390x b/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_s390x similarity index 100% rename from repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_s390x rename to repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_s390x diff --git a/repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_x86_64 b/repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_x86_64 similarity index 100% rename from repos/system_upgrade/common/actors/scancpu/tests/files/lscpu_x86_64 rename to repos/system_upgrade/common/actors/scancpu/tests/files/txt/lscpu_x86_64 diff --git a/repos/system_upgrade/common/actors/scancpu/tests/test_scancpu.py b/repos/system_upgrade/common/actors/scancpu/tests/test_scancpu.py index 894fae08cc..1470adcdb0 100644 --- a/repos/system_upgrade/common/actors/scancpu/tests/test_scancpu.py +++ b/repos/system_upgrade/common/actors/scancpu/tests/test_scancpu.py @@ -3,7 +3,6 @@ import pytest from leapp.libraries.actor import scancpu -from leapp.libraries.common import testutils from leapp.libraries.common.config.architecture import ( ARCH_ARM64, ARCH_PPC64LE, @@ -11,6 +10,7 @@ ARCH_SUPPORTED, ARCH_X86_64 ) +from leapp.libraries.common.testutils import CurrentActorMocked, logger_mocked, produce_mocked from leapp.libraries.stdlib import api from leapp.models import CPUInfo @@ -57,23 +57,33 @@ class mocked_get_cpuinfo(object): def __init__(self, filename): self.filename = filename - def __call__(self): + def __call__(self, output_json=False): """ Return lines of the self.filename test file located in the files directory. Those files contain /proc/cpuinfo content from several machines. """ - with open(os.path.join(CUR_DIR, 'files', self.filename), 'r') as fp: + + filename = self.filename + if output_json: + filename = os.path.join('json', filename) + else: + filename = os.path.join('txt', filename) + filename = os.path.join(CUR_DIR, 'files', filename) + + with open(filename, 'r') as fp: return '\n'.join(fp.read().splitlines()) -@pytest.mark.parametrize("arch", ARCH_SUPPORTED) -def test_scancpu(monkeypatch, arch): +@pytest.mark.parametrize("arch, version", [(arch, '7') for arch in ARCH_SUPPORTED] + [(ARCH_X86_64, '8')]) +def test_scancpu(monkeypatch, arch, version): + + monkeypatch.setattr('leapp.libraries.actor.scancpu.get_source_major_version', lambda: version) mocked_cpuinfo = mocked_get_cpuinfo('lscpu_' + arch) monkeypatch.setattr(scancpu, '_get_lscpu_output', mocked_cpuinfo) - monkeypatch.setattr(api, 'produce', testutils.produce_mocked()) - current_actor = testutils.CurrentActorMocked(arch=arch) + monkeypatch.setattr(api, 'produce', produce_mocked()) + current_actor = CurrentActorMocked(arch=arch) monkeypatch.setattr(api, 'current_actor', current_actor) scancpu.process() @@ -89,3 +99,50 @@ def test_scancpu(monkeypatch, arch): # Did not produce anything extra assert expected == produced + + +def test_lscpu_with_empty_field(monkeypatch): + + def mocked_cpuinfo(*args, **kwargs): + return mocked_get_cpuinfo('lscpu_empty_field')(output_json=False) + + monkeypatch.setattr(scancpu, '_get_lscpu_output', mocked_cpuinfo) + monkeypatch.setattr(api, 'produce', produce_mocked()) + current_actor = CurrentActorMocked() + monkeypatch.setattr(api, 'current_actor', current_actor) + + scancpu.process() + + expected = CPUInfo(machine_type=None, flags=['flag']) + produced = api.produce.model_instances[0] + + assert api.produce.called == 1 + + assert expected.machine_type == produced.machine_type + assert sorted(expected.flags) == sorted(produced.flags) + + +def test_parse_invalid_json(monkeypatch): + + monkeypatch.setattr('leapp.libraries.actor.scancpu.get_source_major_version', lambda: '8') + + def mocked_cpuinfo(*args, **kwargs): + return mocked_get_cpuinfo('invalid')(output_json=True) + + monkeypatch.setattr(scancpu, '_get_lscpu_output', mocked_cpuinfo) + monkeypatch.setattr(api, 'produce', produce_mocked()) + monkeypatch.setattr(api, 'current_logger', logger_mocked()) + current_actor = CurrentActorMocked() + monkeypatch.setattr(api, 'current_actor', current_actor) + + scancpu.process() + + assert api.produce.called == 1 + + assert any('Failed to parse json output' in msg for msg in api.current_logger().dbgmsg) + + expected = CPUInfo(machine_type=None, flags=[]) + produced = api.produce.model_instances[0] + + assert expected.machine_type == produced.machine_type + assert sorted(expected.flags) == sorted(produced.flags)