forked from psget/psget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPsGetPesterAssertionExtensions.ps1
305 lines (246 loc) · 8.92 KB
/
PsGetPesterAssertionExtensions.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
#region Custom Pester assertions
function PesterHaveCountOf {
param([array] $list,[int] $count)
process {
return ($list -and $list.Length -eq $count)
}
}
function PesterHaveCountOfFailureMessage {
param([array] $list,[int] $count)
process {
return "Expected array length of $count, actual array length: $($list.length)"
}
}
function NotPesterHaveCountOfFailureMessage {
param([array] $list,[int] $count)
process {
return "Expected array length of $count to be different than actual array length: $($list.length)"
}
}
<#
.SYNOPSIS
Verifies that a module can be imported by name only (using the $env:PSModulePath to locate the module)
.PARAMETER Module
The module name
.PARAMETER Args
$Args[0] can optionally contain the path of where the module is required to be installed
#>
function PesterBeGloballyImportable {
param([String] $Module)
process {
$modulePath = ConvertTo-CanonicalPath -path (Get-UserModulePath)
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = ConvertTo-CanonicalPath -path $args[0]
}
$paths = $env:PSModulePath -split ";" | foreach { ConvertTo-CanonicalPath -Path $_ }
if ($paths -inotcontains $modulePath) {
return $false
}
#To pass, all modules must be importable via the $env:PSModulePath environment variable (explicit path not required)
try {
Import-Module -Name $Module -ErrorAction Stop
} catch {
return $false
} finally {
Remove-Module -Name $Module -Force -ErrorAction SilentlyContinue
}
return $true
}
}
function PesterBeGloballyImportableFailureMessage {
param([String] $Module)
process {
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
return @"
The module '$Module' was not globally importable (requires that module's install base path is in the `$env:PSModulePath variable)
Installation location of module '$Module':
$modulePath
Value of `$env:PSModulePath
$env:PSModulePath
"@
}
}
function NotPesterBeGloballyImportableFailureMessage {
param([String] $Module)
process {
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
return @"
The module '$Module' was globally importable, but was not expected to be (requires that module's install base path is NOT in the `$env:PSModulePath variable)
Installation location of module '$Module':
$modulePath
Value of `$env:PSModulePath
$env:PSModulePath
"@
}
}
function PesterBeInPSModulePath {
param([String] $Module)
process {
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $modulePath -ChildPath $Module
$baseFilename = Join-Path -Path $expectedInstallationPath -ChildPath $Module
try {
#Get the module by name
$foundmodule = get-module -Name $module -ListAvailable
$foundModuleInExactLocation = $foundmodule | Where-Object { [io.path]::GetDirectoryName($_.Path) -like $expectedInstallationPath }
#Verify that the module exists in the correct location
if (-not $foundModuleInExactLocation) {
return $false
}
} catch {
# Powershell v2 Get-Module returns cached entries for freshly deleted module which contains an error message instead if a path
# therefore GetDirectoryName throws an error which we need to catch.
return $false
}
return $true
}
}
function PesterBeInPSModulePathFailureMessage {
param([String] $Module)
process {
return "The path for the module '$Module' was not in PSModulePath environment variable"
}
}
function NotPesterBeInPSModulePathFailureMessage {
param([String] $Module)
process {
return "The path for the module '$Module' was in PSModulePath environment variable, it was not expected to be"
}
}
<#
.SYNOPSIS
Ensures that a module exists, can be imported, and can be listed using the $env:PSModulePath envrionment variable
#>
function PesterBeInstalled {
param([String] $Module)
process {
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $modulePath -ChildPath $Module
$baseFilename = Join-Path -Path $expectedInstallationPath -ChildPath $Module
#Verify that the module (DLL or PSM1) exists
if (-not (Test-Path "$baseFileName.psm1") -and -not (Test-Path "$baseFileName.dll")) {
throw "Module $Module was not installed at '$baseFileName.psm1' or '$baseFileName.dll'"
}
return $true
}
}
<#
.SYNOPSIS
Ensures that a module exists, can be imported, and can be listed using the $env:PSModulePath envrionment variable
#>
function PesterBeInstalledGlobally {
param([String] $Module)
process {
$modulePath = $global:CommonGlobalModuleBasePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $modulePath -ChildPath $Module
$baseFilename = Join-Path -Path $expectedInstallationPath -ChildPath $Module
#Verify that the module (DLL or PSM1) exists
if (-not (Test-Path "$baseFileName.psm1") -and -not (Test-Path "$baseFileName.dll")) {
throw "Module $Module was not installed at '$baseFileName.psm1' or '$baseFileName.dll'"
}
return $true
}
}
function PesterBeInstalledFailureMessage {
param([String] $Module)
process {
return "$Module was not installed"
}
}
function PesterHaveExecutedPostInstallHook {
param([String] $Module)
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $modulePath -ChildPath $Module
$installedPath = Join-Path -Path $expectedInstallationPath -ChildPath "installed.txt"
#Verify that the installed.txt was created
if (-not (Test-Path $installedPath)) {
throw "Post-install-hook of $Module was not executed"
}
return $true
}
function PesterHaveExecutedPostInstallHookFailureMessage {
param([String] $Module)
process {
return "$Module's post-install-hook not executed"
}
}
function PesterNotHaveExecutedPostInstallHook {
param([String] $Module)
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $modulePath -ChildPath $Module
$installedPath = Join-Path -Path $expectedInstallationPath -ChildPath "installed.txt"
#Verify that the installed.txt was created
if (Test-Path $installedPath) {
throw "$Module's post-install-hook executed against request"
}
return $true
}
function PesterNotHaveExecutedPostInstallHookFailureMessage {
param([String] $Module)
process {
return "$Module's post-install-hook executed against request"
}
}
function PesterHaveExecutedPostUpdateHook {
param([String] $Module)
process {
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $modulePath -ChildPath $Module
$installedPath = Join-Path -Path $expectedInstallationPath -ChildPath "updated.txt"
#Verify that the installed.txt was created
if (-not (Test-Path $installedPath)) {
throw "Post-update-hook of $Module was not executed"
}
return $true
}
}
function PesterHaveExecutedPostUpdateHookFailureMessage {
param($Module)
return "$Module's post-update-hook not executed"
}
function PesterNotHaveExecutedPostUpdateHook {
param([String] $Module)
process {
$modulePath = Get-UserModulePath
if ($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $modulePath -ChildPath $Module
$installedPath = Join-Path -Path $expectedInstallationPath -ChildPath "updated.txt"
#Verify that the installed.txt was created
if (Test-Path $installedPath) {
throw "$Module's post-update-hook executed against request"
}
return $true
}
}
function PesterNotHaveExecutedPostUpdateHookFailureMessage {
param($Module)
return "$Module's post-update-hook executed against request"
}
#endregion