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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
require "helper"
require "train/transports/mock"
class OsDetectWindowsTester
attr_reader :platform, :backend
include Train::Platforms::Detect::Helpers::Windows
def initialize
@platform = {}
@backend = Train::Transports::Mock.new.connection
@backend.mock_os({ family: "windows" })
end
end
describe "os_detect_windows" do
describe "windows 2012" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("cmd.exe /c ver", "\r\nMicrosoft Windows [Version 6.3.9600]\r\n", "", 0)
detector.backend.mock_command("wmic os get * /format:list", "\r\r\nBuildNumber=9600\r\r\nCaption=Microsoft Windows Server 2012 R2 Standard\r\r\nOSArchitecture=64-bit\r\r\nVersion=6.3.9600\r\r\n" , "", 0)
detector.backend.mock_command("wmic cpu get architecture /format:list", "\r\r\nArchitecture=9\r\r\n" , "", 0)
detector
end
it "sets the correct family/release for windows" do
detector.detect_windows
_(detector.platform[:family]).must_equal("windows")
_(detector.platform[:name]).must_equal("Windows Server 2012 R2 Standard")
_(detector.platform[:arch]).must_equal("x86_64")
_(detector.platform[:release]).must_equal("6.3.9600")
end
end
describe "windows 2008" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("cmd.exe /c ver", "\r\nMicrosoft Windows [Version 6.1.7601]\r\n", "", 0)
detector.backend.mock_command("wmic os get * /format:list", "\r\r\nBuildNumber=7601\r\r\nCaption=Microsoft Windows Server 2008 R2 Standard \r\r\nOSArchitecture=64-bit\r\r\nVersion=6.1.7601\r\r\n" , "", 0)
detector.backend.mock_command("wmic cpu get architecture /format:list", "\r\r\nArchitecture=9\r\r\n" , "", 0)
detector
end
it "sets the correct family/release for windows" do
detector.detect_windows
_(detector.platform[:family]).must_equal("windows")
_(detector.platform[:name]).must_equal("Windows Server 2008 R2 Standard")
_(detector.platform[:arch]).must_equal("x86_64")
_(detector.platform[:release]).must_equal("6.1.7601")
end
end
describe "windows 7" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("cmd.exe /c ver", "\r\nMicrosoft Windows [Version 6.1.7601]\r\n", "", 0)
detector.backend.mock_command("wmic os get * /format:list", "\r\r\nBuildNumber=7601\r\r\nCaption=Microsoft Windows 7 Enterprise \r\r\nOSArchitecture=32-bit\r\r\nVersion=6.1.7601\r\r\n\r\r\n" , "", 0)
detector.backend.mock_command("wmic cpu get architecture /format:list", "\r\r\nArchitecture=0\r\r\n" , "", 0)
detector
end
it "sets the correct family/release for windows" do
detector.detect_windows
_(detector.platform[:family]).must_equal("windows")
_(detector.platform[:name]).must_equal("Windows 7 Enterprise")
_(detector.platform[:arch]).must_equal("i386")
_(detector.platform[:release]).must_equal("6.1.7601")
end
end
describe "windows 10" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("cmd.exe /c ver", "\r\nMicrosoft Windows [Version 10.0.10240]\r\n", "", 0)
detector.backend.mock_command("wmic os get * /format:list", "\r\r\nBuildNumber=10240\r\r\nCaption=Microsoft Windows 10 Pro\r\r\nOSArchitecture=64-bit\r\r\nVersion=10.0.10240\r\r\n\r\r\n" , "", 0)
detector.backend.mock_command("wmic cpu get architecture /format:list", "\r\r\nArchitecture=9\r\r\n" , "", 0)
detector
end
it "sets the correct family/release for windows" do
detector.detect_windows
_(detector.platform[:family]).must_equal("windows")
_(detector.platform[:name]).must_equal("Windows 10 Pro")
_(detector.platform[:arch]).must_equal("x86_64")
_(detector.platform[:release]).must_equal("10.0.10240")
end
end
describe "Windows 10 with Powershell" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("Get-WmiObject Win32_OperatingSystem | Select Caption,Version | ConvertTo-Json", "{\"Caption\":\"Microsoft Windows 10 Pro\", \"Version\": \"10.0.18362\"}", "", 0)
detector.backend.mock_command("wmic os get * /format:list", "\r\r\nBuildNumber=10240\r\r\nCaption=Microsoft Windows 10 Pro\r\r\nOSArchitecture=64-bit\r\r\nVersion=10.0.18362\r\r\n\r\r\n" , "", 0)
detector.backend.mock_command("wmic cpu get architecture /format:list", "\r\r\nArchitecture=9\r\r\n" , "", 0)
detector.backend.mock_command("wmic /?", "", "", 0) # Mocking wmic command to simulate its availability
detector
end
it "sets the correct family/release for windows" do
detector.detect_windows
_(detector.platform[:family]).must_equal("windows")
_(detector.platform[:name]).must_equal("Windows 10 Pro")
_(detector.platform[:arch]).must_equal("x86_64")
_(detector.platform[:release]).must_equal("10.0.18362")
end
end
describe "windows 98" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("cmd.exe /c ver", "\r\nMicrosoft Windows [Version 4.10.1998]\r\n", "", 0)
detector.backend.mock_command("wmic os get * /format:list", nil, "", 1)
detector.backend.mock_command("wmic cpu get architecture /format:list", nil, "", 1)
detector
end
it "fallback to version number if wmic is not available" do
detector.detect_windows
_(detector.platform[:family]).must_equal("windows")
_(detector.platform[:name]).must_equal("Windows 4.10.1998")
_(detector.platform[:arch]).must_be_nil
_(detector.platform[:release]).must_equal("4.10.1998")
end
end
end
describe "wmic_available?" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("wmic /?", "", "", 0)
detector
end
it "returns true if wmic is available" do
_(detector.wmic_available?).must_equal(true)
end
it "returns false if wmic is not available" do
detector.backend.mock_command("wmic /?", "", "", 1)
_(detector.wmic_available?).must_equal(false)
end
it "returns false if wmic is available but is deprecated" do
detector.backend.mock_command("wmic /?", "WMIC is deprecated", "", 0)
_(detector.wmic_available?).must_equal(false)
end
end
describe "windows_uuid_from_cim" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command('powershell -Command "(Get-CimInstance -Class Win32_ComputerSystemProduct).UUID"', "EC20EBD7-8E03-06A8-645F-2D22E5A3BA4B", "", 0)
detector
end
it "retrieves the correct UUID from CIM" do
_(detector.windows_uuid_from_cim).must_equal("EC20EBD7-8E03-06A8-645F-2D22E5A3BA4B")
end
it "returns nil if the command fails" do
detector.backend.mock_command('powershell -Command "(Get-CimInstance -Class Win32_ComputerSystemProduct).UUID"', "", "", 1)
assert_nil(detector.windows_uuid_from_cim)
end
end
describe "read_cim_cpu" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command('powershell -Command "(Get-CimInstance Win32_Processor).Architecture"', "9", "", 0)
detector
end
it "retrieves the correct architecture from CIM" do
_(detector.read_cim_cpu).must_equal("x86_64")
end
it "returns nil if the command fails" do
detector.backend.mock_command('powershell -Command "(Get-CimInstance Win32_Processor).Architecture"', "", "", 1)
assert_nil(detector.read_cim_cpu)
end
end
describe "read_cim_os" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command('powershell -Command "Get-CimInstance Win32_OperatingSystem | Select-Object Caption, Version, BuildNumber | ConvertTo-Json"', "{\"Caption\":\"Microsoft Windows 11\", \"Version\": \"10.0.26100\", \"BuildNumber\": \"18362\"}", "", 0)
detector.backend.mock_command('powershell -Command "(Get-CimInstance Win32_Processor).Architecture"', "9", "", 0)
detector
end
it "retrieves the correct OS information from CIM" do
detector.read_cim_os
_(detector.platform[:name]).must_equal("Windows 11")
_(detector.platform[:release]).must_equal("10.0.26100")
_(detector.platform[:build]).must_equal("18362")
_(detector.platform[:arch]).must_equal("x86_64")
end
end
describe "windows_uuid_from_wmic when wmic csproduct get UUID /value returns a valid UUID in stdout" do
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("wmic csproduct get UUID /value", "\r\r\n\r\r\nUUID=EC20EBD7-8E03-06A8-645F-2D22E5A3BA4B\r\r\n\r\r\n\r\r\n\r\r\n", "", 0)
detector
end
it "retrieves the correct UUID from wmic" do
_(detector.windows_uuid_from_wmic).must_equal("EC20EBD7-8E03-06A8-645F-2D22E5A3BA4B")
end
end
describe "windows_uuid_from_wmic when stdout is empty even though wmic csproduct get UUID /value exits successfully" do
# This is a highly unlikely scenario, but there have been cases where customers
# observed an empty stdout from `wmic csproduct get UUID` despite a successful exit status.
# This test case is to ensure that we handle this gracefully.
# In such cases, we should return nil (which is expected) instead of raising an error.
let(:detector) do
detector = OsDetectWindowsTester.new
detector.backend.mock_command("wmic csproduct get UUID /value", "", "", 0)
detector
end
it "retrieves the correct UUID from wmic" do
assert_nil(detector.windows_uuid_from_wmic)
end
end
|