forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRunInstallationTests.ps1
143 lines (129 loc) · 5.13 KB
/
RunInstallationTests.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
# ----------------------------------------------------------------------------------
#
# Copyright Microsoft 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.
# ----------------------------------------------------------------------------------
param([bool]$uninstallLocalCert=$false, [bool]$runOnCIMachine=$false )
. "$PSScriptRoot\Common.ps1"
. "$PSScriptRoot\Assert.ps1"
. "$PSScriptRoot\InstallationTests.ps1"
. "$PSScriptRoot\AutoTestLogin.ps1"
# Pass expected PowerShell version as 1st param
$global:totalCount = 0;
$global:passedCount = 0;
$global:passedTests = @()
$global:failedTests = @()
$global:times = @{}
$VerbosePreference = "SilentlyContinue"
Test-Setup $runOnCIMachine
Login-Azure $uninstallLocalCert $runOnCIMachine
function Run-TestProtected
{
param([ScriptBlock]$script, [string] $testName)
$testStart = Get-Date
try
{
Write-Host -ForegroundColor Green =====================================
Write-Host -ForegroundColor Green "Running test $testName"
Write-Host -ForegroundColor Green =====================================
Write-Host
&$script > $null
$global:passedCount = $global:passedCount + 1
Write-Host
Write-Host -ForegroundColor Green =====================================
Write-Host -ForegroundColor Green "Test Passed"
Write-Host -ForegroundColor Green =====================================
Write-Host
$global:passedTests += $testName
}
catch
{
Out-String -InputObject $_.Exception | Write-Host -ForegroundColor Red
Write-Host
Write-Host -ForegroundColor Red =====================================
Write-Host -ForegroundColor Red "Test Failed"
Write-Host -ForegroundColor Red =====================================
Write-Host
$global:failedTests += $testName
}
finally
{
$testEnd = Get-Date
$testElapsed = $testEnd - $testStart
$global:times[$testName] = $testElapsed
$global:totalCount = $global:totalCount + 1
}
}
$serviceCommands = @(
{Get-AzureLocation},
{Get-AzureAffinityGroup},
{Get-AzureService},
{Get-AzureVM},
{Get-AzureVnetConfig},
{Get-AzureStorageAccount},
{Get-AzureMediaServicesAccount},
{Get-AzureSubscription -Current -ExtendedDetails},
{Get-AzureAccount},
{Get-AzureHDInsightCluster},
{Get-AzureSBLocation},
{Get-AzureSBNamespace},
{Get-AzureSchedulerLocation},
{Get-AzureSqlDatabaseServer},
{Get-AzureWebsiteLocation},
{Get-AzureAutomationAccount},
{Get-AzureTrafficManagerProfile}
)
$resourceCommands = @(
{Get-AzureRmResourceGroup},
{Get-AzureRmTag},
#{Get-AzureRmADUser -UPN $context.Context.Account.Id},
{Get-AzureRmADServicePrincipal -ServicePrincipalName $global:gPsAutoTestADAppId},
#{Get-AzureRmRoleAssignment}, we can enable this once this cmdLet works well with service principal, currently it has a hard dependency on Graph API Version 1.6-preview and hence it has some bugs
{Get-AzureRmRoleDefinition},
{Get-AzureRmWebApp}
)
$ErrorActionPreference = "Stop"
$global:startTime = Get-Date
Run-TestProtected { Test-SetAzureStorageBlobContent } "Test-SetAzureStorageBlobContent"
Run-TestProtected { Test-UpdateStorageAccount } "Test-UpdateStorageAccount"
$serviceCommands | % { Run-TestProtected $_ $_.ToString() }
Write-Host -ForegroundColor Green "STARTING RESOURCE MANAGER TESTS"
$resourceCommands | % { Run-TestProtected $_ $_.ToString() }
Write-Host
Write-Host -ForegroundColor Green "$global:passedCount / $global:totalCount Installation Tests Pass"
Write-Host -ForegroundColor Green "============"
Write-Host -ForegroundColor Green "PASSED TESTS"
Write-Host -ForegroundColor Green "============"
$global:passedTests | % { Write-Host -ForegroundColor Green "PASSED "$_": "($global:times[$_]).ToString()}
Write-Host -ForegroundColor Green "============"
Write-Host
if ($global:failedTests.Count -gt 0)
{
Write-Host -ForegroundColor Red "============"
Write-Host -ForegroundColor Red "FAILED TESTS"
Write-Host -ForegroundColor Red "============"
$global:failedTests | % { Write-Host -ForegroundColor Red "FAILED "$_": "($global:times[$_]).ToString()}
Write-Host -ForegroundColor Red "============"
Write-Host
}
$global:endTime = Get-Date
Write-Host -ForegroundColor Green "======="
Write-Host -ForegroundColor Green "TIMES"
Write-Host -ForegroundColor Green "======="
Write-Host
Write-Host -ForegroundColor Green "Start Time: $global:startTime"
Write-Host -ForegroundColor Green "End Time: $global:endTime"
Write-Host -ForegroundColor Green "Elapsed: "($global:endTime - $global:startTime).ToString()
Write-Host "============================================================================================="
Write-Host
Write-Host
Test-Cleanup
$ErrorActionPreference = "Continue"