This repository has been archived by the owner on Jan 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
AutomationHelpers.Tests.ps1
987 lines (734 loc) · 46.3 KB
/
AutomationHelpers.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
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
. ./AutomationHelpers.ps1
Describe "CopyPSModules" {
It "can copy PS Modules to target directory" {
Mock Write-Log { }
Mock Expand-Archive { }
{ CopyPSModules } | Should -Not -Throw
Assert-MockCalled Expand-Archive -Times 1 -Scope It -ParameterFilter { $LiteralPath -eq ".\bosh-psmodules.zip" -and $DestinationPath -eq "C:\Program Files\WindowsPowerShell\Modules\" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Succesfully migrated Bosh Powershell modules to destination dir" }
}
It "fails gracefully when expanding archive fails" {
Mock Expand-Archive { throw "Expand-Archive failed because something went wrong" }
Mock Write-Log { }
{ CopyPSModules } | Should -Throw "Expand-Archive failed because something went wrong"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Expand-Archive failed because something went wrong" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to copy Bosh Powershell Modules into destination dir. See 'c:\provision\log.log' for more info." }
}
}
Describe "InstallCFFeatures" {
It "executes the Install-CFFeatures2016 powershell cmdlet" {
Mock Install-CFFeatures2016 { }
Mock Write-Log { }
{ InstallCFFeatures } | Should -Not -Throw
Assert-MockCalled Install-CFFeatures2016 -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Successfully installed CF features" }
}
It "fails gracefully when installing CF Features" {
Mock Install-CFFeatures2016 { throw "Something terrible happened while attempting to install a CF feature" }
Mock Write-Log { }
{ InstallCFFeatures } | Should -Throw "Something terrible happened while attempting to install a CF feature"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Something terrible happened while attempting to install a CF feature" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to install the CF features. See 'c:\provision\log.log' for more info." }
}
}
Describe "Enable-HyperV" {
It "executes the Enable-Hyper-V powershell cmdlet when the os version is 2019" {
Mock Enable-Hyper-V { }
Mock Write-Log { }
$osVersion2019 = "10.0.17763.2761"
Mock Get-OSVersionString { $osVersion2019 }
{ Enable-HyperV } | Should -Not -Throw
Assert-MockCalled Enable-Hyper-V -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Successfully enabled HyperV" }
}
It "does not execute the Enable-Hyper-V powershell cmdlet when the os version is not 2019" {
Mock Enable-Hyper-V { }
Mock Write-Log { }
$osVersion1803 = "10.0.17134.2761"
Mock Get-OSVersionString { $osVersion1803 }
{ Enable-HyperV } | Should -Not -Throw
Assert-MockCalled Enable-Hyper-V -Times 0 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Did not enable HyperV because OS Version is not 2019" }
}
It "fails gracefully when enabling Hyper-V" {
Mock Enable-Hyper-V { throw "unable to comply" }
Mock Write-Log { }
$osVersion2019 = "10.0.17763.2761"
Mock Get-OSVersionString { $osVersion2019 }
{ Enable-HyperV } | Should -Throw "unable to comply"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "unable to comply" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to enable HyperV. See 'c:\provision\log.log' for more info." }
}
}
Describe "InstallCFCell" {
It "executes the Protect-CFCell powershell cmdlet" {
Mock Protect-CFCell { }
Mock Write-Log { }
{ InstallCFCell } | Should -Not -Throw
Assert-MockCalled Protect-CFCell -Times 1
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Succesfully ran Protect-CFCell" }
}
It "fails gracefully when Protect-CFCell powershell cmdlet fails" {
Mock Protect-CFCell { throw "Something terrible happened while attempting to execute Protect-CFCell" }
Mock Write-Log { }
{ InstallCFCell } | Should -Throw "Something terrible happened while attempting to execute Protect-CFCell"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Something terrible happened while attempting to execute Protect-CFCell" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to execute Protect-CFCell powershell cmdlet. See 'c:\provision\log.log' for more info." }
}
}
Describe "InstallBoshAgent" {
It "executes the Install-Agent powershell cmdlet" {
Mock Install-Agent { }
Mock Write-Log { }
{ InstallBoshAgent } | Should -Not -Throw
Assert-MockCalled Install-Agent -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $agentZipPath -eq ".\agent.zip" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Bosh agent successfully installed" }
}
It "fails gracefully when Install-Agent powershell cmdlet fails" {
Mock Install-Agent { throw "Something terrible happened while attempting to execute Install-Agent" }
Mock Write-Log { }
{ InstallBoshAgent } | Should -Throw "Something terrible happened while attempting to execute Install-Agent"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Something terrible happened while attempting to execute Install-Agent" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to execute Install-Agent powershell cmdlet. See 'c:\provision\log.log' for more info." }
}
}
Describe "InstallOpenSSH" {
It "executes the Install-SSHD powershell cmdlet" {
Mock Install-SSHD { }
Mock Write-Log { }
{ InstallOpenSSH } | Should -Not -Throw
Assert-MockCalled Install-SSHD -Times 1 -Scope It -ParameterFilter { $SSHZipFile -eq ".\OpenSSH-Win64.zip" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "OpenSSH successfully installed" }
}
It "fails gracefully when Install-SSHD powershell cmdlet fails" {
Mock Install-SSHD { throw "Something terrible happened while attempting to execute Install-SSHD" }
Mock Write-Log { }
{ InstallOpenSSH } | Should -Throw "Something terrible happened while attempting to execute Install-SSHD"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Something terrible happened while attempting to execute Install-SSHD" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to execute Install-SSHD powershell cmdlet. See 'c:\provision\log.log' for more info." }
}
}
Describe "CleanUpVM" {
It "executes the Optimize-Disk and Compress-Disk powershell cmdlet" {
Mock Optimize-Disk { }
Mock Compress-Disk { }
Mock Write-Log { }
{ CleanUpVM } | Should -Not -Throw
Assert-MockCalled Optimize-Disk -Times 1 -Scope It
Assert-MockCalled Compress-Disk -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Successfully cleaned up the VM's disk" }
}
It "fails gracefully when Optimize-Disk powershell cmdlet fails" {
Mock Optimize-Disk { throw "Something terrible happened while attempting to execute Optimize-Disk" }
Mock Compress-Disk { }
Mock Write-Log { }
{ CleanUpVM } | Should -Throw "Something terrible happened while attempting to execute Optimize-Disk"
Assert-MockCalled Optimize-Disk -Times 1 -Scope It
Assert-MockCalled Compress-Disk -Times 0 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Something terrible happened while attempting to execute Optimize-Disk" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to clean up the VM's disk. See 'c:\provision\log.log' for more info." }
}
It "fails gracefully when Compress-Disk powershell cmdlet fails" {
Mock Optimize-Disk { }
Mock Compress-Disk { throw "Something terrible happened while attempting to execute Compress-Disk" }
Mock Write-Log { }
{ CleanUpVM } | Should -Throw "Something terrible happened while attempting to execute Compress-Disk"
Assert-MockCalled Optimize-Disk -Times 1 -Scope It
Assert-MockCalled Compress-Disk -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Something terrible happened while attempting to execute Compress-Disk" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to clean up the VM's disk. See 'c:\provision\log.log' for more info." }
}
}
Describe "SysprepVM" {
BeforeEach {
Mock Invoke-Sysprep { }
Mock GenerateRandomPassword { "SomeRandomPassword" }
Mock Write-Log { }
}
It "copies LGPO to the correct destination and executes the Invoke-Sysprep powershell cmdlet" {
{ SysprepVM } | Should -Not -Throw
Assert-MockCalled GenerateRandomPassword -Times 1 -Scope It
Assert-MockCalled Invoke-Sysprep -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $NewPassword -eq "SomeRandomPassword" }
}
It "executes the Invoke-Sysprep powershell cmdlet with owner parameter set when an owner string is provided" {
{ SysprepVM -Owner "some owner" } | Should -Not -Throw
Assert-MockCalled Invoke-Sysprep -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $NewPassword -eq "SomeRandomPassword" -and $Owner -eq "some owner" -and $Organization -eq "" }
}
It "executes the Invoke-Sysprep powershell cmdlet with organization parameter set when an organization string is provided" {
{ SysprepVM -Organization "some org" } | Should -Not -Throw
Assert-MockCalled Invoke-Sysprep -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $NewPassword -eq "SomeRandomPassword" -and $Organization -eq "some org" -and $Owner -eq "" }
}
It "executes the Invoke-Sysprep powershell cmdlet with owner parameter set when an organization string has line breaks" {
{ SysprepVM -Owner "some `r`n org" } | Should -Not -Throw
Assert-MockCalled Invoke-Sysprep -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $NewPassword -eq "SomeRandomPassword" -and $Owner -eq "some `r`n org" -and $Organization -eq "" }
}
It "executes the Invoke-Sysprep powershell cmdlet with owner & organization parameter set when an owner & organization string is provided" {
{ SysprepVM -Owner "some owner" -Organization "some org" } | Should -Not -Throw
Assert-MockCalled Invoke-Sysprep -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $NewPassword -eq "SomeRandomPassword" -and $Owner -eq "some owner" -and $Organization -eq "some org" }
}
It "fails gracefully when Invoke-Sysprep powershell cmdlet fails" {
Mock Invoke-Sysprep { throw "Invoke-Sysprep failed because something went wrong" }
{ SysprepVM } | Should -Throw "Invoke-Sysprep failed because something went wrong"
Assert-MockCalled GenerateRandomPassword -Times 1 -Scope It
Assert-MockCalled Invoke-Sysprep -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $NewPassword -eq "SomeRandomPassword" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Invoke-Sysprep failed because something went wrong" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to Sysprep the VM's. See 'c:\provision\log.log' for more info." }
}
It "fails gracefully when GenerateRandomPassword function fails" {
Mock GenerateRandomPassword { throw "GenerateRandomPassword failed because something went wrong" }
{ SysprepVM } | Should -Throw "GenerateRandomPassword failed because something went wrong"
Assert-MockCalled GenerateRandomPassword -Times 1 -Scope It
Assert-MockCalled Invoke-Sysprep -Times 0 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "GenerateRandomPassword failed because something went wrong" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to Sysprep the VM's. See 'c:\provision\log.log' for more info." }
}
It "doesn't generate a new password when -SkipRandomPassword set to true" {
{ SysprepVM -SkipRandomPassword $True} | Should -Not -Throw
Assert-MockCalled Invoke-Sysprep -Times 1 -Scope It -ParameterFilter { $IaaS -eq "vsphere" -and $NewPassword -eq $null }
}
}
Describe "GenerateRandomPassword" {
It "generates a valid password" {
Mock Get-Random { "changeMe123!".ToCharArray() }
Mock Valid-Password { $True }
Mock Write-Log{ }
$result = ""
{ GenerateRandomPassword | Set-Variable -Name "result" -Scope 1 } | Should -Not -Throw
$result | Should -BeExactly "changeMe123!"
Assert-MockCalled Get-Random -Times 1 -Scope It
Assert-MockCalled Valid-Password -Times 1 -Scope It -ParameterFilter { $Password -eq "changeMe123!" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Successfully generated password" }
}
It "fails to generate a valid password after 200 tries" {
Mock Get-Random { "changeMe123!".ToCharArray() }
Mock Valid-Password { $False }
Mock Write-Log{ }
{ GenerateRandomPassword } | Should -Throw "Unable to generate a valid password after 200 attempts"
Assert-MockCalled Get-Random -Times 200 -Scope It
Assert-MockCalled Valid-Password -Times 200 -Scope It -ParameterFilter { $Password -eq "changeMe123!" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to generate password after 200 attempts" }
}
}
Describe "Valid-Password" {
Context "returns true with a valid password input of at least 8 characters" {
It "that contains at least 1 digit, 1 special, and 1 lower case character" {
Valid-Password "changeme123!" | Should -Be $True
}
It "that contains at least 1 digit, 1 special, and 1 upper case character" {
Valid-Password "CHANGEME123!" | Should -Be $True
}
It "that contains at least 1 digit, 1 upper case, and 1 lower case character" {
Valid-Password "Changeme123" | Should -Be $True
}
It "that contains at least 1 special, 1 upper case, and 1 lower case character" {
Valid-Password "Changeme!" | Should -Be $True
}
}
Context "returns false with a invalid password input" {
It "that contains less than 8 characters" {
Valid-Password "a" | Should -Be $false
}
It "that contains only upper and lower case characters" {
Valid-Password "Changemenow" | Should -Be $false
}
It "that contains only digits and special characters" {
Valid-Password "123!456*789?" | Should -Be $false
}
It "that contains only digits and upper case characters" {
Valid-Password "CHANGE123ME" | Should -Be $false
}
It "that contains only lower case and special characters" {
Valid-Password "qwerty!@#$%%" | Should -Be $false
}
It "that contains an invalid character" {
Valid-Password "JoyeuxNoël123!" | Should -Be $false
}
It "that contains a whitespace character" {
Valid-Password "JoyeuxNoel 123!" | Should -Be $false
}
}
}
Describe "Is-Special" {
It "returns true when given a valid special character" {
$CharList = "!`"#$%&'()*+,-./:;<=>?@[\]^_``{|}~".ToCharArray()
foreach ($c in $CharList)
{
Is-Special $c | Should -Be $true
}
}
It "returns false when given an alpha numeric characters" {
Is-Special "a" | Should -Be $False
Is-Special "5" | Should -Be $False
Is-Special "T" | Should -Be $False
}
It "returns false when given whitespace character" {
Is-Special " " | Should -Be $False
}
}
function GenerateDepJson
{
param ([parameter(Mandatory = $true)] [string]$file1Sha,
[parameter(Mandatory = $true)] [string]$file2Sha,
[parameter(Mandatory = $true)] [string]$file3Sha
)
return "{""file1.zip"":{""sha"":""$file1Sha"",""version"":""1.0""},""file2.zip"":{""sha"":""$file2Sha"",""version"":""1.0-alpha""},""file3.exe"":{""sha"":""$file3Sha"",""version"":""3.0""}}"
}
Describe "Check-Dependencies" {
BeforeEach {
Mock Write-Log { }
$file1Hash = @{
Algorithm = "SHA256"
Hash = "hashOne"
Path = "$PSScriptRoot/file1.zip"
}
$file2Hash = @{
Algorithm = "SHA256"
Hash = "hashTwo"
Path = "$PSScriptRoot/file2.zip"
}
$file3Hash = @{
Algorithm = "SHA256"
Hash = "hashThree"
Path = "$PSScriptRoot/file3.exe"
}
Mock Get-FileHash { New-Object PSObject -Property $file1Hash } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Mock Get-FileHash { New-Object PSObject -Property $file2Hash } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Mock Get-FileHash { New-Object PSObject -Property $file3Hash } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Mock Test-Path { $true } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Mock Test-Path { $true } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Mock Test-Path { $true } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
#We specify when to throw the exception to prevent other test from being polluted when calling Convert-FromJson
Mock ConvertFrom-Json { throw "Invalid JSON primitive: bad-json-format" } -ParameterFilter { $InputObject -match "bad-json-format" }
}
It "successfully checks all required files are available and have the correct SHAs" {
Mock Get-Content { GenerateDepJson "hashOne" "hashTwo" "hashThree" }
{ Check-Dependencies } | Should -Not -Throw
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Found all dependencies" }
}
Context "fails gracefully if the dependency file" {
It "is not present" {
Mock Get-Content { throw "File not found" }
{ Check-Dependencies } | Should -Throw "File not found"
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "File not found" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info." }
}
It "is empty" {
Mock Get-Content { "" }
{ Check-Dependencies } | Should -Throw "Dependency file is empty"
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Dependency file is empty" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info." }
}
It "contains an empty json object" {
Mock Get-Content { "{}" }
{ Check-Dependencies } | Should -Throw "Dependency file is empty"
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Dependency file is empty" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info." }
}
It "content is badly formatted" {
Mock Get-Content { "bad-json-format" }
{ Check-Dependencies } | Should -Throw "Invalid JSON primitive: bad-json-format"
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Invalid JSON primitive: bad-json-format" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info." }
}
}
Context "fails gracefully when checking file dependencies" {
It "when one or more are not found" {
Mock Get-Content { GenerateDepJson "hashOne" "hashTwo" "hashThree" }
Mock Test-Path { $false } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Mock Test-Path { $false } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
{ Check-Dependencies } | Should -Throw "One or more files are corrupted or missing."
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Get-FileHash -Times 0 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Get-FileHash -Times 0 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Write-Log -Times 0 -Scope It -ParameterFilter { $Message -like "$PSScriptRoot/file1.zip *" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "$PSScriptRoot/file2.zip is required but was not found" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "$PSScriptRoot/file3.exe is required but was not found" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info." }
}
It "when one or more file hashes do not match" {
Mock Get-Content { GenerateDepJson "hashOne" "badhash2" "badhash3" }
{ Check-Dependencies } | Should -Throw "One or more files are corrupted or missing."
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Write-Log -Times 0 -Scope It -ParameterFilter { $Message -like "$PSScriptRoot/file1.zip *" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "$PSScriptRoot/file2.zip does not have the correct hash" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "$PSScriptRoot/file3.exe does not have the correct hash" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info." }
}
It "when one file hash does not match and another file is missing " {
Mock Test-Path { $False } -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Mock Get-Content { GenerateDepJson "hashOne" "badhash2" "hashThree" }
{ Check-Dependencies } | Should -Throw "One or more files are corrupted or missing."
Assert-MockCalled Get-Content -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/deps.json" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Get-FileHash -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Get-FileHash -Times 0 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file1.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file2.zip" }
Assert-MockCalled Test-Path -Times 1 -Scope It -ParameterFilter { $Path -cmatch "$PSScriptRoot/file3.exe" }
Assert-MockCalled Write-Log -Times 0 -Scope It -ParameterFilter { $Message -like "$PSScriptRoot/file1.zip *" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "$PSScriptRoot/file2.zip does not have the correct hash" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "$PSScriptRoot/file3.exe is required but was not found" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info." }
}
}
}
Describe "Validate-OSVersion" {
BeforeEach {
Mock Write-Log { }
}
It "fails gracefully when the OS major version doesn't match" {
Mock Get-OSVersionString { "14.0.16299.0" }
{ Validate-OSVersion } | Should -Throw "OS Version Mismatch: Please use Windows Server 2019"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "OS Version Mismatch: Please use Windows Server 2019" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate the OS version. See 'c:\provision\log.log' for more info." }
Assert-MockCalled Get-OSVersionString -Times 1 -Scope It
}
It "fails gracefully when the OS minor version doesn't match" {
Mock Get-OSVersionString { "10.5.16299.0" }
{ Validate-OSVersion } | Should -Throw "OS Version Mismatch: Please use Windows Server 2019"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "OS Version Mismatch: Please use Windows Server 2019" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate the OS version. See 'c:\provision\log.log' for more info." }
Assert-MockCalled Get-OSVersionString -Times 1 -Scope It
}
It "fails gracefully when the OS build version doesn't match" {
Mock Get-OSVersionString { "10.0.12345.0" }
{ Validate-OSVersion } | Should -Throw "OS Version Mismatch: Please use Windows Server 2019"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "OS Version Mismatch: Please use Windows Server 2019" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate the OS version. See 'c:\provision\log.log' for more info." }
Assert-MockCalled Get-OSVersionString -Times 1 -Scope It
}
It "successfully validates the OS when it is Windows Server 2019" {
Mock Get-OSVersionString { "10.0.17763.2761" }
{ Validate-OSVersion } | Should -Not -Throw
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Found correct OS version: Windows Server 2019" }
Assert-MockCalled Get-OSVersionString -Times 1 -Scope It
}
It "fails gracefully when an exception is received when getting OS version" {
Mock Get-OSVersionString { throw "Could not fetch OS version" }
Mock Write-Log
{ Validate-OSVersion } | Should -Throw "Could not fetch OS version"
Assert-MockCalled Get-OSVersionString -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "Could not fetch OS version" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to validate the OS version. See 'c:\provision\log.log' for more info." }
}
}
Describe "DeleteScheduledTask" {
BeforeEach {
$scheduledTask1 = New-Object PSObject -Property @{
TaskName = "Task01"
}
$boshScheduledTask = New-Object PSObject -Property @{
TaskName = "BoshCompleteVMPrep"
}
$scheduledtask2 = New-Object PSObject -Property @{
TaskName = "Unknown task"
}
$scheduledtask3 = New-Object PSObject -Property @{
TaskName = "Another task"
}
Mock Write-Log { }
Mock Unregister-ScheduledTask { }
Mock Get-ScheduledTask { @($scheduledTask1,$boshScheduledTask,$scheduledTask2,$scheduledTask3) }
}
It "successfully delete the Bosh scheduled task, when the task has been registered" {
{ DeleteScheduledTask } | Should -Not -Throw
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "Successfully deleted the 'BoshCompleteVMPrep' scheduled task" }
Assert-MockCalled Get-ScheduledTask -Times 1 -Scope It
Assert-MockCalled Unregister-ScheduledTask -Times 1 -Scope It -ParameterFilter { $TaskName -cmatch "BoshCompleteVMPrep" -and $PSBoundParameters['Confirm'] -eq $false }
}
It "does nothing if the Bosh scheduled task has not been registered" {
Mock Get-ScheduledTask { @($scheduledTask1,$scheduledTask2,$scheduledTask3) }
{ DeleteScheduledTask } | Should -Not -Throw
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "BoshCompleteVMPrep schedule task was not registered" }
Assert-MockCalled Get-ScheduledTask -Times 1 -Scope It
Assert-MockCalled Unregister-ScheduledTask -Times 0 -Scope It -ParameterFilter { $TaskName -cmatch "BoshCompleteVMPrep" -and $PSBoundParameters['Confirm'] -eq $false }
}
It "fails gracefully if the registered Bosh scheduled task was not unregistered" {
Mock Unregister-ScheduledTask { throw "Could not unregister task" }
{ DeleteScheduledTask } | Should -Throw "Could not unregister task"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -cmatch "Could not unregister task" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to unregister the BoshCompleteVMPrep scheduled task. See 'c:\provision\log.log' for more info." }
Assert-MockCalled Get-ScheduledTask -Times 1 -Scope It
Assert-MockCalled Unregister-ScheduledTask -Times 1 -Scope It -ParameterFilter { $TaskName -cmatch "BoshCompleteVMPrep" -and $PSBoundParameters['Confirm'] -eq $false }
}
}
Describe "Create-VMPrepTaskAction" {
It "Sucessfully creates a TaskAction with owner and organization arguments" {
$taskAction = $null
$goldenArguments = "-NoExit -File ""$PSScriptRoot\Complete-VMPrep.ps1"" -Organization ""Pivotal Cloud Foundry"" -Owner ""Pivotal User"""
{ Create-VMPrepTaskAction -Owner "Pivotal User" -Organization "Pivotal Cloud Foundry" | Set-Variable -Name "taskAction" -Scope 1 } | Should -Not -Throw
$taskAction.Arguments | Should -eq $goldenArguments
}
It "Sucessfully creates a TaskAction with SkipRandomPassword" {
$taskAction = $null
$goldenArguments = "-NoExit -File ""$PSScriptRoot\Complete-VMPrep.ps1"" -SkipRandomPassword"
{ Create-VMPrepTaskAction -SkipRandomPassword | Set-Variable -Name "taskAction" -Scope 1 } | Should -Not -Throw
$taskAction.Arguments | Should -eq $goldenArguments
}
}
Describe "Set-RegKeys" {
It "Successfully sets the registry keys." {
Mock New-ItemProperty{ }
Mock Test-Path { $True }
{ Set-RegKeys } | Should -Not -Throw
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\QualityCompat' -and $Value -eq 0 -and $Name -eq 'cadca5fe-87d3-4b96-b7fb-a231484277cc' }
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization' -and $Value -eq 1.0 -and $Name -eq 'MinVmVersionForCpuBasedMitigations' }
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management' -and $Value -eq 3 -and $Name -eq 'FeatureSettingsOverrideMask' }
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management' -and $Value -eq 72 -and $Name -eq 'FeatureSettingsOverride' }
}
It "Successfully sets the registry keys including non-existing one. " {
Mock New-Item { }
Mock New-ItemProperty{ }
Mock Test-Path { $False }
{ Set-RegKeys } | Should -Not -Throw
Assert-MockCalled New-Item -ParameterFilter{ $Path -eq 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\QualityCompat' } -Times 1
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\QualityCompat' -and $Value -eq 0 -and $Name -eq 'cadca5fe-87d3-4b96-b7fb-a231484277cc' }
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization' -and $Value -eq 1.0 -and $Name -eq 'MinVmVersionForCpuBasedMitigations' }
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management' -and $Value -eq 3 -and $Name -eq 'FeatureSettingsOverrideMask' }
Assert-MockCalled New-ItemProperty -ParameterFilter{ $Path -eq 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management' -and $Value -eq 72 -and $Name -eq 'FeatureSettingsOverride' }
}
}
Describe "Install-SecurityPoliciesAndRegistries" {
BeforeEach {
function Set-InternetExplorerRegistries{ }
}
It "executes the Set-InternetExplorerRegistries powershell cmdlet if the os verison is 2019" {
$osVersion2019 = "10.0.17763.0"
Mock Set-InternetExplorerRegistries { }
Mock Write-Log { }
Mock Get-OSVersionString { $osVersion2019 }
{ Install-SecurityPoliciesAndRegistries } | Should -Not -Throw
Assert-MockCalled Set-InternetExplorerRegistries -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Succesfully ran Set-InternetExplorerRegistries" }
}
It "does not execute the Set-InternetExplorerRegistries powershell cmdlet if the os version is not 2019" {
Mock Set-InternetExplorerRegistries { }
Mock Write-Log { }
Mock Get-OSVersionString { "NOT_2019" }
{ Install-SecurityPoliciesAndRegistries } | Should -Not -Throw
Assert-MockCalled Set-InternetExplorerRegistries -Times 0 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Did not run Set-InternetExplorerRegistries because OS version was not 2019" }
}
It "fails gracefully when Set-InternetExplorerRegistries powershell cmdlet fails" {
$osVersion2019 = "10.0.17763.0"
Mock Get-OSVersionString { $osVersion2019 }
Mock Set-InternetExplorerRegistries { throw "Something terrible happened while attempting to execute Set-InternetExplorerRegistries" }
Mock Write-Log { }
{ Install-SecurityPoliciesAndRegistries } | Should -Throw "Something terrible happened while attempting to execute Set-InternetExplorerRegistries"
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Something terrible happened while attempting to execute Set-InternetExplorerRegistries" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter { $Message -eq "Failed to execute Set-InternetExplorerRegistries powershell cmdlet. See 'c:\provision\log.log' for more info." }
}
}
function CreateFakeOpenSSHZip
{
param([string]$dir, [string]$installScriptSpyStatus, [string]$fakeZipPath)
mkdir "$dir\OpenSSH-Win64"
$installSpyBehavior = "echo installed > $installScriptSpyStatus"
echo $installSpyBehavior > "$dir\OpenSSH-Win64\install-sshd.ps1"
echo "fake sshd" > "$dir\OpenSSH-Win64\sshd.exe"
Compress-Archive -Force -Path "$dir\OpenSSH-Win64" -DestinationPath $fakeZipPath
}
function CreateFakeLGPOZip
{
param([string]$dir, [string]$fakeZipPath)
New-Item -ItemType Directory "$dir\LGPO"
echo "fake lgpo" > "$dir\LGPO\LGPO.exe"
Compress-Archive -Force -Path "$dir\LGPO\*" -DestinationPath $fakeZipPath
}
Describe "Enable-SSHD" {
BeforeEach {
Mock Set-Service { }
Mock Run-LGPO { }
$guid = $( New-Guid ).Guid
$TMP_DIR = "$env:TEMP\BOSH.SSH.Tests-$guid"
$FAKE_ZIP = "$TMP_DIR\OpenSSH-TestFake.zip"
$INSTALL_SCRIPT_SPY_STATUS = "$TMP_DIR\install-script-status"
CreateFakeOpenSSHZip -dir $TMP_DIR -installScriptSpyStatus $INSTALL_SCRIPT_SPY_STATUS -fakeZipPath $FAKE_ZIP
mkdir -p "$TMP_DIR\Windows\Temp"
echo "fake LGPO" > "$TMP_DIR\Windows\LGPO.exe"
$ORIGINAL_WINDIR = $env:WINDIR
$env:WINDIR = "$TMP_DIR\Windows"
$ORIGINAL_PROGRAMDATA = $env:ProgramData
$env:PROGRAMDATA = "$TMP_DIR\ProgramData"
}
AfterEach {
Remove-Item $TMP_DIR -Recurse -ErrorAction Ignore
$env:WINDIR = $ORIGINAL_WINDIR
$env:PROGRAMDATA = $ORIGINAL_PROGRAMDATA
}
It "sets the startup type of sshd to automatic" {
Mock Set-Service { } -Verifiable -ParameterFilter { $Name -eq "sshd" -and $StartupType -eq "Automatic" }
Enable-SSHD -SSHZipFile $FAKE_ZIP
Assert-VerifiableMock
}
It "sets the startup type of ssh-agent to automatic" {
Mock Set-Service { } -Verifiable -ParameterFilter { $Name -eq "ssh-agent" -and $StartupType -eq "Automatic" }
Enable-SSHD -SSHZipFile $FAKE_ZIP
Assert-VerifiableMock
}
It "sets up firewall when ssh not already set up" {
Mock Get-NetFirewallRule {
return [ordered]@{
"Name" = "{3c06039b-ece1-4da3-8ece-255894975894}"
"DisplayName" = "NTP"
"Description" = ""
"DisplayGroup" = ""
"Group" = ""
"Enabled" = "True"
"Profile" = "Any"
"Platform" = "{}"
"Direction" = "Outbound"
"Action" = "Allow"
"EdgeTraversalPolicy" = "Block"
"LooseSourceMapping" = "False"
"LocalOnlyMapping" = "False"
"Owner" = ""
"PrimaryStatus" = "OK"
"Status" = "The rule was parsed successfully from the store. (65536)"
"EnforcementStatus" = "NotApplicable"
"PolicyStoreSource" = "PersistentStore"
"PolicyStoreSourceType" = "Local"
}
}
Mock New-NetFirewallRule { }
Enable-SSHD -SSHZipFile $FAKE_ZIP
Assert-MockCalled New-NetFirewallRule -Times 1 -Scope It
}
It "doesn't set up firewall when ssh is already set up " {
Mock Get-NetFirewallRule {
return [ordered]@{
"Name" = "{ E02857AB-8EA8-4358-8119-ED7D20DA7712 }"
"DisplayName" = "SSH"
"Description" = ""
"DisplayGroup" = ""
"Group" = ""
"Enabled" = "True"
"Profile" = "Any"
"Platform" = "{ }"
"Direction" = "Inbound"
"Action" = "Allow"
"EdgeTraversalPolicy" = "Block"
"LooseSourceMapping" = "False"
"LocalOnlyMapping" = "False"
"Owner" = ""
"PrimaryStatus" = "OK"
"Status" = "The rule was parsed successfully from the store. (65536)"
"EnforcementStatus" = "NotApplicable"
"PolicyStoreSource" = "PersistentStore"
"PolicyStoreSourceType" = "Local"
}
}
Mock New-NetFirewallRule { }
Enable-SSHD -SSHZipFile $FAKE_ZIP
Assert-MockCalled New-NetFirewallRule -Times 0 -Scope It
}
It "Generates inf and invokes LGPO if LGPO exists" {
Mock Run-LGPO -Verifiable -ParameterFilter { $LGPOPath -eq "$TMP_DIR\Windows\LGPO.exe" -and $InfFilePath -eq "$TMP_DIR\Windows\Temp\enable-ssh.inf" }
Enable-SSHD -SSHZipFile $FAKE_ZIP
Assert-VerifiableMock
}
It "Skips LGPO if LGPO.exe not found" {
rm "$TMP_DIR\Windows\LGPO.exe"
Enable-SSHD -SSHZipFile $FAKE_ZIP
Assert-MockCalled Run-LGPO -Times 0 -Scope It
}
Context "When LGPO executable fails" {
It "Throws an appropriate error" {
Mock Run-LGPO { throw "some error" } -Verifiable -ParameterFilter { $LGPOPath -eq "$TMP_DIR\Windows\LGPO.exe" -and $InfFilePath -eq "$TMP_DIR\Windows\Temp\enable-ssh.inf" }
{ Enable-SSHD -SSHZipFile $FAKE_ZIP } | Should -Throw "LGPO.exe failed with: some error"
}
}
It "removes existing SSH keys" {
New-Item -ItemType Directory -Path "$TMP_DIR\ProgramData\ssh" -ErrorAction Ignore
echo "delete" > "$TMP_DIR\ProgramData\ssh\ssh_host_1"
echo "delete" > "$TMP_DIR\ProgramData\ssh\ssh_host_2"
echo "delete" > "$TMP_DIR\ProgramData\ssh\ssh_host_3"
echo "ignore" > "$TMP_DIR\ProgramData\ssh\not_ssh_host_4"
Enable-SSHD -SSHZipFile $FAKE_ZIP
$numHosts = (Get-ChildItem "$TMP_DIR\ProgramData\ssh\").count
$numHosts | Should -eq 1
}
It "creates empty ssh program dir if it doesn't exist" {
Enable-SSHD -SSHZipFile $FAKE_ZIP
{ Test-Path "$TMP_DIR\ProgramData\ssh" } | Should -eq $True
}
}
Describe "Extract-LGPO" {
BeforeEach {
$guid = $( New-Guid ).Guid
$TMP_DIR = "$env:TMPDIR/BOSH.SSH.Tests-$guid"
New-Item -ItemType Directory $TMP_DIR
$ORIGINAL_WINDIR = $env:WINDIR
$env:WINDIR = "$TMP_DIR\Windows"
New-Item -ItemType Directory $env:WINDIR
Push-Location $TMP_DIR
}
AfterEach {
Pop-Location
Remove-Item -Recurse -Force $TMP_DIR
$env:WINDIR = $ORIGINAL_WINDIR
}
It "extracts executable from zip" {
CreateFakeLGPOZip -dir $TMP_DIR -fakeZipPath "$TMP_DIR/LGPO.zip"
Extract-LGPO
$lgpoexepath = "$env:WINDIR\LGPO.exe"
Test-Path -Path $lgpoexepath
}
}
function Get-WuCerts {
}
Describe "Install-WUCerts" {
It "executes the Get-WUCerts powershell cmdlet" {
Mock Get-WUCerts { }
Mock Write-Log { }
{ Install-WUCerts } | Should -Not -Throw
Assert-MockCalled Get-WUCerts -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter {$Message -eq "Successfully retrieved Windows Update certs" }
}
It "fails gracefully when Get-WUCerts powershell cmdlet fails" {
Mock Get-WUCerts { throw "Something went wrong trying to Get-WUCerts" }
Mock Write-Log { }
{ Install-WUCerts } | Should -Throw "Something went wrong trying to Get-WUCerts"
Assert-MockCalled Get-WUCerts -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter {$Message -eq "Something went wrong trying to Get-WUCerts" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter {$Message -eq "Failed to retrieve updated root certificates from the public Windows Update Server." }
}
}
Describe "Create-VersionFile" {
It "creates a file with the stembuild version" {
Mock New-VersionFile { }
Mock Write-Log { }
{ Create-VersionFile -Version '1803.456.17-build.2'} | Should -Not -Throw
Assert-MockCalled New-VersionFile -Times 1 -Scope It -ParameterFilter {$version -eq '1803.456.17-build.2'}
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter {$Message -eq "Successfully created stemcell version file" }
}
It "fails gracefully when New-VersionFile command fails" {
Mock New-VersionFile { throw "Something went wrong trying to create the version file" }
Mock Write-Log { }
{ Create-VersionFile -Version '1803.456.17-build.2'} | Should -Throw "Something went wrong trying to create the version file"
Assert-MockCalled New-VersionFile -Times 1 -Scope It
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter {$Message -eq "Something went wrong trying to create the version file" }
Assert-MockCalled Write-Log -Times 1 -Scope It -ParameterFilter {$Message -eq "Failed to execute Create-VersionFile command" }
}
}