-
Notifications
You must be signed in to change notification settings - Fork 141
/
MSFT_ADKDSKey.Tests.ps1
885 lines (720 loc) · 41 KB
/
MSFT_ADKDSKey.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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
Import-Module -Name (Join-Path -Path $PSScriptRoot -ChildPath '..\TestHelpers\ActiveDirectoryDsc.TestHelper.psm1')
if (-not (Test-RunForCITestCategory -Type 'Unit' -Category 'Tests'))
{
return
}
$script:dscModuleName = 'ActiveDirectoryDsc'
$script:dscResourceName = 'MSFT_ADKDSKey'
#region HEADER
# Unit Test Template Version: 1.2.4
$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 -Name (Join-Path -Path $script:moduleRoot -ChildPath (Join-Path -Path 'DSCResource.Tests' -ChildPath 'TestHelper.psm1')) -Force
$TestEnvironment = Initialize-TestEnvironment `
-DSCModuleName $script:dscModuleName `
-DSCResourceName $script:dscResourceName `
-ResourceType 'Mof' `
-TestType Unit
#endregion HEADER
function Invoke-TestSetup
{
}
function Invoke-TestCleanup
{
Restore-TestEnvironment -TestEnvironment $TestEnvironment
}
# Begin Testing
try
{
Invoke-TestSetup
InModuleScope $script:dscResourceName {
# Load stub cmdlets and classes.
Import-Module (Join-Path -Path $PSScriptRoot -ChildPath 'Stubs\ActiveDirectory_2019.psm1') -Force
# Need to do a deep copy of the Array of objects that compare returns
function Copy-ArrayObjects
{
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Array]
$DeepCopyObject
)
$memStream = New-Object -TypeName 'IO.MemoryStream'
$formatter = New-Object -TypeName 'Runtime.Serialization.Formatters.Binary.BinaryFormatter'
$formatter.Serialize($memStream,$DeepCopyObject)
$memStream.Position = 0
$formatter.Deserialize($memStream)
}
$mockADDomain = 'OU=Fake,DC=contoso,DC=com'
$mockKDSServerConfiguration = [pscustomobject] @{
AttributeOfWrongFormat = $null
KdfParameters = $null #Byte[], not currently needed
SecretAgreementParameters = $null #Byte[], not currently needed
IsValidFormat = $true
SecretAgreementAlgorithm = 'DH'
KdfAlgorithm = 'SP800_108_CTR_HMAC'
SecretAgreementPublicKeyLength = 2048
SecretAgreementPrivateKeyLength = 512
VersionNumber = 1
}
$mockKDSRootKeyFuture = [pscustomobject] @{
AttributeOfWrongFormat = $null
KeyValue = $null #Byte[], not currently needed
EffectiveTime = [DateTime]::Parse('1/1/3000 13:00')
CreationTime = [DateTime]::Parse('1/1/3000 08:00')
IsFormatValid = $true
DomainController = 'CN=MockDC,{0}' -f $mockADDomain
ServerConfiguration = $mockKDSServerConfiguration
KeyId = '92051014-f6c5-4a09-8f7a-f747728d1b9a'
VersionNumber = 1
}
$mockKDSRootKeyPast = [pscustomobject] @{
AttributeOfWrongFormat = $null
KeyValue = $null #Byte[], not currently needed
EffectiveTime = [DateTime]::Parse('1/1/2000 13:00')
CreationTime = [DateTime]::Parse('1/1/2000 08:00')
IsFormatValid = $true
DomainController = 'CN=MockDC,{0}' -f $mockADDomain
ServerConfiguration = $mockKDSServerConfiguration
KeyId = '92051014-f6c5-4a09-8f7a-f747728d1b9a'
VersionNumber = 1
}
$mockKDSRootKeyFutureGet = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
CreationTime = $mockKDSRootKeyFuture.CreationTime
KeyId = $mockKDSRootKeyFuture.KeyId
Ensure = 'Present'
DistinguishedName = 'CN={0},CN=Master Root Keys,CN=Group Key Distribution Service,CN=Services,CN=Configuration,{1}' -f
$mockKDSRootKeyFuture.KeyId, $mockADDomain
}
$mockKDSRootKeyPastGet = @{
EffectiveTime = ($mockKDSRootKeyPast.EffectiveTime).ToString()
CreationTime = $mockKDSRootKeyPast.CreationTime
KeyId = $mockKDSRootKeyPast.KeyId
Ensure = 'Present'
DistinguishedName = 'CN={0},CN=Master Root Keys,CN=Group Key Distribution Service,CN=Services,CN=Configuration,{1}' -f
$mockKDSRootKeyPast.KeyId, $mockADDomain
}
$mockKDSRootKeyFutureCompare = @(
[pscustomobject] @{
Parameter = 'EffectiveTime'
Expected = $mockKDSRootKeyFutureGet.EffectiveTime
Actual = $mockKDSRootKeyFutureGet.EffectiveTime
Pass = $true
}
[pscustomobject] @{
Parameter = 'Ensure'
Expected = $mockKDSRootKeyFutureGet.Ensure
Actual = $mockKDSRootKeyFutureGet.Ensure
Pass = $true
}
[pscustomobject] @{
Parameter = 'DistinguishedName'
Expected = $mockKDSRootKeyFutureGet.DistinguishedName
Actual = $mockKDSRootKeyFutureGet.DistinguishedName
Pass = $true
}
)
$mockKDSRootKeyPastCompare = @(
[pscustomobject] @{
Parameter = 'EffectiveTime'
Expected = $mockKDSRootKeyPastGet.EffectiveTime
Actual = $mockKDSRootKeyPastGet.EffectiveTime
Pass = $true
}
[pscustomobject] @{
Parameter = 'Ensure'
Expected = $mockKDSRootKeyPastGet.Ensure
Actual = $mockKDSRootKeyPastGet.Ensure
Pass = $true
}
[pscustomobject] @{
Parameter = 'DistinguishedName'
Expected = $mockKDSRootKeyPastGet.DistinguishedName
Actual = $mockKDSRootKeyPastGet.DistinguishedName
Pass = $true
}
)
#region Function Assert-HasDomainAdminRights
Describe -Name 'MSFT_ADKDSKey\Assert-HasDomainAdminRights' {
Context 'When Assert-HasDomainAdminRights returns true' {
Context 'When the user has proper permissions' {
BeforeAll {
Mock -CommandName New-Object -MockWith {
$object = New-MockObject -Type 'System.Security.Principal.WindowsPrincipal'
$object | Add-Member -MemberType ScriptMethod -Name 'IsInRole' -Force -Value { return $true }
return $object
}
Mock -CommandName Get-CimInstance -MockWith { return @{ProductType = 0} }
}
It "Should Call 'New-Object' and 'Get-CimInstance'" {
$currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent()
Assert-HasDomainAdminRights -User $currentUser | Should -BeTrue
Assert-MockCalled -CommandName New-Object -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-CimInstance -Scope It -Exactly -Times 1
}
}
Context 'When the resource is run on a domain controller' {
BeforeAll {
Mock -CommandName New-Object -MockWith {
$object = New-MockObject -Type 'System.Security.Principal.WindowsPrincipal'
$object | Add-Member -MemberType ScriptMethod -Name 'IsInRole' -Force -Value { return $false }
return $object
}
Mock -CommandName Get-CimInstance -MockWith { return @{ProductType = 2} }
}
It "Should Call 'New-Object' and 'Get-CimInstance'" {
$currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent()
Assert-HasDomainAdminRights -User $currentUser | Should -BeTrue
Assert-MockCalled -CommandName New-Object -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-CimInstance -Scope It -Exactly -Times 1
}
}
}
Context 'When Assert-HasDomainAdminRights returns false' {
Context 'When the user does NOT have proper permissions' {
BeforeAll {
Mock -CommandName New-Object -MockWith {
$object = New-MockObject -Type 'System.Security.Principal.WindowsPrincipal'
$object | Add-Member -MemberType ScriptMethod -Name 'IsInRole' -Force -Value { return $false }
return $object
}
Mock -CommandName Get-CimInstance -MockWith { return @{ProductType = 0} }
}
It "Should Call 'New-Object' and 'Get-CimInstance'" {
$currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent()
Assert-HasDomainAdminRights -User $currentUser | Should -BeFalse
Assert-MockCalled -CommandName New-Object -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-CimInstance -Scope It -Exactly -Times 1
}
}
Context 'When the resource is NOT run on a domain controller' {
BeforeAll {
Mock -CommandName New-Object -MockWith {
$object = New-MockObject -Type 'System.Security.Principal.WindowsPrincipal'
$object | Add-Member -MemberType ScriptMethod -Name 'IsInRole' -Force -Value { return $false }
return $object
}
Mock -CommandName Get-CimInstance -MockWith { return @{ProductType = 0} }
}
It "Should Call 'New-Object' and 'Get-CimInstance'" {
$currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent()
Assert-HasDomainAdminRights -User $currentUser | Should -BeFalse
Assert-MockCalled -CommandName New-Object -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-CimInstance -Scope It -Exactly -Times 1
}
}
}
}
#endregion Function Assert-HasDomainAdminRights
#region Function Get-ADRootDomainDN
Describe -Name 'MSFT_ADKDSKey\Get-ADRootDomainDN' {
BeforeAll {
Mock -CommandName New-Object -MockWith {
$object = [PSCustomObject] @{}
$object | Add-Member -MemberType ScriptMethod -Name 'Get' -Value { return $mockADDomain }
return $object
}
}
It 'Should return domain distinguished name' {
Get-ADRootDomainDN | Should -Be $mockADDomain
}
}
#endregion Function Get-ADRootDomainDN
#region Function Get-TargetResource
Describe -Name 'MSFT_ADKDSKey\Get-TargetResource' -Tag 'Get' {
BeforeAll {
Mock -CommandName Assert-Module -ParameterFilter {
$ModuleName -eq 'ActiveDirectory'
}
Mock -CommandName Get-ADRootDomainDN -MockWith {
return $mockADDomain
}
Mock -CommandName Assert-HasDomainAdminRights -MockWith {
return $true
}
Mock -CommandName Get-KdsRootKey
}
Context -Name 'When the system uses specific parameters' {
It 'Should call "Assert-Module" to check AD module is installed' {
$getTargetResourceParameters = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
{ Get-TargetResource @getTargetResourceParameters } | Should -Not -Throw
Assert-MockCalled -CommandName Assert-Module -Scope It -Exactly -Times 1
}
}
Context -Name "When 'EffectiveTime' is not parsable by DateTime" {
It 'Should call throw an error if EffectiveTime cannot be parsed' {
$getTargetResourceParameters = @{
EffectiveTime = 'Useless Time'
}
{ Get-TargetResource @getTargetResourceParameters -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.EffectiveTimeInvalid -f
$getTargetResourceParameters.EffectiveTime)
}
Assert-MockCalled -CommandName Assert-HasDomainAdminRights -Scope It -Exactly -Times 0
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 0
}
Context -Name "When the Current User does not have proper permissions" {
Mock -CommandName Assert-HasDomainAdminRights -MockWith { return $false }
It 'Should call throw an error if Context User does not have correct permissions' {
$getTargetResourceParameters = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
$currentUser = [System.Security.Principal.WindowsIdentity]::GetCurrent()
{ Get-TargetResource @getTargetResourceParameters -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.IncorrectPermissions -f $currentUser.Name)
Assert-MockCalled -CommandName Assert-HasDomainAdminRights -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 0
}
}
Context -Name "When 'Get-KdsRootKey' throws an error" {
Mock -CommandName Get-KdsRootKey -MockWith {
throw 'Microsoft.ActiveDirectory.Management.ADServerDownException'
}
It "Should call 'Get-KdsRootKey' and throw an error when catching any errors" {
$getTargetResourceParameters = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
{ Get-TargetResource @getTargetResourceParameters -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.RetrievingKDSRootKeyError -f
$getTargetResourceParameters.EffectiveTime)
Assert-MockCalled -CommandName Assert-HasDomainAdminRights -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
}
}
Context -Name 'When the system is in desired state' {
Mock -CommandName Get-KdsRootKey -MockWith {
return ,@($mockKDSRootKeyFuture)
}
It 'Should mock call to Get-KdsRootKey and return identical information' {
$getTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
$getTargetResourceResult = Get-TargetResource @getTargetResourceParametersFuture
$getTargetResourceResult.EffectiveTime | Should -Be $mockKDSRootKeyFuture.EffectiveTime
$getTargetResourceResult.CreationTime | Should -Be $mockKDSRootKeyFuture.CreationTime
$getTargetResourceResult.KeyId | Should -Be $mockKDSRootKeyFuture.KeyId
$getTargetResourceResult.Ensure | Should -Be 'Present'
$dn = 'CN={0},CN=Master Root Keys,CN=Group Key Distribution Service,CN=Services,CN=Configuration,{1}' -f
$mockKDSRootKeyFuture.KeyId, $mockADDomain
$getTargetResourceResult.DistinguishedName | Should -Be $dn
Assert-MockCalled -CommandName Assert-HasDomainAdminRights -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
}
Context -Name 'When system has two or more KDS keys with the same effective date' {
Mock -CommandName Write-Warning
Mock -CommandName Get-KdsRootKey -MockWith {
return @($mockKDSRootKeyFuture,$mockKDSRootKeyFuture)
}
It 'Should return Warning that more than one key exists and Error that two keys exist with the same dates' {
$getTargetResourceParameters = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
{ Get-TargetResource @getTargetResourceParameters -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.FoundKDSRootKeySameEffectiveTime -f
$getTargetResourceParameters.EffectiveTime)
Assert-MockCalled -CommandName Write-Warning -Scope It -Times 1
Assert-MockCalled -CommandName Assert-HasDomainAdminRights -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
}
}
}
Context -Name 'When the system is NOT in the desired state' {
Context -Name 'When no KDS root keys exists' {
Mock -CommandName Get-KdsRootKey -MockWith {
return $null
}
It "Should return 'Ensure' is 'Absent'" {
$getTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
$getTargetResourceResult = Get-TargetResource @getTargetResourceParametersFuture
$getTargetResourceResult.Ensure | Should -Be 'Absent'
Assert-MockCalled -CommandName Assert-HasDomainAdminRights -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
}
}
Context -Name 'When the KDS root key does not exist' {
Mock -CommandName Get-KdsRootKey -MockWith {
return ,@($mockKDSRootKeyPast)
}
It "Should return 'Ensure' is 'Absent'" {
$getTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
$getTargetResourceResult = Get-TargetResource @getTargetResourceParametersFuture
$getTargetResourceResult.Ensure | Should -Be 'Absent'
Assert-MockCalled -CommandName Assert-HasDomainAdminRights -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
}
}
}
}
#endregion Function Get-TargetResource
#region Function Compare-TargetResourceState
Describe -Name 'MSFT_ADKDSKey\Compare-TargetResourceState' -Tag 'Compare' {
BeforeAll {
Mock -CommandName Get-TargetResource -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -MockWith {
return $mockKDSRootKeyFutureGet
}
}
Context -Name 'When the system is in the desired state' {
$compareTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
$compareTargetResourceResult = Compare-TargetResourceState @compareTargetResourceParametersFuture
$testCases = @()
$compareTargetResourceResult | ForEach-Object {
$testCases += @{
Parameter = $_.Parameter
Expected = $_.Expected
Actual = $_.Actual
Pass = $_.Pass
}
}
It "Should return identical information for <Parameter>" -TestCases $testCases {
param
(
[Parameter()]
$Parameter,
[Parameter()]
$Expected,
[Parameter()]
$Actual,
[Parameter()]
$Pass
)
$Expected | Should -BeExactly $Actual
$Pass | Should -BeTrue
}
}
Context -Name 'When the system is NOT in the desired state' {
$compareTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Absent'
}
$compareTargetResourceResult = Compare-TargetResourceState @compareTargetResourceParametersFuture
$testCases = @()
# Need to remove parameters that will always be true
$compareTargetResourceResult = $compareTargetResourceResult | Where-Object -FilterScript {
$_.Parameter -ne 'EffectiveTime' -and
$_.Parameter -ne 'DistinguishedName'
}
$compareTargetResourceResult | ForEach-Object {
$testCases += @{
Parameter = $_.Parameter
Expected = $_.Expected
Actual = $_.Actual
Pass = $_.Pass
}
}
It "Should return false for <Parameter>" -TestCases $testCases {
param
(
[Parameter()]
$Parameter,
[Parameter()]
$Expected,
[Parameter()]
$Actual,
[Parameter()]
$Pass
)
$Expected | Should -Not -Be $Actual
$Pass | Should -BeFalse
}
}
}
#endregion Function Compare-TargetResourceState
#region Function Test-TargetResource
Describe -Name 'MSFT_ADKDSKey\Test-TargetResource' -Tag 'Test' {
Context -Name "When the system is in the desired state and 'Ensure' is 'Present'" {
It "Should pass when the Parameters are properly set" {
Mock -CommandName Compare-TargetResourceState -MockWith {
return $mockKDSRootKeyFutureCompare
}
$testTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
Test-TargetResource @testTargetResourceParametersFuture | Should -BeTrue
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
}
Context -Name "When the system is in the desired state and 'Ensure' is 'Absent'" {
It "Should pass when 'Ensure' is set to 'Absent" {
$mockKDSRootKeyFutureCompareEnsureAbsent = Copy-ArrayObjects $mockKDSRootKeyFutureCompare
$objectEnsure = $mockKDSRootKeyFutureCompareEnsureAbsent | Where-Object -FilterScript {$_.Parameter -eq 'Ensure'}
$objectEnsure.Actual = 'Absent'
$objectEnsure.Pass = $true
Mock -CommandName Compare-TargetResourceState -MockWith {
return $mockKDSRootKeyFutureCompareEnsureAbsent
}
$testTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Absent'
}
Test-TargetResource @testTargetResourceParametersFuture | Should -BeTrue
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
}
Context -Name "When the system is NOT in the desired state and 'Ensure' is 'Absent'" {
$mockKDSRootKeyFutureCompareNotCompliant = Copy-ArrayObjects $mockKDSRootKeyFutureCompare
$testIncorrectParameters = @{
Ensure = 'Absent'
}
$testCases = @()
foreach($incorrectParameter in $testIncorrectParameters.GetEnumerator())
{
$objectParameter = $mockKDSRootKeyFutureCompareNotCompliant | Where-Object -FilterScript { $_.Parameter -eq $incorrectParameter.Name }
$objectParameter.Expected = $incorrectParameter.Value
$objectParameter.Pass = $false
$testCases += @{
Parameter = $incorrectParameter.Name; Value = $incorrectParameter.Value
}
}
Mock -CommandName Compare-TargetResourceState -MockWith {
return $mockKDSRootKeyFutureCompareNotCompliant
}
It "Should return $false when <Parameter> is incorrect" -TestCases $testCases {
param
(
[Parameter()]
$Parameter,
[Parameter()]
$Value
)
$testTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Present'
}
$testTargetResourceParametersFuture[$Parameter] = $value
Test-TargetResource @testTargetResourceParametersFuture | Should -BeFalse
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
}
}
#endregion Function Test-TargetResource
#region Function Set-TargetResource
Describe -Name 'MSFT_ADKDSKey\Set-TargetResource' -Tag 'Set' {
BeforeAll {
Mock -CommandName Add-KDSRootKey
Mock -CommandName Remove-ADObject
Mock -CommandName Write-Warning
}
Context -Name 'When the system is in the desired state and KDS Root Key is Present' {
Mock -CommandName Compare-TargetResourceState -MockWith {
return $mockKDSRootKeyFutureCompare
}
$setTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
}
It 'Should NOT take any action when all parameters are correct' {
Set-TargetResource @setTargetResourceParametersFuture
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 0
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 0
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 0
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
}
Context -Name 'When the system is in the desired state and KDS Root Key is Absent' {
$mockKDSRootKeyFutureCompareEnsureAbsent = Copy-ArrayObjects $mockKDSRootKeyFutureCompare
$objectEnsure = $mockKDSRootKeyFutureCompareEnsureAbsent | Where-Object -FilterScript {$_.Parameter -eq 'Ensure'}
$objectEnsure.Expected = 'Absent'
$objectEnsure.Pass = $false
Mock -CommandName Compare-TargetResourceState -MockWith {
return $mockKDSRootKeyFutureCompareEnsureAbsent
}
$setTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Present'
}
It 'Should NOT take any action when all parameters are correct' {
Set-TargetResource @setTargetResourceParametersFuture
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 1
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 0
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 0
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
}
Context -Name 'When the system is NOT in the desired state and need to remove KDS Root Key' {
BeforeEach {
$mockKDSRootKeyFutureCompareEnsureAbsent = Copy-ArrayObjects $mockKDSRootKeyFutureCompare
$objectEnsure = $mockKDSRootKeyFutureCompareEnsureAbsent | Where-Object -FilterScript {$_.Parameter -eq 'Ensure'}
$objectEnsure.Actual = 'Present'
$objectEnsure.Pass = $false
Mock -CommandName Compare-TargetResourceState -MockWith {
return $mockKDSRootKeyFutureCompareEnsureAbsent
}
$setTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Absent'
}
}
Context -Name 'When more than one KDS root key exists' {
Mock -CommandName Get-KdsRootKey -MockWith {
return @($mockKDSRootKeyFuture, $mockKDSRootKeyPast)
}
It "Should call 'Remove-ADObject' when 'Ensure' is set to 'Present'" {
Set-TargetResource @setTargetResourceParametersFuture
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 0
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 1
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 0
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
}
Context -Name 'When only one KDS root key exists' {
Mock -CommandName Get-KdsRootKey -MockWith {
return ,@($mockKDSRootKeyFuture)
}
It "Should call NOT 'Remove-ADObject' when 'Ensure' is set to 'Present' and 'ForceRemove' is 'False'" {
{ Set-TargetResource @setTargetResourceParametersFuture -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.NotEnoughKDSRootKeysPresentNoForce -f
$setTargetResourceParametersFuture.EffectiveTime)
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 0
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 0
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 0
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
$setTargetResourceParametersFutureForce = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Absent'
ForceRemove = $true
}
It "Should call 'Remove-ADObject' when 'Ensure' is set to 'Present' and 'ForceRemove' is 'True'" {
Set-TargetResource @setTargetResourceParametersFutureForce
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 0
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 1
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Get-KdsRootKey -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
}
Context -Name 'When calling Remove-ADObject fails' {
Mock -CommandName Get-KdsRootKey -MockWith {
return @($mockKDSRootKeyFuture, $mockKDSRootKeyPast)
}
Mock -CommandName Remove-ADObject -MockWith {
throw 'Microsoft.ActiveDirectory.Management.ADServerDownException'
}
It "Should call 'Remove-ADObject' and throw an error when catching any errors" {
{ Set-TargetResource @setTargetResourceParametersFuture -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.KDSRootKeyRemoveError -f
$setTargetResourceParametersFuture.EffectiveTime)
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Exactly -Times 1
}
}
}
Context -Name 'When the system is NOT in the desired state and need to add KDS Root Key' {
BeforeEach {
$mockKDSRootKeyCompareEnsureAbsent = Copy-ArrayObjects $mockKDSRootKeyFutureCompare
$objectEnsure = $mockKDSRootKeyCompareEnsureAbsent | Where-Object -FilterScript {$_.Parameter -eq 'Ensure'}
$objectEnsure.Actual = 'Absent'
$objectEnsure.Pass = $false
Mock -CommandName Compare-TargetResourceState -MockWith {
return $mockKDSRootKeyCompareEnsureAbsent
}
}
It "Should call 'Add-KDSRootKey' when 'Ensure' is set to 'Present'" {
$setTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Present'
}
Set-TargetResource @setTargetResourceParametersFuture
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 1
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 0
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 0
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime -eq $EffectiveTime
} -Scope It -Exactly -Times 1
}
It "Should NOT call 'Add-KDSRootKey' when 'EffectiveTime' is past date and 'AllowUnsafeEffectiveTime' is 'False'" {
$setTargetResourceParametersPast = @{
EffectiveTime = ($mockKDSRootKeyPast.EffectiveTime).ToString()
Ensure = 'Present'
}
{ Set-TargetResource @setTargetResourceParametersPast -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.AddingKDSRootKeyError -f
$setTargetResourceParametersPast.EffectiveTime)
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 0
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 0
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 0
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyPast.EffectiveTime
} -Scope It -Exactly -Times 1
}
It "Should call 'Add-KDSRootKey' when 'EffectiveTime' is past date and 'AllowUnsafeEffectiveTime' is 'True'" {
$setTargetResourceParametersPast = @{
EffectiveTime = ($mockKDSRootKeyPast.EffectiveTime).ToString()
Ensure = 'Present'
AllowUnsafeEffectiveTime = $true
}
Set-TargetResource @setTargetResourceParametersPast
Assert-MockCalled -CommandName Add-KDSRootKey -Scope It -Times 1
Assert-MockCalled -CommandName Remove-ADObject -Scope It -Times 0
Assert-MockCalled -CommandName Write-Warning -Scope It -Exactly -Times 1
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyPast.EffectiveTime
} -Scope It -Exactly -Times 1
}
It 'Should call throw an error if EffectiveTime cannot be parsed' {
$setTargetResourceParametersFuture = @{
EffectiveTime = 'Useless Time'
}
{ Set-TargetResource @setTargetResourceParametersFuture -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.EffectiveTimeInvalid -f
$setTargetResourceParametersFuture.EffectiveTime)
Assert-MockCalled -CommandName Compare-TargetResourceState -ParameterFilter {
$mockKDSRootKeyFuture.EffectiveTime
} -Scope It -Exactly -Times 1
}
Context -Name 'When calling Add-KDSRootKey fails' {
Mock -CommandName Add-KDSRootKey -MockWith {
throw 'Microsoft.ActiveDirectory.Management.ADServerDownException'
}
It "Should call 'Add-KdsRootKey' and throw an error when catching any errors" {
$setTargetResourceParametersFuture = @{
EffectiveTime = ($mockKDSRootKeyFuture.EffectiveTime).ToString()
Ensure = 'Present'
}
{ Set-TargetResource @setTargetResourceParametersFuture -ErrorAction 'SilentlyContinue' } |
Should -Throw ($script:localizedData.KDSRootKeyAddError -f
$setTargetResourceParametersFuture.EffectiveTime)
Assert-MockCalled -CommandName Add-KdsRootKey -Scope It -Exactly -Times 1
}
}
}
}
#endregion Function Set-TargetResource
}
}
finally
{
Invoke-TestCleanup
}