-
Notifications
You must be signed in to change notification settings - Fork 8
/
OSAbstractions.ps1
345 lines (296 loc) · 8.7 KB
/
OSAbstractions.ps1
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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
###############################################################################
##
## ___________ _____________ ___ .____ .___ _________ _____
## \_ _____// _____/\ \/ / | | | |/ _____/ / _ \
## | __)_ \_____ \ \ / ______ | | | |\_____ \ / /_\ \
## | \/ \ / \ /_____/ | |___| |/ \/ | \
## /_______ /_______ //___/\ \ |_______ \___/_______ /\____|__ /
## \/ \/ \_/ \/ \/ \/
##
###############################################################################
##
## ESX-LISA is an automation testing framework based on github.com/LIS/lis-test
## project. In order to support ESX, ESX-LISA uses PowerCLI to automate all
## aspects of vSphere maagement, including network, storage, VM, guest OS and
## more. This framework automates the tasks required to test the
## Redhat Enterprise Linux Server on WMware ESX Server.
##
###############################################################################
##
## Revision:
## v1.0 - xiaofwan - 11/25/2016 - Fork from github.com/LIS/lis-test.
## Incorporate VMware PowerCLI with framework
## v1.1 - xiaofwan - 2/3/2017 - $True will be $true and $False will be $false.
## v1.2 - xiaofwan - 2/21/2017 - Two new functions to fetch kernel and firmware
## version info.
## v1.3 - xiaofwan - 2/27/2017 - Fix GetFirmwareVersion issue.
##
###############################################################################
<#
.Synopsis
Functions that hide the OS of the test VM.
.Description
This file contains functions that are intended to hide
differences in the OS platforms. The hope is to hide
differences in Linux distros and FreeBSD.
Currently supported OS platforms:
Linux
RHEL
CentOS
BSD
FreeBSD
Current functions that provide some abstraction
GetOSDateString()
GetOSDos2unixCmd()
StartOSATDaemon()
GetOSType()
GetOSRunTestCaseCmd()
.Link
None.
#>
#####################################################################
#
# GetOSDateString()
#
#####################################################################
function GetOSDateTimeCmd ([System.Xml.XmlElement] $vm)
{
<#
.Synopsis
Return an OS specific date command to set the date/time
on the VM.
.Description
Return a OS specific date/time command
Linux: "date mmddhhMMyyyy"
FreeBSD: "date -n ccyymmddhhMM"
#>
$dateTimeCmd = $null
if ($vm)
{
if ($vm.os)
{
$now = [Datetime]::Now
$os = $vm.os
switch ($os)
{
#
# Linux does not boot with the correct date/time
#
$LinuxOS { $dateTimeCmd = "date " + $now.ToString("MMddHHmmyyyy") }
#
# FreeBSD does boot with correct date/time, so do nothing for now
#
$FreeBSDOS { $dateTimeCmd = "date -n " + $now.ToString("yyyyMMddHHmm") }
#
# Complain if it's an unknown OS type
#
default { LogMsg 0 "Error: GetOSDateString() - unknown OS type of $($vm.os)" }
}
}
else
{
LogMsg 0 "Error: $($vm.vmName) does not have the <os> xml property"
}
}
return $dateTimeCmd
}
#####################################################################
#
# GetOSDos2unixCmd()
#
#####################################################################
function GetOSDos2unixCmd ([System.Xml.XmlElement] $vm, [String] $filename)
{
<#
.Synopsis
Return a dos2unix command that is OS specific
.Description
Return a OS specific dos2unix command string
Linux: dos2unix -q filename
FreeBSD: dos2unix filename
#>
if (-not $vm)
{
return $null
}
if (-not $filename)
{
return $null
}
$cmdString = $null
if ($vm.os)
{
switch ( $($vm.os) )
{
#
# We use the -q with Linux
#
$LinuxOS { $cmdString = "dos2unix -q ${filename}" }
#
# No options with FreeBSD
#
$FreeBSDOS { $cmdString = "dos2unix ${filename}" }
#
# Complain if it's an unknown OS type
#
default { LogMsg 0 "Error: GetOSDos2unixString() - unknown OS type of $($vm.os)" }
}
}
else
{
LogMsg 0 "Error: $($vm.vmName) does not have the <os> xml property"
}
return $cmdString
}
#####################################################################
#
# StartOSAtDaemon()
#
#####################################################################
function StartOSAtDaemon ([System.Xml.XmlElement] $vm)
{
<#
.Synopsis
Start the daemon that handles batch jobs
.Description
Start the daemon that handles batch jobs for the OS running on
the VM. Linux has the atd daemon. FreeBSD uses crond.
#>
if (-not $vm)
{
return $false
}
$daemonStarted = $false
if ($vm.os)
{
switch ($($vm.os))
{
#
# Linux uses atd
#
$LinuxOS {
if ( (SendCommandToVM $vm "/etc/init.d/atd start") )
{
$daemonStarted = $true
}
}
#
# FreeBSD uses crond which is started by default
#
$FreeBSDOS {
$daemonStarted = $true
}
#
# Complain if it's an unknown OS type
#
default {
LogMsg 0 "Error: StaratOSAtDaemon() - unknown OS type of '$($vm.os)'"
}
}
}
else
{
LogMsg 0 "Error: $($vm.vmName) does not have the <os> xml property"
}
return $daemonStarted
}
#####################################################################
#
# GetOSType()
#
#####################################################################
function GetOSType ([System.Xml.XmlElement] $vm)
{
<#
.Synopsis
Ask the OS to provide it's OS type.
.Description
Use SSH to send a uname command to the VM. Use the
returned name as OSType.
#>
# plink will pending at waiting password if sshkey failed auth, so
# pipe a 'y' to response
$os = echo y | bin\plink -batch -i ssh\${sshKey} root@${hostname} "uname -s"
switch ($os)
{
$LinuxOS {}
$FreeBSDOS {}
default { $os = "unknown" }
}
return $os
}
#####################################################################
#
# GetKernelVersion()
#
#####################################################################
function GetKernelVersion ()
{
<#
.Synopsis
Ask the OS to provide Kernel version.
.Description
Use SSH to send a uname command to the VM. Use the
returned name as Kernel version.
#>
# plink will pending at waiting password if sshkey failed auth, so
# pipe a 'y' to response
$ver = echo y | bin\plink -batch -i ssh\${sshKey} root@${hostname} "uname -r"
return $ver
}
#####################################################################
#
# GetFirmwareVersion()
#
#####################################################################
function GetFirmwareVersion ()
{
<#
.Synopsis
Ask the OS to provide firmware version.
.Description
Use SSH to send a uname command to the VM. The firmware is
based on shell command result.
#>
# plink will pending at waiting password if sshkey failed auth, so
# pipe a 'y' to response
$cmdResult = echo y | bin\plink -batch -i ssh\${sshKey} root@${hostname} "[ -d /sys/firmware/efi ] && echo 0"
$firmware = "BIOS"
if ($cmdResult -eq "0")
{
$firmware = "EFI"
}
return $firmware
}
#####################################################################
#
# GetOSRunTestCaseCmd()
#
#####################################################################
function GetOSRunTestCaseCmd ([String] $os, [String] $testFilename, [String] $logFilename)
{
<#
.Synopsis
Build the command string to run the test case
.Description
Create a command string that will run the test case and
also redirect STDOUT and STDERR to the logfile.
#>
$runCmd = $null
switch ($os)
{
$LinuxOS
{
$runCmd = "bash ~/${testFilename} > ~/${logFilename} 2>&1"
}
$FreeBSDOS
{
$runCmd = "bash ~/${testFilename} > ~/${logFilename} 2>&1"
}
default
{
$runCmd = $null
}
}
return $runCmd
}