forked from psget/psget
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PsGetPesterAssertionExtensions.ps1
190 lines (142 loc) · 5 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
#region Custom Pester assertions
function PesterHaveCountOf {
param([array]$list,[int]$count)
return ($list -and $list.Length -eq $count)
}
function PesterHaveCountOfFailureMessage {
param([array]$list,[int]$count)
return "Expected array length of $count, actual array length: $($list.length)"
}
function NotPesterHaveCountOfFailureMessage {
param([array]$list,[int]$count)
return "Expected array length of $count to be different than actual array length: $($list.length)"
}
function PesterBeGloballyImportable {
param($Module)
$modulePath = Canonicolize-Path -path $UserModulePath
if($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = Canonicolize-Path -path $args[0]
}
$paths = $env:PSModulePath -split ";" | foreach { Canonicolize-Path -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
<#
.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 PesterBeGloballyImportableFailureMessage {
param($Module)
$modulePath = $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($Module)
$modulePath = $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(
$Module
)
$modulePath = $UserModulePath
if($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $ModulePath -ChildPath $Module
$baseFilename = join-path $expectedInstallationPath $Module
#Get the module by name
$foundmodule = get-module -Name $module -ListAvailable
$foundModuleInExactLocation = $foundmodule|where {[io.path]::GetDirectoryName($_.Path) -like $expectedInstallationPath}
#Verify that the module exists in the correct location
if(-not $foundModuleInExactLocation) {
return $false
}
return $true
}
function PesterBeInPSModulePathFailureMessage {
param($Module)
return "The path for the module '$Module' was not in PSModulePath environment variable"
}
function NotPesterBeInPSModulePathFailureMessage {
param($Module)
return "The path for the module '$Module' was in PSModulePath environment variable, it was not expected to be"
}
function PesterBeInstalled {
param(
$Module
)
<#
.SYNOPSIS
Ensures that a module exists, can be imported, and can be listed using the $env:PSModulePath envrionment variable
#>
$modulePath = $UserModulePath
if($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $ModulePath -ChildPath $Module
$baseFilename = join-path $expectedInstallationPath $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 PesterBeInstalledGlobally {
param(
$Module
)
<#
.SYNOPSIS
Ensures that a module exists, can be imported, and can be listed using the $env:PSModulePath envrionment variable
#>
$modulePath = $CommonGlobalModuleBasePath
if($args -and $args[0] -and (Test-Path $args[0])) {
$modulePath = $args[0]
}
$expectedInstallationPath = Join-Path -Path $ModulePath -ChildPath $Module
$baseFilename = join-path $expectedInstallationPath $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($Module)
return "$Module was not installed"
}
#endregion