-
Notifications
You must be signed in to change notification settings - Fork 52
/
StorageDsc.Common.Tests.ps1
342 lines (292 loc) · 13.1 KB
/
StorageDsc.Common.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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
$script:ModuleName = 'StorageDsc.Common'
Import-Module -Name (Join-Path -Path (Join-Path -Path (Split-Path $PSScriptRoot -Parent) -ChildPath 'TestHelpers') -ChildPath 'CommonTestHelper.psm1')
#region HEADER
# Unit Test Template Version: 1.1.0
[System.String] $script:moduleRoot = Split-Path -Parent (Split-Path -Parent $PSScriptRoot)
if ( (-not (Test-Path -Path (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests'))) -or `
(-not (Test-Path -Path (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1'))) )
{
& git @('clone', 'https://github.com/PowerShell/DscResource.Tests.git', (Join-Path -Path $script:moduleRoot -ChildPath '\DSCResource.Tests\'))
}
Import-Module (Join-Path -Path $script:moduleRoot -ChildPath 'DSCResource.Tests\TestHelper.psm1') -Force
Import-Module -Name (Join-Path -Path (Join-Path -Path $script:moduleRoot -ChildPath (Join-Path -Path 'Modules' -ChildPath $script:ModuleName)) -ChildPath "$script:ModuleName.psm1") -Force
#endregion HEADER
# Begin Testing
try
{
#region Pester Tests
$LocalizedData = InModuleScope $script:ModuleName {
$LocalizedData
}
#region Pester Test Initialization
$driveLetterGood = 'C'
$driveLetterGoodwithColon = 'C:'
$driveLetterBad = '1'
$driveLetterBadColon = ':C'
$driveLetterBadTooLong = 'FE:'
$accessPathGood = 'c:\Good'
$accessPathGoodWithSlash = 'c:\Good\'
$accessPathBad = 'c:\Bad'
#region Functions To Mock
function Get-Disk
{
[CmdletBinding()]
Param
(
[System.UInt32]
$Number,
[System.String]
$UniqueId
)
}
#endregion
#region Function Assert-DriveLetterValid
Describe 'StorageDsc.Common\Assert-DriveLetterValid' {
Context 'Drive letter is good, has no colon and colon is not required' {
It "Should return '$driveLetterGood'" {
Assert-DriveLetterValid -DriveLetter $driveLetterGood | Should -Be $driveLetterGood
}
}
Context 'Drive letter is good, has no colon but colon is required' {
It "Should return '$driveLetterGoodwithColon'" {
Assert-DriveLetterValid -DriveLetter $driveLetterGood -Colon | Should -Be $driveLetterGoodwithColon
}
}
Context 'Drive letter is good, has a colon but colon is not required' {
It "Should return '$driveLetterGood'" {
Assert-DriveLetterValid -DriveLetter $driveLetterGoodwithColon | Should -Be $driveLetterGood
}
}
Context 'Drive letter is good, has a colon and colon is required' {
It "Should return '$driveLetterGoodwithColon'" {
Assert-DriveLetterValid -DriveLetter $driveLetterGoodwithColon -Colon | Should -Be $driveLetterGoodwithColon
}
}
Context 'Drive letter is non alpha' {
$errorRecord = Get-InvalidArgumentRecord `
-Message $($LocalizedData.InvalidDriveLetterFormatError -f $driveLetterBad) `
-ArgumentName 'DriveLetter'
It 'Should throw InvalidDriveLetterFormatError' {
{ Assert-DriveLetterValid -DriveLetter $driveLetterBad } | Should -Throw $errorRecord
}
}
Context 'Drive letter has a bad colon location' {
$errorRecord = Get-InvalidArgumentRecord `
-Message $($LocalizedData.InvalidDriveLetterFormatError -f $driveLetterBadColon) `
-ArgumentName 'DriveLetter'
It 'Should throw InvalidDriveLetterFormatError' {
{ Assert-DriveLetterValid -DriveLetter $driveLetterBadColon } | Should -Throw $errorRecord
}
}
Context 'Drive letter is too long' {
$errorRecord = Get-InvalidArgumentRecord `
-Message $($LocalizedData.InvalidDriveLetterFormatError -f $driveLetterBadTooLong) `
-ArgumentName 'DriveLetter'
It 'Should throw InvalidDriveLetterFormatError' {
{ Assert-DriveLetterValid -DriveLetter $driveLetterBadTooLong } | Should -Throw $errorRecord
}
}
}
#endregion
#region Function Assert-AccessPathValid
Describe "StorageDsc.Common\Assert-AccessPathValid" {
Mock `
-CommandName Test-Path `
-ModuleName StorageDsc.Common `
-MockWith { $true }
Context 'Path is found, trailing slash included, not required' {
It "Should return '$accessPathGood'" {
Assert-AccessPathValid -AccessPath $accessPathGoodWithSlash | Should -Be $accessPathGood
}
}
Context 'Path is found, trailing slash included, required' {
It "Should return '$accessPathGoodWithSlash'" {
Assert-AccessPathValid -AccessPath $accessPathGoodWithSlash -Slash | Should -Be $accessPathGoodWithSlash
}
}
Context 'Path is found, trailing slash not included, required' {
It "Should return '$accessPathGoodWithSlash'" {
Assert-AccessPathValid -AccessPath $accessPathGood -Slash | Should -Be $accessPathGoodWithSlash
}
}
Context 'Path is found, trailing slash not included, not required' {
It "Should return '$accessPathGood'" {
Assert-AccessPathValid -AccessPath $accessPathGood | Should -Be $accessPathGood
}
}
Mock `
-CommandName Test-Path `
-ModuleName StorageDsc.Common `
-MockWith { $false }
Context 'Drive is not found' {
$errorRecord = Get-InvalidArgumentRecord `
-Message $($LocalizedData.InvalidAccessPathError -f $accessPathBad) `
-ArgumentName 'AccessPath'
It 'Should throw InvalidAccessPathError' {
{ Assert-AccessPathValid `
-AccessPath $accessPathBad } | Should -Throw $errorRecord
}
}
}
#endregion
#region Function Get-DiskByIdentifier
InModuleScope $script:ModuleName {
$testDiskNumber = 10
$testDiskUniqueId = 'DiskUniqueId'
$testDiskGuid = [Guid]::NewGuid().ToString()
$mockedDisk = [pscustomobject] @{
Number = $testDiskNumber
UniqueId = $testDiskUniqueId
Guid = $testDiskGuid
}
Describe 'StorageDsc.Common\Get-DiskByIdentifier' {
Context 'Disk exists that matches the specified Disk Number' {
Mock `
-CommandName Get-Disk `
-MockWith { $mockedDisk } `
-ModuleName StorageDsc.Common `
-ParameterFilter { $Number -eq $testDiskNumber } `
-Verifiable
It "Should return Disk with Disk Number $testDiskNumber" {
(Get-DiskByIdentifier -DiskId $testDiskNumber).Number | Should -Be $testDiskNumber
}
It 'Should call expected mocks' {
Assert-VerifiableMock
Assert-MockCalled `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-ParameterFilter { $Number -eq $testDiskNumber } `
-Exactly `
-Times 1
}
}
Context 'Disk does not exist that matches the specified Disk Number' {
Mock `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-ParameterFilter { $Number -eq $testDiskNumber } `
-Verifiable
It "Should return Disk with Disk Number $testDiskNumber" {
Get-DiskByIdentifier -DiskId $testDiskNumber | Should -BeNullOrEmpty
}
It 'Should call expected mocks' {
Assert-VerifiableMock
Assert-MockCalled `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-ParameterFilter { $Number -eq $testDiskNumber } `
-Exactly `
-Times 1
}
}
Context 'Disk exists that matches the specified Disk Unique Id' {
Mock `
-CommandName Get-Disk `
-MockWith { $mockedDisk } `
-ModuleName StorageDsc.Common `
-ParameterFilter { $UniqueId -eq $testDiskUniqueId } `
-Verifiable
It "Should return Disk with Disk Unique Id $testDiskUniqueId" {
(Get-DiskByIdentifier -DiskId $testDiskUniqueId -DiskIdType 'UniqueId').UniqueId | Should -Be $testDiskUniqueId
}
It 'Should call expected mocks' {
Assert-VerifiableMock
Assert-MockCalled `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-ParameterFilter { $UniqueId -eq $testDiskUniqueId } `
-Exactly `
-Times 1
}
}
Context 'Disk does not exist that matches the specified Disk Unique Id' {
Mock `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-ParameterFilter { $UniqueId -eq $testDiskUniqueId } `
-Verifiable
It "Should return Disk with Disk Unique Id $testDiskUniqueId" {
Get-DiskByIdentifier -DiskId $testDiskUniqueId -DiskIdType 'UniqueId' | Should -BeNullOrEmpty
}
It 'Should call expected mocks' {
Assert-VerifiableMock
Assert-MockCalled `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-ParameterFilter { $UniqueId -eq $testDiskUniqueId } `
-Exactly `
-Times 1
}
}
Context 'Disk exists that matches the specified Disk Guid' {
Mock `
-CommandName Get-Disk `
-MockWith { $mockedDisk } `
-ModuleName StorageDsc.Common `
-Verifiable
It "Should return Disk with Disk Guid $testDiskGuid" {
(Get-DiskByIdentifier -DiskId $testDiskGuid -DiskIdType 'Guid').Guid | Should -Be $testDiskGuid
}
It 'Should call expected mocks' {
Assert-VerifiableMock
Assert-MockCalled `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-Exactly `
-Times 1
}
}
Context 'Disk does not exist that matches the specified Disk Guid' {
Mock `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-Verifiable
It "Should return Disk with Disk Guid $testDiskGuid" {
Get-DiskByIdentifier -DiskId $testDiskGuid -DiskIdType 'Guid' | Should -BeNullOrEmpty
}
It 'Should call expected mocks' {
Assert-VerifiableMock
Assert-MockCalled `
-CommandName Get-Disk `
-ModuleName StorageDsc.Common `
-Exactly `
-Times 1
}
}
}
#endregion Function Get-DiskByIdentifier
Describe "StorageDsc.Common\Test-AccessPathAssignedToLocal" {
Context 'Contains a single access path that is local' {
It 'Should return $true' {
Test-AccessPathAssignedToLocal `
-AccessPath @('c:\MountPoint\') | Should -Be $true
}
}
Context 'Contains a single access path that is not local' {
It 'Should return $false' {
Test-AccessPathAssignedToLocal `
-AccessPath @('\\?\Volume{99cf0194-ac45-4a23-b36e-3e458158a63e}\') | Should -Be $false
}
}
Context 'Contains multiple access paths where one is local' {
It 'Should return $true' {
Test-AccessPathAssignedToLocal `
-AccessPath @('c:\MountPoint\', '\\?\Volume{99cf0194-ac45-4a23-b36e-3e458158a63e}\') | Should -Be $true
}
}
Context 'Contains multiple access paths where none are local' {
It 'Should return $false' {
Test-AccessPathAssignedToLocal `
-AccessPath @('\\?\Volume{905551f3-33a5-421d-ac24-c993fbfb3184}\','\\?\Volume{99cf0194-ac45-4a23-b36e-3e458158a63e}\') | Should -Be $false
}
}
}
#endregion
}
#endregion Pester Tests
}
finally
{
#region FOOTER
#endregion
}