-
Notifications
You must be signed in to change notification settings - Fork 15
/
Run-LisaV2.ps1
132 lines (107 loc) · 4.55 KB
/
Run-LisaV2.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
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the Apache License.
#
<#
.SYNOPSIS
This is the shim entry script for LISAv2.
LISAv2 is the test framework running Linux test automation on Azure and HyperV platforms,
including remote test launching in dev system.
.PARAMETER
See source code for the detailed parameters
.NOTES
PREREQUISITES:
1) Prepare necessary 3rd party tools and put them into the Tools folder;
2) Review the XML configuration files under XML folder and make necessary change for your environment.
See more from https://github.com/LIS/LISAv2 for helps including README and How-to-use document.
.EXAMPLE
Example 1 : Run tests by providing command line options.
.\Run-LisaV2.ps1 -TestPlatform "Azure" -TestLocation "westus2" -RGIdentifier "mylisatest"
-ARMImageName "Canonical UbuntuServer 16.04-LTS latest"
-XMLSecretFile "C:\MySecrets.xml"
-TestNames "BVT-VERIFY-DEPLOYMENT-PROVISION"
Example 2 : Run tests using predefined parameters in XML file.
.\Run-LisaV2.ps1 -ParametersFile .\XML\TestParameters.xml
Note: Please refer .\XML\TestParameters.xml file for more details.
Example 3 : Exclude some tests by TestName match
.\Run-LisaV2.ps1 -TestPlatform "Azure" -TestLocation "westus2" -RGIdentifier "mylisatest"
-ARMImageName "Canonical UbuntuServer 16.04-LTS latest"
-XMLSecretFile "C:\MySecrets.xml"
-ExcludeTests "BVT-VERIFY-DEPLOYMENT-PROVISION,BVT-VERIFY-DEPLOYMENT-PROVISION-SRIOV"
Example 4 : Exclude some tests from BVT category, which has "DISK" keyword [Wildcards match]
.\Run-LisaV2.ps1 -TestPlatform "Azure" -TestLocation "westus2" -RGIdentifier "mylisatest"
-ARMImageName "Canonical UbuntuServer 16.04-LTS latest"
-XMLSecretFile "C:\MySecrets.xml"
-TestCategory BVT -ExcludeTests '*DISK*'
Example 5 : Exclude some tests from Storage Area, which has 4 digit number [Regex match]
.\Run-LisaV2.ps1 -TestPlatform "Azure" -TestLocation "westus2" -RGIdentifier "mylisatest"
-ARMImageName "Canonical UbuntuServer 16.04-LTS latest"
-XMLSecretFile "C:\MySecrets.xml"
-TestArea Storage -ExcludeTests "[0-9][0-9][0-9][0-9]"
#>
[CmdletBinding()]
Param(
[string] $ParametersFile = "",
# [Required]
[ValidateSet('Azure','HyperV','OLQ','WSL','OLVM',IgnoreCase = $false)]
[string] $TestPlatform = "",
# [Required] for Azure.
[string] $TestLocation="",
[string] $ARMImageName = "",
[string] $StorageAccount="",
# [Required] for Two Hosts HyperV
[string] $DestinationOsVHDPath="",
# [Required] Common for HyperV and Azure.
[string] $RGIdentifier = "",
[string] $OsVHD = "", #... [Azure: Required only if -ARMImageName is not provided.]
#... [HyperV: Mandatory]
#... [WSL: Mandatory, which can be the URL of the distro, or the path to the distro file on the local host]
[string] $TestCategory = "",
[string] $TestArea = "",
[string] $TestTag = "",
[string] $TestNames="",
[string] $TestPriority="",
# [Optional] Exclude the tests from being executed. (Comma separated values)
[string] $ExcludeTests = "",
# [Optional] Enable kernel code coverage
[switch] $EnableCodeCoverage,
# [Optional] Parameters for Image preparation before running tests.
[string] $CustomKernel = "",
[string] $CustomLIS,
# [Optional] Parameters for changing framework behavior.
[int] $TestIterations = 1,
[string] $XMLSecretFile = "",
[switch] $EnableTelemetry,
[switch] $UseExistingRG,
# [Optional] Parameters for setting TiPCluster, TipSessionId, DiskType=Managed/Unmanaged, Networking=SRIOV/Synthetic.
[string] $CustomParameters = "",
# [Optional] Parameters for Overriding VM Configuration.
[string] $CustomTestParameters = "",
[string] $OverrideVMSize = "",
[ValidateSet('Default','Keep','Delete',IgnoreCase = $true)]
#ResourceCleanup options:
# "Default" = If test is PASS then delete resources else preserve for analysis.
# "Keep" = Preserve resources for analysis irrespective of test result.
# "Delete" = Delete resources irrespective of test result.
[string] $ResourceCleanup,
[switch] $DeployVMPerEachTest,
[string] $VMGeneration = "",
[string] $ResultDBTable = "",
[string] $ResultDBTestTag = "",
[switch] $ExitWithZero
)
$CURRENT_DIR = Split-Path -Parent $MyInvocation.MyCommand.Path
Import-Module "${CURRENT_DIR}\LISAv2-Framework"
$params = @{}
$MyInvocation.MyCommand.Parameters.Keys | ForEach-Object {
$value = (Get-Variable -Name $_ -Scope "Script" -ErrorAction "SilentlyContinue").Value
if ($value) {
$params[$_] = $value
}
}
$params["Verbose"] = $PSCmdlet.MyInvocation.BoundParameters["Verbose"]
try {
Start-LISAv2 @params
exit 0
} catch {
exit 1
}