forked from cloudfoundry/bosh-windows-stemcell-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutomationHelpers.Tests.ps1
More file actions
1381 lines (1108 loc) · 65.4 KB
/
AutomationHelpers.Tests.ps1
File metadata and controls
1381 lines (1108 loc) · 65.4 KB
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
988
989
990
991
992
993
994
995
996
997
998
999
1000
BeforeAll {
Import-Module ../../modules/BOSH.SSH
Import-Module ../../modules/BOSH.Utils
Import-Module ../../modules/BOSH.CFCell
Import-Module ../../modules/BOSH.Agent
Import-Module ../../modules/BOSH.CFCell
Import-Module ./AutomationHelpers.psm1
}
Describe "AutomationHelpers" {
BeforeAll {
Mock -ModuleName AutomationHelpers -CommandName Get-WuCerts { }
Mock -ModuleName AutomationHelpers -CommandName Write-Log { }
}
Describe "Setup" {
BeforeEach {
[System.Collections.ArrayList]$provisionerCalls = @()
Mock -ModuleName AutomationHelpers -CommandName Validate-OSVersion { $provisionerCalls.Add("Validate-OSVersion") }
Mock -ModuleName AutomationHelpers -CommandName Check-Dependencies { $provisionerCalls.Add("Check-Dependencies") }
Mock -ModuleName AutomationHelpers -CommandName RunQuickerDism { }
Mock -ModuleName AutomationHelpers -CommandName CopyPSModules { $provisionerCalls.Add("CopyPSModules") }
Mock -ModuleName AutomationHelpers -CommandName Set-RegKeys { $provisionerCalls.Add("Set-RegKeys") }
Mock -ModuleName AutomationHelpers -CommandName InstallBoshAgent { $provisionerCalls.Add("InstallBoshAgent") }
Mock -ModuleName AutomationHelpers -CommandName InstallOpenSSH { $provisionerCalls.Add("InstallOpenSSH") }
Mock -ModuleName AutomationHelpers -CommandName Extract-LGPO { $provisionerCalls.Add("Extract-LGPO") }
Mock -ModuleName AutomationHelpers -CommandName Install-SecurityPoliciesAndRegistries {
$provisionerCalls.Add("Install-SecurityPoliciesAndRegistries")
}
Mock -ModuleName AutomationHelpers -CommandName Enable-SSHD { $provisionerCalls.Add("Enable-SSHD") }
Mock -ModuleName AutomationHelpers -CommandName Install-WUCerts { $provisionerCalls.Add("Install-WUCerts") }
Mock -ModuleName AutomationHelpers -CommandName InstallCFFeatures { $provisionerCalls.Add("InstallCFFeatures") }
Mock -ModuleName AutomationHelpers -CommandName RemoveAvailableWindowsFeatures { }
Mock -ModuleName AutomationHelpers -CommandName Create-VersionFile { $provisionerCalls.Add("Create-VersionFile") }
Mock -ModuleName AutomationHelpers -CommandName Restart-Computer { $provisionerCalls.Add("Restart-Computer") }
if (!(Get-Command "Restart-Computer" -errorAction SilentlyContinue))
{
function Restart-Computer
{
throw "what is happening I should never be invoked"
}
}
}
It "validates OS version first" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Validate-OSVersion
$provisionerCalls.IndexOf("Validate-OSVersion") | Should -Be 0
}
It "checks dependencies" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Check-Dependencies
$provisionerCalls.IndexOf("Check-Dependencies") | Should -Be 1
}
It "copy PSModules is the first provisioner called" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName CopyPSModules
$provisionerCalls.IndexOf("CopyPSModules") | Should -Be 2
}
It "sets registry keys to stop zombie load and meltdown exploits" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Set-RegKeys
}
It "installs BoshAgent" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName InstallBoshAgent
}
It "installs OpenSSH before enabling SSH" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName InstallOpenSSH
$provisionerCalls.IndexOf("InstallOpenSSH") | Should -BeGreaterOrEqual 0
$provisionerCalls.IndexOf("InstallOpenSSH") | Should -BeLessThan $provisionerCalls.IndexOf("Enable-SSHD")
}
It "enables SSHD" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Enable-SSHD
}
It "installs SecurityPoliciesAndRegistries after extracting LGPO" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Install-SecurityPoliciesAndRegistries
$provisionerCalls.IndexOf("Extract-LGPO") | Should -BeGreaterOrEqual 0
$provisionerCalls.IndexOf("Extract-LGPO") | Should -BeLessThan $provisionerCalls.IndexOf("Install-SecurityPoliciesAndRegistries")
}
It "extracts LGPO before enabling SSH" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Extract-LGPO
$provisionerCalls.IndexOf("Extract-LGPO") | Should -BeGreaterOrEqual 0
$provisionerCalls.IndexOf("Extract-LGPO") | Should -BeLessThan $provisionerCalls.IndexOf("Enable-SSHD")
}
It "installs CFFeatures" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName InstallCFFeatures
}
It "installs WU certs" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Install-WUCerts
}
Context "when Install-WUCerts helper fails" {
It "fails gracefully" {
Mock -ModuleName AutomationHelpers -CommandName Install-WUCerts {
throw "Something went wrong trying to Install-WUCerts"
}
Mock -ModuleName AutomationHelpers -CommandName Write-Warning { }
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Install-WUCerts -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something went wrong trying to Install-WUCerts"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Warning -Times 1 -ParameterFilter {
$Message -eq "Failed to retrieve updated root certificates from the public Windows Update Server. This should not impact the successful execution of stembuild construct. If your root certificates are out of date, Diego cells running on VMs built from this stemcell may not be able to make outbound network connections."
}
}
Context "when the '-FailOnInstallWUCerts' flag is passed" {
It "throws an error" {
Mock -ModuleName AutomationHelpers -CommandName Install-WUCerts {
throw "Something went wrong trying to Install-WUCerts"
}
{ Setup -FailOnInstallWUCerts } | Should -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Install-WUCerts -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something went wrong trying to Install-WUCerts"
}
}
}
}
It "creates a version file" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Create-VersionFile
}
It "restarts as the last command" {
{ Setup } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Restart-Computer
$lastIndex = $provisionerCalls.Count - 1
$provisionerCalls.IndexOf("Restart-Computer") | Should -Be $lastIndex
}
}
Describe "PostReboot" {
BeforeEach {
[System.Collections.ArrayList]$postRebootCalls = @()
Mock -ModuleName AutomationHelpers -CommandName InstallCFCell { $postRebootCalls.Add("InstallCFCell") }
Mock -ModuleName AutomationHelpers -CommandName CleanUpVM { $postRebootCalls.Add("CleanUpVM") }
Mock -ModuleName AutomationHelpers -CommandName SysprepVM { $postRebootCalls.Add("SysprepVM") }
Mock -ModuleName AutomationHelpers -CommandName Invoke-Shutdown { $postRebootCalls.Add("Invoke-Shutdown") }
Mock -ModuleName AutomationHelpers -CommandName RunQuickerDism { }
}
It "installs cf cell before cleaning up the VM" {
{ PostReboot } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName InstallCFCell
$postRebootCalls.IndexOf("InstallCFCell") | Should -BeLessThan $postRebootCalls.IndexOf("CleanUpVM")
}
It "cleans up vm before sysprep" {
{ PostReboot } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName CleanUpVM
$postRebootCalls.IndexOf("CleanUpVM") | Should -BeLessThan $postRebootCalls.IndexOf("SysprepVM")
}
It "syspreps before shutdown" {
{ PostReboot -Organization "org" -Owner "owner" -SkipRandomPassword:$false } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName SysprepVM
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Shutdown
Should -Invoke -ModuleName AutomationHelpers -CommandName SysprepVM -ParameterFilter {
$Organization -eq "org" -and
$Owner -eq "owner" -and
$SkipRandomPassword -eq $false
}
$postRebootCalls.IndexOf("SysprepVM") | Should -BeLessThan $postRebootCalls.IndexOf("Invoke-Shutdown")
}
It "shuts down as the last command" {
{ PostReboot } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Shutdown
$lastIndex = $postRebootCalls.Count - 1
$postRebootCalls.IndexOf("Invoke-Shutdown") | Should -Be $lastIndex
}
}
Describe "CopyPSModules" {
It "can copy PS Modules to target directory" {
Mock -ModuleName AutomationHelpers -CommandName Expand-Archive { }
{ CopyPSModules } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Expand-Archive -Times 1 -ParameterFilter {
$LiteralPath -eq ".\bosh-psmodules.zip" -and $DestinationPath -eq "C:\Program Files\WindowsPowerShell\Modules\"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Succesfully migrated Bosh Powershell modules to destination dir"
}
}
It "fails gracefully when expanding archive fails" {
Mock -ModuleName AutomationHelpers -CommandName Expand-Archive {
throw "Expand-Archive failed because something went wrong"
}
{ CopyPSModules } | Should -Throw "Expand-Archive failed because something went wrong"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Expand-Archive failed because something went wrong"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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-CFFeatures powershell cmdlet" {
Mock -ModuleName AutomationHelpers -CommandName Install-CFFeatures { }
{ InstallCFFeatures } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Install-CFFeatures -Times 1 -ParameterFilter {
$IaaS -eq "vsphere"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Successfully installed CF features"
}
}
It "fails gracefully when installing CF Features" {
Mock -ModuleName AutomationHelpers -CommandName Install-CFFeatures {
throw "Something terrible happened while attempting to install a CF feature"
}
{ InstallCFFeatures } | Should -Throw "Something terrible happened while attempting to install a CF feature"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something terrible happened while attempting to install a CF feature"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to install the CF features. See 'c:\provision\log.log' for more info."
}
}
}
Describe "InstallCFCell" {
It "executes the Protect-CFCell powershell cmdlet" {
Mock -ModuleName AutomationHelpers -CommandName Protect-CFCell { }
{ InstallCFCell } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Protect-CFCell -Times 1 -ParameterFilter {
$IaaS -eq "vsphere"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Succesfully ran Protect-CFCell"
}
}
It "fails gracefully when Protect-CFCell powershell cmdlet fails" {
Mock -ModuleName AutomationHelpers -CommandName Protect-CFCell {
throw "Something terrible happened while attempting to execute Protect-CFCell"
}
{ InstallCFCell } | Should -Throw "Something terrible happened while attempting to execute Protect-CFCell"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something terrible happened while attempting to execute Protect-CFCell"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName Install-Agent { }
{ InstallBoshAgent } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Install-Agent -Times 1 -ParameterFilter {
$IaaS -eq "vsphere" -and $agentZipPath -eq ".\agent.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Bosh agent successfully installed"
}
}
It "fails gracefully when Install-Agent powershell cmdlet fails" {
Mock -ModuleName AutomationHelpers -CommandName Install-Agent {
throw "Something terrible happened while attempting to execute Install-Agent"
}
{ InstallBoshAgent } | Should -Throw "Something terrible happened while attempting to execute Install-Agent"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something terrible happened while attempting to execute Install-Agent"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName Install-SSHD { }
{ InstallOpenSSH } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Install-SSHD -Times 1 -ParameterFilter {
$SSHZipFile -eq ".\OpenSSH-Win64.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "OpenSSH successfully installed"
}
}
It "fails gracefully when Install-SSHD powershell cmdlet fails" {
Mock -ModuleName AutomationHelpers -CommandName Install-SSHD {
throw "Something terrible happened while attempting to execute Install-SSHD"
}
{ InstallOpenSSH } | Should -Throw "Something terrible happened while attempting to execute Install-SSHD"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something terrible happened while attempting to execute Install-SSHD"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName Optimize-Disk { }
Mock -ModuleName AutomationHelpers -CommandName Compress-Disk { }
{ CleanUpVM } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Optimize-Disk -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Compress-Disk -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Successfully cleaned up the VM's disk"
}
}
It "fails gracefully when Optimize-Disk powershell cmdlet fails" {
Mock -ModuleName AutomationHelpers -CommandName Optimize-Disk {
throw "Something terrible happened while attempting to execute Optimize-Disk"
}
Mock -ModuleName AutomationHelpers -CommandName Compress-Disk { }
{ CleanUpVM } | Should -Throw "Something terrible happened while attempting to execute Optimize-Disk"
Should -Invoke -ModuleName AutomationHelpers -CommandName Optimize-Disk -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Compress-Disk -Times 0
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something terrible happened while attempting to execute Optimize-Disk"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName Optimize-Disk { }
Mock -ModuleName AutomationHelpers -CommandName Compress-Disk {
throw "Something terrible happened while attempting to execute Compress-Disk"
}
{ CleanUpVM } | Should -Throw "Something terrible happened while attempting to execute Compress-Disk"
Should -Invoke -ModuleName AutomationHelpers -CommandName Optimize-Disk -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Compress-Disk -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Something terrible happened while attempting to execute Compress-Disk"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to clean up the VM's disk. See 'c:\provision\log.log' for more info."
}
}
}
Describe "SysprepVM" {
BeforeEach {
Mock -ModuleName AutomationHelpers -CommandName Invoke-Sysprep { }
Mock -ModuleName AutomationHelpers -CommandName GenerateRandomPassword { "SomeRandomPassword" }
}
It "copies LGPO to the correct destination and executes the Invoke-Sysprep powershell cmdlet" {
{ SysprepVM } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName GenerateRandomPassword -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 1 -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
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 1 -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
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 1 -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
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 1 -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
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 1 -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 -ModuleName AutomationHelpers -CommandName Invoke-Sysprep { throw "Invoke-Sysprep failed because something went wrong" }
{ SysprepVM } | Should -Throw "Invoke-Sysprep failed because something went wrong"
Should -Invoke -ModuleName AutomationHelpers -CommandName GenerateRandomPassword -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 1 -ParameterFilter {
$IaaS -eq "vsphere" -and $NewPassword -eq "SomeRandomPassword"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Invoke-Sysprep failed because something went wrong"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName GenerateRandomPassword {
throw "GenerateRandomPassword failed because something went wrong"
}
{ SysprepVM } | Should -Throw "GenerateRandomPassword failed because something went wrong"
Should -Invoke -ModuleName AutomationHelpers -CommandName GenerateRandomPassword -Times 1
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 0
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "GenerateRandomPassword failed because something went wrong"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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
Should -Invoke -ModuleName AutomationHelpers -CommandName Invoke-Sysprep -Times 1 -ParameterFilter {
$IaaS -eq "vsphere" -and $NewPassword -eq $null
}
}
}
Describe "GenerateRandomPassword" {
It "generates a valid password" {
$result = ""
{ GenerateRandomPassword | Set-Variable -Name "result" -Scope 1 } | Should -Not -Throw
$result.Length | Should -Be 24
Valid-Password -Password $result | Should -Be $True
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Successfully generated password"
}
}
It "fails to generate a valid password after 200 tries" {
Mock -ModuleName AutomationHelpers -CommandName Valid-Password { $False }
{ GenerateRandomPassword } | Should -Throw "Unable to generate a valid password after 200 attempts"
Should -Invoke -ModuleName AutomationHelpers -CommandName Valid-Password -Times 200
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to generate password after 200 attempts"
}
}
It "generates unique passwords on subsequent calls" {
$passwordOne = GenerateRandomPassword
$passwordTwo = GenerateRandomPassword
$passwordOne | Should -Not -BeExactly $passwordTwo
}
}
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
}
}
Describe "Check-Dependencies" {
BeforeAll {
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"}
}
"@
}
}
BeforeEach {
$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 -ModuleName AutomationHelpers -CommandName Get-FileHash {
New-Object PSObject -Property $file1Hash
} -ParameterFilter { $Path -ceq "$PSScriptRoot/file1.zip" }
Mock -ModuleName AutomationHelpers -CommandName Get-FileHash {
New-Object PSObject -Property $file2Hash
} -ParameterFilter { $Path -ceq "$PSScriptRoot/file2.zip" }
Mock -ModuleName AutomationHelpers -CommandName Get-FileHash {
New-Object PSObject -Property $file3Hash
} -ParameterFilter { $Path -ceq "$PSScriptRoot/file3.exe" }
Mock -ModuleName AutomationHelpers -CommandName Test-Path { $true } -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Mock -ModuleName AutomationHelpers -CommandName Test-Path { $true } -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Mock -ModuleName AutomationHelpers -CommandName Test-Path { $true } -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
#We specify when to throw the exception to prevent other test from being polluted when calling Convert-FromJson
Mock -ModuleName AutomationHelpers -CommandName ConvertFrom-Json {
throw "Invalid JSON primitive: bad-json-format"
} -ParameterFilter { $InputObject -eq "bad-json-format" }
}
It "successfully checks all required files are available and have the correct SHAs" {
Mock -ModuleName AutomationHelpers -CommandName Get-Content {
GenerateDepJson "hashOne" "hashTwo" "hashThree"
}
{ Check-Dependencies } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/deps.json"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Found all dependencies"
}
}
Context "fails gracefully if the dependency file" {
It "is not present" {
Mock -ModuleName AutomationHelpers -CommandName Get-Content { throw "File not found" }
{ Check-Dependencies } | Should -Throw "File not found"
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/deps.json"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "File not found"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info."
}
}
It "is empty" {
Mock -ModuleName AutomationHelpers -CommandName Get-Content { "" }
{ Check-Dependencies } | Should -Throw "Dependency file is empty"
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/deps.json"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Dependency file is empty"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info."
}
}
It "contains an empty json object" {
Mock -ModuleName AutomationHelpers -CommandName Get-Content { "{}" }
{ Check-Dependencies } | Should -Throw "Dependency file is empty"
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter { $Path -ceq "$PSScriptRoot/deps.json" }
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Dependency file is empty"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info."
}
}
It "content is badly formatted" {
Mock -ModuleName AutomationHelpers -CommandName Get-Content { "bad-json-format" }
{ Check-Dependencies } | Should -Throw "Invalid JSON primitive: bad-json-format"
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/deps.json"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Invalid JSON primitive: bad-json-format"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName Get-Content {
GenerateDepJson "hashOne" "hashTwo" "hashThree"
}
Mock -ModuleName AutomationHelpers -CommandName Test-Path { $false } -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Mock -ModuleName AutomationHelpers -CommandName Test-Path { $false } -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
{ Check-Dependencies } | Should -Throw "One or more files are corrupted or missing."
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/deps.json"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 0 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 0 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 0 -ParameterFilter {
$Message -like "$PSScriptRoot/file1.zip *"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -ceq "$PSScriptRoot/file2.zip is required but was not found"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -ceq "$PSScriptRoot/file3.exe is required but was not found"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName Get-Content {
GenerateDepJson "hashOne" "badhash2" "badhash3"
}
{ Check-Dependencies } | Should -Throw "One or more files are corrupted or missing."
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/deps.json"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 0 -ParameterFilter {
$Message -like "$PSScriptRoot/file1.zip *"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -ceq "$PSScriptRoot/file2.zip does not have the correct hash"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -ceq "$PSScriptRoot/file3.exe does not have the correct hash"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -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 -ModuleName AutomationHelpers -CommandName Test-Path { $False } -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Mock -ModuleName AutomationHelpers -CommandName Get-Content {
GenerateDepJson "hashOne" "badhash2" "hashThree"
}
{ Check-Dependencies } | Should -Throw "One or more files are corrupted or missing."
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-Content -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/deps.json"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-FileHash -Times 0 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file1.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file2.zip"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Test-Path -Times 1 -ParameterFilter {
$Path -ceq "$PSScriptRoot/file3.exe"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 0 -ParameterFilter {
$Message -like "$PSScriptRoot/file1.zip *"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -ceq "$PSScriptRoot/file2.zip does not have the correct hash"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -ceq "$PSScriptRoot/file3.exe is required but was not found"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to validate required dependencies. See 'c:\provision\log.log' for more info."
}
}
}
}
Describe "Validate-OSVersion" {
BeforeEach {
$major2019 = 10
$minor2019 = 0
$build2019 = 17763
$revision2019 = "IGNORED_REVISION_VALUE"
}
It "fails gracefully when the OS major version doesn't match" {
Mock -ModuleName AutomationHelpers -CommandName Get-OSVersionString {
"$( $major2019 + 1 ).$minor2019.$build2019.$revision2019"
}
{ Validate-OSVersion } | Should -Throw "OS Version Mismatch: Please use Windows Server 2019 or 2022 as the OS on your targeted VM"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "OS Version Mismatch: Please use Windows Server 2019 or 2022 as the OS on your targeted VM"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to validate the OS version. See 'c:\provision\log.log' for more info."
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-OSVersionString -Times 1
}
It "fails gracefully when the OS minor version doesn't match" {
Mock -ModuleName AutomationHelpers -CommandName Get-OSVersionString {
"$major2019.$( $minor2019 + 1 ).$build2019.$revision2019"
}
{ Validate-OSVersion } | Should -Throw "OS Version Mismatch: Please use Windows Server 2019 or 2022 as the OS on your targeted VM"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "OS Version Mismatch: Please use Windows Server 2019 or 2022 as the OS on your targeted VM"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to validate the OS version. See 'c:\provision\log.log' for more info."
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-OSVersionString -Times 1
}
It "fails gracefully when the OS build version doesn't match" {
Mock -ModuleName AutomationHelpers -CommandName Get-OSVersionString {
"$major2019.$minor2019.$( $build2019 + 1 ).$revision2019"
}
{ Validate-OSVersion } | Should -Throw "OS Version Mismatch: Please use Windows Server 2019 or 2022 as the OS on your targeted VM"
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "OS Version Mismatch: Please use Windows Server 2019 or 2022 as the OS on your targeted VM"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Failed to validate the OS version. See 'c:\provision\log.log' for more info."
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-OSVersionString -Times 1
}
It "successfully validates the OS when it is Windows Server 2019" {
Mock -ModuleName AutomationHelpers -CommandName Get-OSVersionString {
"$major2019.$minor2019.$build2019.$revision2019"
}
{ Validate-OSVersion } | Should -Not -Throw
Should -Invoke -ModuleName AutomationHelpers -CommandName Write-Log -Times 1 -ParameterFilter {
$Message -eq "Found correct OS version: Windows Server 2019"
}
Should -Invoke -ModuleName AutomationHelpers -CommandName Get-OSVersionString -Times 1
}