#!/usr/bin/env python # -*- coding: utf-8 -*- # # Copyright (c) 2018-2022 Intel Corporation # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # # SPDX-License-Identifier: Apache-2.0 # import platform as system_platform # Constants used for test mocks OS_TYPE = system_platform.system() SYSTEM_TYPE = "Linux" LSCPU_OUTPUT = ("Architecture: x86_64\n" "CPU(s): 112\n" "Thread(s) per core: 2\n" "Core(s) per socket: 28\n" "Socket(s): 2\n" "NUMA node(s): 2\n" "On-line CPU(s) list: 0-111\n" "NUMA node0 CPU(s): 0-27,56-83\n" "NUMA node1 CPU(s): 28-55,84-111\n" "CPU family: 6\n" "Model: 143\n") NUMA_CORES_OUTPUT = ['0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27', '28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55'] WMIC_OUTPUT = ("DeviceID=CPU0\r\r\n" "NumberOfCores=28\r\r\n" "NumberOfLogicalProcessors=56\r\r\n" "ThreadCount=56\r\r\n" "DeviceID=CPU1\r\r\n" "NumberOfCores=28\r\r\n" "NumberOfLogicalProcessors=56\r\r\n" "ThreadCount=56\r\r\n") CPUSET = "0-111" def set_mock_system_type(mock_platform): """ Sets the system type return value to Linux. """ mock_platform.system.return_value = SYSTEM_TYPE def set_mock_os_access(mock_os): """ Sets the os.access return value to True """ mock_os.access.return_value = True def set_mock_lscpu_subprocess_values(mock_subprocess): """ Sets mock return value for the lscpu output with platform info """ mock_subprocess.check_output.return_value = LSCPU_OUTPUT def set_mock_wmic_subprocess_values(mock_subprocess): """ Sets mock return value for the wmic output with platform info on Windows """ mock_subprocess.check_output.return_value = WMIC_OUTPUT