-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathPSWebDeploy.Tests.ps1
323 lines (260 loc) · 14.7 KB
/
PSWebDeploy.Tests.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
,#region import modules
$ThisModule = "$($MyInvocation.MyCommand.Path -replace '\.Tests\.ps1$', '').psd1"
$ThisModuleName = (($ThisModule | Split-Path -Leaf) -replace '\.psd1')
Get-Module -Name $ThisModuleName -All | Remove-Module -Force
Import-Module -Name $ThisModule -Force -ErrorAction Stop
#endregion
describe 'Module-level tests' {
it 'should validate the module manifest' {
{ Test-ModuleManifest -Path $ThisModule -ErrorAction Stop } | should not throw
}
it 'should pass all error-level script analyzer rules' {
$excludedRules = @(
'PSUseShouldProcessForStateChangingFunctions',
'PSUseToExportFieldsInManifest',
'PSAvoidInvokingEmptyMembers',
'PSUsePSCredentialType',
'PSAvoidUsingPlainTextForPassword'
)
Invoke-ScriptAnalyzer -Path $PSScriptRoot -ExcludeRule $excludedRules -Severity Error | Select-Object -ExpandProperty RuleName | should benullorempty
}
}
InModuleScope $ThisModuleName {
describe 'NewMsDeployCliArgumentString - Sync' {
$commandName = 'NewMsDeployCliArgumentString'
$command = Get-Command -Name $commandName
$mockCred = New-MockObject -Type 'System.Management.Automation.PSCredential'
$mockCred = $mockCred | Add-Member -MemberType NoteProperty -Name UserName -Value 'username' -PassThru -Force
$mockCred = $mockCred | Add-Member -MemberType ScriptMethod -Name GetNetworkCredential -Value {[pscustomobject]@{Password = 'passwordname'}} -PassThru -Force
$parameterSets = @(
@{
Verb = 'Sync'
SourcePath = 'C:\Source'
TargetPath = 'TargetHere'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
TestName = 'Azure web app / Sync / FolderPath'
}
@{
Verb = 'Sync'
SourceContent = 'C:\Source'
TargetPath = 'TargetHere'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
TestName = 'Azure web app / Sync / SourceContent / FolderPath'
}
@{
Verb = 'Sync'
SourceContent = 'C:\Source.zip'
TargetPath = 'TargetHere'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
TestName = 'Azure web app / Sync / SourceContent / Package'
}
@{
Verb = 'Sync'
SourcePackage = 'C:\Source.zip'
TargetPath = 'TargetHere'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
TestName = 'Azure web app / Sync / Package'
}
@{
Verb = 'Sync'
SourcePath = 'C:\Source'
TargetPath = 'TargetHere'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
EnableRule = 'DoNotDelete'
TestName = 'adds the required rule'
}
@{
Verb = 'Sync'
SourcePackage = 'C:\Source.zip'
TargetPath = 'TargetHere'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
EnableRule = 'DoNotDelete'
TestName = 'adds the required rule'
}
)
$testCases = @{
All = $parameterSets
EnableRule = $parameterSets.where({ $_.ContainsKey('EnableRule') })
TargetPath = @{
All = $parameterSets.where({ $_.ContainsKey('TargetPath') })
EnableRule = $parameterSets.where({ $_.ContainsKey('EnableRule') -and $_.ContainsKey('TargetPath') })
SourcePackage = $parameterSets.where({ $_.ContainsKey('SourcePackage') -and $_.ContainsKey('TargetPath') })
SourcePath = $parameterSets.where({ $_.ContainsKey('SourcePath') -and $_.ContainsKey('TargetPath') })
}
TargetContent = @{
All = $parameterSets.where({ $_.ContainsKey('TargetContent') })
EnableRule = $parameterSets.where({ $_.ContainsKey('EnableRule') -and $_.ContainsKey('TargetContent') })
SourcePackage = $parameterSets.where({ $_.ContainsKey('SourcePackage') -and $_.ContainsKey('TargetContent') })
SourcePath = $parameterSets.where({ $_.ContainsKey('SourcePath') -and $_.ContainsKey('TargetContent') })
}
SourcePackage = @{
All = $parameterSets.where({ $_.ContainsKey('SourcePackage') })
Default = $parameterSets.where({ $_.ContainsKey('SourcePackage') -and (-not $_.ContainsKey('EnableRule')) })
EnableRule = $parameterSets.where({ $_.ContainsKey('EnableRule') -and $_.ContainsKey('SourcePackage') })
}
SourcePath = @{
All = $parameterSets.where({ $_.ContainsKey('SourcePath') })
Default = $parameterSets.where({ $_.ContainsKey('SourcePath') -and (-not $_.ContainsKey('EnableRule')) })
EnableRule = $parameterSets.where({ $_.ContainsKey('EnableRule') -and $_.ContainsKey('SourcePath') })
}
SourceContent = @{
All = $parameterSets.where({ $_.ContainsKey('SourceContent') })
EnableRule = $parameterSets.where({ $_.ContainsKey('EnableRule') -and $_.ContainsKey('SourceContent') })
Package = $parameterSets.where({ $_.ContainsKey('SourceContent') -and $_.SourceContent -match '\.zip$' })
Path = $parameterSets.where({ $_.ContainsKey('SourceContent') -and $_.SourceContent -notmatch '\.zip$' })
}
}
context 'Source Package' {
mock 'Test-Path' {
$true
} -ParameterFilter { $PSBoundParameters.PathType -eq 'Leaf' }
it 'when EnableRule is used, it returns the expected string: <TestName>' -TestCases $testCases.SourcePackage.EnableRule -Skip {
param($Verb,$SourceContent,$SourcePath,$SourcePackage,$TargetContent,$ComputerName,$TargetPath,$EnableRule,$Credential,$AuthType)
$expectedString = " -dest:ContentPath=`"$TargetPath`" -source UserName=$($Credential.UserName),ComputerName=$ComputerName,AuthType=Basic,Password=$($Credential.GetNetworkCredential().Password),Package=`"C:\Source.zip`" -EnableRule:DoNotDelete -verb:Sync"
& $commandName @PSBoundParameters | should be $expectedString
}
it 'when source is passed as SourceContent, it returns the expected string: <TestName>' -TestCases $testCases.SourceContent.Package -Skip {
param($Verb,$SourceContent,$SourcePath,$SourcePackage,$TargetContent,$ComputerName,$TargetPath,$EnableRule,$Credential,$AuthType)
$expectedString = " -dest:UserName=$($Credential.UserName),contentPath=`"$TargetPath`",ComputerName=$ComputerName,AuthType=Basic,Password=$($Credential.GetNetworkCredential().Password) -source:Package=`"$SourceContent`" -verb:Sync"
& $commandName @PSBoundParameters | should be $expectedString
}
it 'when source is passed as SourcePackage, it returns the expected string: <TestName>' -TestCases $testCases.SourcePackage.Default -Skip {
param($Verb,$SourceContent,$SourcePath,$SourcePackage,$TargetContent,$ComputerName,$TargetPath,$EnableRule,$Credential,$AuthType)
$expectedString = " -dest:UserName=$($Credential.UserName),contentPath=`"$TargetPath`",ComputerName=$ComputerName,AuthType=Basic,Password=$($Credential.GetNetworkCredential().Password) -source:Package=`"$SourcePackage`" -verb:Sync"
& $commandName @PSBoundParameters | should be $expectedString
}
}
context 'Source Path' {
mock 'Test-Path' {
$true
} -ParameterFilter { $PSBoundParameters.PathType -eq 'Container' }
it 'when EnableRule is used, it returns the expected string: <TestName>' -TestCases $testCases.SourcePath.EnableRule -Skip {
param($Verb,$SourceContent,$SourcePath,$SourcePackage,$TargetContent,$ComputerName,$TargetPath,$EnableRule,$Credential,$AuthType)
$expectedString = " -dest:UserName=$($Credential.UserName),contentPath=`"$TargetPath`",ComputerName=$ComputerName,AuthType=Basic,Password=$($Credential.GetNetworkCredential().Password) -source:ContentPath=`"$SourcePath`" -EnableRule:DoNotDelete -verb:Sync"
& $commandName @PSBoundParameters | should be $expectedString
}
it 'when source is passed as SourceContent, it returns the expected string: <TestName>' -TestCases $testCases.SourceContent.Path -Skip {
param($Verb,$SourceContent,$SourcePath,$SourcePackage,$TargetContent,$ComputerName,$TargetPath,$EnableRule,$Credential,$AuthType)
$expectedString = " -dest:UserName=$($Credential.UserName),contentPath=`"$TargetPath`",ComputerName=$ComputerName,AuthType=Basic,Password=$($Credential.GetNetworkCredential().Password) -source:ContentPath=`"$SourceContent`" -verb:Sync"
& $commandName @PSBoundParameters | should be $expectedString
}
it 'when source is passed as SourcePackage, it returns the expected string: <TestName>' -TestCases $testCases.SourcePath.Default -Skip {
param($Verb,$SourceContent,$SourcePath,$SourcePackage,$TargetContent,$ComputerName,$TargetPath,$EnableRule,$Credential,$AuthType)
$expectedString = " -dest:UserName=$($Credential.UserName),contentPath=`"$TargetPath`",ComputerName=$ComputerName,AuthType=Basic,Password=$($Credential.GetNetworkCredential().Password) -source:ContentPath=`"$SourcePath`" -verb:Sync"
& $commandName @PSBoundParameters | should be $expectedString
}
}
}
describe 'Invoke-MSDeploy' {
$commandName = 'Invoke-MSDeploy'
mock 'Start-Process'
$parameterSets = @(
@{
Arguments = 'args here --and here'
TestName = 'Default'
}
)
$testCases = @{
All = $parameterSets
}
context 'Execution' {
it 'passes the right arguments to the MSDeploy process: <TestName>' -TestCases $testCases.All -Skip {
param($Arguments)
$null = & $commandName @PSBoundParameters
$assMParams = @{
CommandName = 'Start-Process'
Times = 1
Exactly = $true
Scope = 'It'
ParameterFilter = {$PSBoundParameters.ArgumentList -eq $Arguments }
}
Assert-MockCalled @assMParams
}
}
context 'Output' {
$command = Get-Command -Name $commandName
it 'has an outputType defined' {
$command.OutputType | should not be $null
}
it 'returns nothing: <TestName>' -TestCases $testCases.All -Skip {
param($Arguments)
& $commandName @PSBoundParameters | should benullorempty
}
}
}
describe 'Sync-Website' {
mock 'NewMsDeployCliArgumentString' {
'string'
}
mock 'Invoke-MsDeploy'
$mockCred = New-MockObject -Type 'System.Management.Automation.PSCredential'
$mockCred = $mockCred | Add-Member -MemberType NoteProperty -Name UserName -Value 'username' -PassThru -Force
$mockCred = $mockCred | Add-Member -MemberType ScriptMethod -Name GetNetworkCredential -Value {[pscustomobject]@{Password = 'passwordname'}} -PassThru -Force
$parameterSets = @(
@{
SourcePath = 'c:\sourcepath'
TargetPath = '\wwwroot'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
TestName = 'Azure web app'
}
@{
SourcePath = 'c:\sourcepath'
TargetPath = '/wwwroot'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
TestName = 'Forward slashes in TargetPath'
}
@{
SourcePath = 'c:\sourcepath'
TargetPath = '/wwwroot'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
DoNotDelete = $true
TestName = 'does not remove TargetPath contents'
}
@{
SourcePath = 'C:\sourcepath'
TargetPath = '/wwwroot'
ComputerName = 'https://webapphere.scm.azurewebsites.net:443/msdeploy.axd?site=webapphere'
Credential = $mockCred
TestName = 'does not remove TargetPath contents'
}
)
$testCases = @{
All = $parameterSets
SiteSourcePath = $parameterSets.where({$_.SourcePath -notmatch ':'})
}
context 'Execution' {
it 'when TargetPath contains forward slashes, it replaces them with back slashes: <TestName>' -TestCases $testCases.All {
param($SourcePath, $TargetPath, $ComputerName, $Credential, $DoNotDelete)
$null = & Sync-Website @PSBoundParameters
$assMParams = @{
CommandName = 'NewMsDeployCliArgumentString'
Times = 1
Exactly = $true
Scope = 'It'
ParameterFilter = {
$PSBoundParameters.TargetContent -eq '\wwwroot' }
}
Assert-MockCalled @assMParams
}
}
context 'Output' {
$command = Get-Command -Name Sync-Website
it 'has an outputType defined' {
$command.OutputType | should not be $null
}
it 'returns nothing: <TestName>' -TestCases $testCases.All {
param($SourcePath, $TargetPath, $ComputerName, $Credential, $DoNotDelete)
& Sync-Website @PSBoundParameters | should benullorempty
}
}
}
}