forked from pspete/psPAS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAdd-PASApplicationAuthenticationMethod.Tests.ps1
More file actions
206 lines (116 loc) · 5.3 KB
/
Add-PASApplicationAuthenticationMethod.Tests.ps1
File metadata and controls
206 lines (116 loc) · 5.3 KB
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
Describe $($PSCommandPath -Replace '.Tests.ps1') {
BeforeAll {
#Get Current Directory
$Here = Split-Path -Parent $PSCommandPath
#Assume ModuleName from Repository Root folder
$ModuleName = Split-Path (Split-Path $Here -Parent) -Leaf
#Resolve Path to Module Directory
$ModulePath = Resolve-Path "$Here\..\$ModuleName"
#Define Path to Module Manifest
$ManifestPath = Join-Path "$ModulePath" "$ModuleName.psd1"
if ( -not (Get-Module -Name $ModuleName -All)) {
Import-Module -Name "$ManifestPath" -ArgumentList $true -Force -ErrorAction Stop
}
$Script:RequestBody = $null
$psPASSession = [ordered]@{
BaseURI = 'https://SomeURL/SomeApp'
User = $null
ExternalVersion = [System.Version]'0.0'
WebSession = New-Object Microsoft.PowerShell.Commands.WebRequestSession
StartTime = $null
ElapsedTime = $null
LastCommand = $null
LastCommandTime = $null
LastCommandResults = $null
}
New-Variable -Name psPASSession -Value $psPASSession -Scope Script -Force
}
AfterAll {
$Script:RequestBody = $null
}
InModuleScope $(Split-Path (Split-Path (Split-Path -Parent $PSCommandPath) -Parent) -Leaf ) {
BeforeEach {
Mock Invoke-PASRestMethod -MockWith {
}
$InputObj = [pscustomobject]@{
'AppID' = 'SomeApplication'
}
}
Context 'Mandatory Parameters' {
$Parameters = @{Parameter = 'AppID' },
@{Parameter = 'path' },
@{Parameter = 'hash' },
@{Parameter = 'osUser' },
@{Parameter = 'machineAddress' },
@{Parameter = 'certificateserialnumber' }
It 'specifies parameter <Parameter> as mandatory' -TestCases $Parameters {
param($Parameter)
(Get-Command Add-PASApplicationAuthenticationMethod).Parameters["$Parameter"].Attributes.Mandatory | Select-Object -Unique | Should -Be $true
}
}
Context 'Input' {
It 'sends request' {
$InputObj | Add-PASApplicationAuthenticationMethod -path 'SomePath' -IsFolder $true -AllowInternalScripts $true
Assert-MockCalled Invoke-PASRestMethod -Times 1 -Exactly -Scope It
}
It 'sends request to expected endpoint' {
$InputObj | Add-PASApplicationAuthenticationMethod -path 'SomePath' -IsFolder $true -AllowInternalScripts $true
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter {
$URI -eq "$($Script:psPASSession.BaseURI)/WebServices/PIMServices.svc/Applications/SomeApplication/Authentications/"
} -Times 1 -Exactly -Scope It
}
It 'uses expected method' {
$InputObj | Add-PASApplicationAuthenticationMethod -path 'SomePath' -IsFolder $true -AllowInternalScripts $true
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter { $Method -match 'POST' } -Times 1 -Exactly -Scope It
}
It 'sends request with expected AuthType for path authentication' {
$InputObj | Add-PASApplicationAuthenticationMethod -path 'SomePath' -IsFolder $true -AllowInternalScripts $true
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter {
$Script:RequestBody = $Body | ConvertFrom-Json
($Script:RequestBody.authentication.AuthType) -eq 'path'
} -Times 1 -Exactly -Scope It
}
It 'sends request with expected AuthType for hash authentication' {
$InputObj | Add-PASApplicationAuthenticationMethod -hash 'SomeHash'
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter {
$Script:RequestBody = $Body | ConvertFrom-Json
($Script:RequestBody.authentication.AuthType) -eq 'hash'
} -Times 1 -Exactly -Scope It
}
It 'sends request with expected AuthType for osUser authentication' {
$InputObj | Add-PASApplicationAuthenticationMethod -osUser 'SomeUser'
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter {
$Script:RequestBody = $Body | ConvertFrom-Json
($Script:RequestBody.authentication.AuthType) -eq 'osUser'
} -Times 1 -Exactly -Scope It
}
It 'sends request with expected AuthType for machineAddress authentication' {
$InputObj | Add-PASApplicationAuthenticationMethod -machineAddress 'machineAddress'
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter {
$Script:RequestBody = $Body | ConvertFrom-Json
($Script:RequestBody.authentication.AuthType) -eq 'machineAddress'
} -Times 1 -Exactly -Scope It
}
It 'sends request with expected AuthType for certificateserialnumber authentication' {
$InputObj | Add-PASApplicationAuthenticationMethod -certificateserialnumber 'certificateserialnumber'
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter {
$Script:RequestBody = $Body | ConvertFrom-Json
($Script:RequestBody.authentication.AuthType) -eq 'certificateserialnumber'
} -Times 1 -Exactly -Scope It
}
It 'sends request with expected AuthType for certificateattr authentication' {
Add-PASApplicationAuthenticationMethod -AppID AppWebService -SubjectAlternativeName 'DNS Name=application.service'
Assert-MockCalled Invoke-PASRestMethod -ParameterFilter {
$Script:RequestBody = $Body | ConvertFrom-Json
($Script:RequestBody.authentication.AuthType) -eq 'certificateattr'
} -Times 1 -Exactly -Scope It
}
}
Context 'Output' {
It 'provides no output' {
$response = $InputObj | Add-PASApplicationAuthenticationMethod -path 'SomePath' -IsFolder $true -AllowInternalScripts $true
$response | Should -BeNullOrEmpty
}
}
}
}