forked from microsoft/PSRule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSRule.Baseline.Tests.ps1
865 lines (791 loc) · 34.5 KB
/
PSRule.Baseline.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
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
#
# Unit tests for Baseline functionality
#
[CmdletBinding()]
param ()
BeforeAll {
# Setup error handling
$ErrorActionPreference = 'Stop';
Set-StrictMode -Version latest;
if ($Env:SYSTEM_DEBUG -eq 'true') {
$VerbosePreference = 'Continue';
}
# Setup tests paths
$rootPath = $PWD;
Import-Module (Join-Path -Path $rootPath -ChildPath out/modules/PSRule) -Force;
$here = (Resolve-Path $PSScriptRoot).Path;
$outputPath = Join-Path -Path $rootPath -ChildPath out/tests/PSRule.Tests/Common;
Remove-Item -Path $outputPath -Force -Recurse -Confirm:$False -ErrorAction Ignore;
$Null = New-Item -Path $outputPath -ItemType Directory -Force;
#region TestCases
$allYamlBaselines = Get-Content -Path (Join-Path -Path $here -ChildPath 'Output.Baseline.yaml') -Raw;
$allFourSpaceJsonBaslines = Get-Content -Path (Join-Path -Path $here -ChildPath 'Output.Baseline.4.jsonc') -Raw;
$allTwoSpaceJsonBaslines = Get-Content -Path (Join-Path -Path $here -ChildPath 'Output.Baseline.2.jsonc') -Raw;
$allZeroSpaceJsonBaslines = Get-Content -Path (Join-Path -Path $here -ChildPath 'Output.Baseline.0.jsonc') -Raw;
#endregion
}
BeforeDiscovery {
#region TestCases
$baselineYamlTestCases = @(
@{Baseline = 'Module4'; ExpectedYaml = @"
`# Synopsis: This is an example baseline
apiVersion: github.com/microsoft/PSRule/v1
kind: Baseline
metadata:
name: Module4
spec:
binding:
field:
kind:
- Id
uniqueIdentifer:
- AlternateName
- Id
targetName:
- AlternateName
targetType:
- Kind
configuration:
ruleConfig1: Test
rule:
include:
- M4.Rule1
"@}
@{Baseline = 'Module4a'; ExpectedYaml = @"
`# Synopsis: This is an example baseline
apiVersion: github.com/microsoft/PSRule/v1
kind: Baseline
metadata:
name: Module4a
spec:
binding:
field:
kind:
- Id
uniqueIdentifer:
- AlternateName
- Id
targetName:
- AlternateName
targetType:
- Kind
configuration:
ruleConfig1: Test2
rule:
include:
- M4.Rule1
"@}
@{Baseline = 'Baseline2'; ExpectedYaml = @"
`# Synopsis: This is an example baseline
apiVersion: github.com/microsoft/PSRule/v1
kind: Baseline
metadata:
name: Baseline2
spec:
binding:
targetName:
- AlternateName
targetType:
- Kind
configuration:
ruleConfig2: Test3
rule:
include:
- M4.Rule1
"@}
@{Baseline = 'Baseline3'; ExpectedYaml = @"
`# Synopsis: This is an example baseline
apiVersion: github.com/microsoft/PSRule/v1
kind: Baseline
metadata:
name: Baseline3
spec:
binding:
field:
alternativeType:
- AlternateName
targetName:
- AlternateName
targetType:
- Kind
configuration:
ruleConfig2: Test3
rule:
include:
- M4.Rule1
"@})
$baselineFourSpaceJsonTestCases = @(
@{Baseline = 'Module4'; ExpectedJson = @"
[
{
// Synopsis: This is an example baseline
"apiVersion": "github.com/microsoft/PSRule/v1",
"kind": "Baseline",
"metadata": {
"name": "Module4"
},
"spec": {
"binding": {
"field": {
"kind": [
"Id"
],
"uniqueIdentifer": [
"AlternateName",
"Id"
]
},
"targetName": [
"AlternateName"
],
"targetType": [
"Kind"
]
},
"configuration": {
"ruleConfig1": "Test"
},
"rule": {
"include": [
"M4.Rule1"
]
}
}
}
]
"@}
@{Baseline = 'Baseline2'; ExpectedJson = @"
[
{
// Synopsis: This is an example baseline
"apiVersion": "github.com/microsoft/PSRule/v1",
"kind": "Baseline",
"metadata": {
"name": "Baseline2"
},
"spec": {
"binding": {
"targetName": [
"AlternateName"
],
"targetType": [
"Kind"
]
},
"configuration": {
"ruleConfig2": "Test3"
},
"rule": {
"include": [
"M4.Rule1"
]
}
}
}
]
"@}
@{Baseline = 'Baseline3'; ExpectedJson = @"
[
{
// Synopsis: This is an example baseline
"apiVersion": "github.com/microsoft/PSRule/v1",
"kind": "Baseline",
"metadata": {
"name": "Baseline3"
},
"spec": {
"binding": {
"field": {
"alternativeType": [
"AlternateName"
]
},
"targetName": [
"AlternateName"
],
"targetType": [
"Kind"
]
},
"configuration": {
"ruleConfig2": "Test3"
},
"rule": {
"include": [
"M4.Rule1"
]
}
}
}
]
"@})
$baselineTwoSpaceJsonTestCases = @(
@{Baseline = 'Module4'; ExpectedJson = @"
[
{
// Synopsis: This is an example baseline
"apiVersion": "github.com/microsoft/PSRule/v1",
"kind": "Baseline",
"metadata": {
"name": "Module4"
},
"spec": {
"binding": {
"field": {
"kind": [
"Id"
],
"uniqueIdentifer": [
"AlternateName",
"Id"
]
},
"targetName": [
"AlternateName"
],
"targetType": [
"Kind"
]
},
"configuration": {
"ruleConfig1": "Test"
},
"rule": {
"include": [
"M4.Rule1"
]
}
}
}
]
"@}
@{Baseline = 'Baseline2'; ExpectedJson = @"
[
{
// Synopsis: This is an example baseline
"apiVersion": "github.com/microsoft/PSRule/v1",
"kind": "Baseline",
"metadata": {
"name": "Baseline2"
},
"spec": {
"binding": {
"targetName": [
"AlternateName"
],
"targetType": [
"Kind"
]
},
"configuration": {
"ruleConfig2": "Test3"
},
"rule": {
"include": [
"M4.Rule1"
]
}
}
}
]
"@}
@{Baseline = 'Baseline3'; ExpectedJson = @"
[
{
// Synopsis: This is an example baseline
"apiVersion": "github.com/microsoft/PSRule/v1",
"kind": "Baseline",
"metadata": {
"name": "Baseline3"
},
"spec": {
"binding": {
"field": {
"alternativeType": [
"AlternateName"
]
},
"targetName": [
"AlternateName"
],
"targetType": [
"Kind"
]
},
"configuration": {
"ruleConfig2": "Test3"
},
"rule": {
"include": [
"M4.Rule1"
]
}
}
}
]
"@})
$baselineZeroSpaceJsonTestCases = @(
@{Baseline = 'Module4'; ExpectedJson = @"
[{
// Synopsis: This is an example baseline
"apiVersion":"github.com/microsoft/PSRule/v1","kind":"Baseline","metadata":{"name":"Module4"},"spec":{"binding":{"field":{"kind":["Id"],"uniqueIdentifer":["AlternateName","Id"]},"targetName":["AlternateName"],"targetType":["Kind"]},"configuration":{"ruleConfig1":"Test"},"rule":{"include":["M4.Rule1"]}}}]
"@}
@{Baseline = 'Baseline2'; ExpectedJson = @"
[{
// Synopsis: This is an example baseline
"apiVersion":"github.com/microsoft/PSRule/v1","kind":"Baseline","metadata":{"name":"Baseline2"},"spec":{"binding":{"targetName":["AlternateName"],"targetType":["Kind"]},"configuration":{"ruleConfig2":"Test3"},"rule":{"include":["M4.Rule1"]}}}]
"@}
@{Baseline = 'Baseline3'; ExpectedJson = @"
[{
// Synopsis: This is an example baseline
"apiVersion":"github.com/microsoft/PSRule/v1","kind":"Baseline","metadata":{"name":"Baseline3"},"spec":{"binding":{"field":{"alternativeType":["AlternateName"]},"targetName":["AlternateName"],"targetType":["Kind"]},"configuration":{"ruleConfig2":"Test3"},"rule":{"include":["M4.Rule1"]}}}]
"@}
)
#endregion
}
#region Get-PSRuleBaseline
Describe 'Get-PSRuleBaseline' -Tag 'Baseline','Get-PSRuleBaseline' {
BeforeAll {
$baselineFilePath = Join-Path -Path $here -ChildPath 'Baseline.Rule.yaml';
}
Context 'Read baseline' {
It 'With defaults' {
$result = @(Get-PSRuleBaseline -Path $baselineFilePath);
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 5;
$result[0].Name | Should -Be 'TestBaseline1';
$result[0].Module | Should -BeNullOrEmpty;
$result[3].Name | Should -Be 'TestBaseline4';
}
It 'With -Name' {
$result = @(Get-PSRuleBaseline -Path $baselineFilePath -Name TestBaseline1);
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].Name | Should -Be 'TestBaseline1';
}
It 'With -Module' {
$testModuleSourcePath = Join-Path $here -ChildPath 'TestModule4';
$Null = Import-Module $testModuleSourcePath;
$result = @(Get-PSRuleBaseline -Module 'TestModule4');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 4;
$result.Name | Should -BeIn 'Module4', 'Module4a', 'Baseline2', 'Baseline3';
$result.Module | Should -BeIn 'TestModule4';
# Filter by name
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -Name 'Baseline2');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result.Name | Should -BeIn 'Baseline2';
$result.Module | Should -BeIn 'TestModule4';
}
}
Context 'Using -OutputFormat' {
BeforeAll {
$testModuleSourcePath = Join-Path $here -ChildPath 'TestModule4';
$Null = Import-Module $testModuleSourcePath;
}
Context 'Yaml'{
It '<baseline>' -TestCases $baselineYamlTestCases {
param($Baseline, $ExpectedYaml)
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml -Name $Baseline);
$result | Should -Not -BeNullOrEmpty;
$result | Should -MatchExactly $ExpectedYaml;
}
It 'All Baselines' {
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml);
$result | Should -Not -BeNullOrEmpty;
$result | Should -MatchExactly $allYamlBaselines;
}
}
Context 'Json' {
Context '4 space indentation' {
It '<baseline>' -TestCases $baselineFourSpaceJsonTestCases {
param($Baseline, $ExpectedJson)
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Name $Baseline -Option @{'Output.JsonIndent' = 4});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($ExpectedJson -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
It 'All Baselines' {
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Option @{'Output.JsonIndent' = 4});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($allFourSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
}
Context '2 space indentation' {
It '<baseline>' -TestCases $baselineTwoSpaceJsonTestCases {
param($Baseline, $ExpectedJson)
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Name $Baseline -Option @{'Output.JsonIndent' = 2});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($ExpectedJson -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
It 'All Baselines' {
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Option @{'Output.JsonIndent' = 2});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($allTwoSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
}
Context '0 space indentation' {
It '<baseline>' -TestCases $baselineZeroSpaceJsonTestCases {
param($Baseline, $ExpectedJson)
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Name $Baseline -Option @{'Output.JsonIndent' = 0});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($ExpectedJson -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
It 'All Baselines' {
$result = @(Get-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Option @{'Output.JsonIndent' = 0});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($allZeroSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
}
Context 'Read baselines from JSON in module' {
BeforeAll {
$testModuleSourcePath = Join-Path $here -ChildPath 'TestModule5';
$Null = Import-Module $testModuleSourcePath;
}
It '<baseline>' -TestCases $baselineFourSpaceJsonTestCases {
param($Baseline, $ExpectedJson)
# Gets baseline from module
$result = @(Get-PSRuleBaseline -Module 'TestModule5' -Name $Baseline);
$result | Should -Not -BeNullOrEmpty;
$result | Should -HaveCount 1;
$result[0].Synopsis | Should -BeExactly "This is an example baseline"
$result[0].Kind | Should -BeExactly "Baseline";
$result[0].Metadata | Should -Not -BeNullOrEmpty;
$result[0].Metadata.Name | Should -BeExactly $Baseline;
$result[0].ApiVersion | Should -BeExactly "github.com/microsoft/PSRule/v1";
$result[0].Spec | Should -Not -BeNullOrEmpty;
# Generates correct JSON from module
$result = @(Get-PSRuleBaseline -Module 'TestModule5' -OutputFormat Json -Name $Baseline -Option @{'Output.JsonIndent' = 4});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($ExpectedJson -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
It 'All Baselines' {
# Gets baseline from module
$result = @(Get-PSRuleBaseline -Module 'TestModule5');
$result | Should -Not -BeNullOrEmpty;
$result | Should -HaveCount 4;
$result[0].Synopsis | Should -BeExactly "This is an example baseline"
$result[0].Kind | Should -BeExactly "Baseline";
$result[0].Metadata | Should -Not -BeNullOrEmpty;
$result[0].Metadata.Name | Should -BeExactly "Module4";
$result[0].ApiVersion | Should -BeExactly "github.com/microsoft/PSRule/v1";
$result[0].Spec | Should -Not -BeNullOrEmpty;
$result[1].Synopsis | Should -BeExactly "This is an example baseline"
$result[1].Kind | Should -BeExactly "Baseline";
$result[1].Metadata | Should -Not -BeNullOrEmpty;
$result[1].Metadata.Name | Should -BeExactly "Module4a";
$result[1].ApiVersion | Should -BeExactly "github.com/microsoft/PSRule/v1";
$result[1].Spec | Should -Not -BeNullOrEmpty;
$result[2].Synopsis | Should -BeExactly "This is an example baseline"
$result[2].Kind | Should -BeExactly "Baseline";
$result[2].Metadata | Should -Not -BeNullOrEmpty;
$result[2].Metadata.Name | Should -BeExactly "Baseline2";
$result[2].ApiVersion | Should -BeExactly "github.com/microsoft/PSRule/v1";
$result[2].Spec | Should -Not -BeNullOrEmpty;
$result[3].Synopsis | Should -BeExactly "This is an example baseline"
$result[3].Kind | Should -BeExactly "Baseline";
$result[3].Metadata | Should -Not -BeNullOrEmpty;
$result[3].Metadata.Name | Should -BeExactly "Baseline3";
$result[3].ApiVersion | Should -BeExactly "github.com/microsoft/PSRule/v1";
$result[3].Spec | Should -Not -BeNullOrEmpty;
# Generates correct JSON from module
$result = @(Get-PSRuleBaseline -Module 'TestModule5' -OutputFormat Json -Option @{'Output.JsonIndent' = 4});
$result | Should -Not -BeNullOrEmpty;
Compare-Object -ReferenceObject ($allFourSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($result -split '\r?\n') | Should -BeNullOrEmpty;
}
}
}
}
}
#endregion Get-PSRuleBaseline
#region Export-PSRuleBaseline
Describe 'Export-PSRuleBaseline' -Tag 'Baseline','Export-PSRuleBaseline' {
Context 'Export baseline' {
BeforeAll {
$testModuleSourcePath = Join-Path $here -ChildPath 'TestModule4';
$Null = Import-Module $testModuleSourcePath;
$tempPath = (New-TemporaryFile).FullName;
}
Context 'Yaml' {
It '<baseline>' -TestCases $baselineYamlTestCases {
param($Baseline, $ExpectedYaml)
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml -Name $Baseline -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
$fileContents | Should -MatchExactly $ExpectedYaml;
}
It 'All Baselines' {
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
$fileContents | Should -MatchExactly $allYamlBaselines;
}
It 'Exception is thrown for invalid path' {
{ Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml -OutputPath $null } | Should -Throw "Cannot bind argument to parameter 'OutputPath' because it is an empty string.";
{ Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml -OutputPath '' } | Should -Throw "Cannot bind argument to parameter 'OutputPath' because it is an empty string.";
}
It "File is created even if parent directory doesn't exist" {
$parentDir = [System.IO.Path]::Combine([System.IO.Path]::GetTempPath(), [System.Guid]::NewGuid());
$path = [System.IO.Path]::Combine($parentDir, [System.IO.Path]::GetRandomFileName());
try {
$parentDir | Should -Not -Exist;
$path | Should -Not -Exist;
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml -OutputPath $path;
$parentDir | Should -Exist;
$path | Should -Exist;
$fileContents = Get-Content -Path $path -Raw;
$fileContents | Should -MatchExactly $allYamlBaselines;
}
catch {
Remove-Item -Path $parentDir -Recurse -Force;
}
}
It '<_>' -Foreach @('Default', 'UTF8', 'UTF7', 'Unicode', 'UTF32', 'ASCII') {
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Yaml -OutputPath $tempPath -OutputEncoding $_;
$fileContents = Get-Content -Path $tempPath -Raw -Encoding $_ -WarningAction SilentlyContinue;
$fileContents | Should -MatchExactly $allYamlBaselines;
}
}
Context 'Json' {
Context '4 space indentation' {
It '<baseline>' -TestCases $baselineFourSpaceJsonTestCases {
param($Baseline, $ExpectedJson)
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Name $Baseline -Option @{'Output.JsonIndent' = 4} -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
Compare-Object -ReferenceObject ($ExpectedJson -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
It 'All Baselines' {
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Option @{'Output.JsonIndent' = 4} -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
Compare-Object -ReferenceObject ($allFourSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
}
Context '2 space indentation' {
It '<baseline>' -TestCases $baselineTwoSpaceJsonTestCases {
param($Baseline, $ExpectedJson)
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Name $Baseline -Option @{'Output.JsonIndent' = 2} -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
Compare-Object -ReferenceObject ($ExpectedJson -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
It 'All Baselines' {
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Option @{'Output.JsonIndent' = 2} -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
Compare-Object -ReferenceObject ($allTwoSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
}
Context '0 space indentation' {
It '<baseline>' -TestCases $baselineZeroSpaceJsonTestCases {
param($Baseline, $ExpectedJson)
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Name $Baseline -Option @{'Output.JsonIndent' = 0} -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
Compare-Object -ReferenceObject ($ExpectedJson -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
It 'All Baselines' {
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -Option @{'Output.JsonIndent' = 0} -OutputPath $tempPath;
$fileContents = Get-Content -Path $tempPath -Raw;
Compare-Object -ReferenceObject ($allZeroSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
}
It 'Exception is thrown for invalid path' {
{ Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -OutputPath $null } | Should -Throw "Cannot bind argument to parameter 'OutputPath' because it is an empty string.";
{ Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -OutputPath '' } | Should -Throw "Cannot bind argument to parameter 'OutputPath' because it is an empty string.";
}
It "File is created even if parent directory doesn't exist" {
$parentDir = [System.IO.Path]::Combine([System.IO.Path]::GetTempPath(), [System.Guid]::NewGuid());
$path = [System.IO.Path]::Combine($parentDir, [System.IO.Path]::GetRandomFileName());
try {
$parentDir | Should -Not -Exist;
$path | Should -Not -Exist;
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -OutputPath $path;
$parentDir | Should -Exist;
$path | Should -Exist;
$fileContents = Get-Content -Path $path -Raw;
Compare-Object -ReferenceObject ($allZeroSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
finally {
Remove-Item -Path $parentDir -Recurse -Force;
}
}
It '<_>' -Foreach @('Default', 'UTF8', 'UTF7', 'Unicode', 'UTF32', 'ASCII') {
Export-PSRuleBaseline -Module 'TestModule4' -OutputFormat Json -OutputPath $tempPath -OutputEncoding $_;
$fileContents = Get-Content -Path $tempPath -Raw -Encoding $_ -WarningAction SilentlyContinue;
Compare-Object -ReferenceObject ($allZeroSpaceJsonBaslines -split '\r?\n') -DifferenceObject ($fileContents -split '\r?\n') | Should -BeNullOrEmpty;
}
}
AfterAll {
Remove-Item -Path $tempPath -Force;
}
}
}
#endregion Export-PSRuleBaseline
#region Baseline
Describe 'Baseline' -Tag 'Baseline' {
BeforeAll {
$baselineFilePath = Join-Path -Path $here -ChildPath 'Baseline.Rule.yaml';
$ruleFilePath = Join-Path -Path $here -ChildPath 'FromFileBaseline.Rule.ps1';
}
Context 'Invoke-PSRule' {
BeforeAll {
$testObject = @(
[PSCustomObject]@{
AlternateName = 'TestObject1'
Kind = 'TestObjectType'
Id = '1'
}
)
}
It 'With -Baseline' {
$result = @($testObject | Invoke-PSRule -Path $ruleFilePath,$baselineFilePath -Baseline 'TestBaseline1');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'WithBaseline';
$result[0].Outcome | Should -Be 'Pass';
$result[0].TargetName | Should -Be 'TestObject1';
$result[0].TargetType | Should -Be 'TestObjectType';
$result[0].Field.kind | Should -Be 'TestObjectType';
}
It 'With -Module' {
$Null = Import-Module (Join-Path $here -ChildPath 'TestModule4') -Force;
# Module
$result = @($testObject | Invoke-PSRule -Module TestModule4);
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'M4.Rule1';
$result[0].Outcome | Should -Be 'Pass';
# Module + Workspace
$option = @{
'Configuration.ruleConfig1' = 'Test2'
'Rule.Include' = @('M4.Rule1', 'M4.Rule2')
'Binding.Field' = @{ kind = 'Kind' }
}
$result = @($testObject | Invoke-PSRule -Module TestModule4 -Option $option);
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 2;
$result[0].RuleName | Should -Be 'M4.Rule1';
$result[0].Outcome | Should -Be 'Fail';
$result[0].TargetName | Should -Be 'TestObject1';
$result[0].TargetType | Should -Be 'TestObjectType';
$result[0].Field.kind | Should -Be 'TestObjectType';
$result[0].Field.uniqueIdentifer | Should -Be '1';
$result[0].Field.AlternativeType | Should -Be 'TestObjectType';
$result[1].RuleName | Should -Be 'M4.Rule2';
$result[1].Outcome | Should -Be 'Pass';
$result[1].TargetName | Should -Be 'TestObject1';
$result[1].TargetType | Should -Be 'TestObjectType';
$result[1].Field.AlternativeType | Should -Be 'TestObjectType';
# Module + Workspace + Parameter
$option = @{
'Configuration.ruleConfig1' = 'Test2'
'Rule.Include' = @('M4.Rule1', 'M4.Rule2')
}
$result = @($testObject | Invoke-PSRule -Module TestModule4 -Option $option -Name 'M4.Rule2');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'M4.Rule2';
$result[0].Outcome | Should -Be 'Pass';
$result[0].Field.kind | Should -Be '1';
$result[0].Field.uniqueIdentifer | Should -Be '1';
# Module + Workspace + Parameter + Explicit
$option = @{
'Configuration.ruleConfig1' = 'Test2'
'Rule.Include' = @('M4.Rule1', 'M4.Rule2')
}
$result = @($testObject | Invoke-PSRule -Module TestModule4 -Option $option -Name 'M4.Rule2', 'M4.Rule3' -Baseline 'Baseline2');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 2;
$result[0].RuleName | Should -Be 'M4.Rule2';
$result[0].Outcome | Should -Be 'Pass';
$result[0].Field.AlternativeType | Should -Be 'TestObjectType';
$result[1].RuleName | Should -Be 'M4.Rule3';
$result[1].Outcome | Should -Be 'Pass';
$result[1].Field.AlternativeType | Should -Be 'TestObjectType';
# Module Config + Module + Workspace + Parameter + Explicit
$result = @($testObject | Invoke-PSRule -Module TestModule4 -Name 'M4.Rule4' -Baseline 'Baseline3');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'M4.Rule4';
$result[0].Outcome | Should -Be 'Pass';
$result[0].Field.AlternativeType | Should -Be 'TestObject1';
# Explict with default
$result = @($testObject | Invoke-PSRule -Module TestModule4 -Path $ruleFilePath -Baseline 'Module4');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'M4.Rule1';
# Explict with local scope
$result = @($testObject | Invoke-PSRule -Module TestModule4 -Path $ruleFilePath -Baseline 'Module4' -Option @{
'Rule.IncludeLocal' = $True
});
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 3;
$result.RuleName | Should -BeIn 'M4.Rule1', 'WithBaseline', 'NotInBaseline';
# Module default via manifest and config
$Null = Import-Module (Join-Path $here -ChildPath 'TestModule6') -Force;
$result = @(Get-PSRule -Module TestModule6 -WarningVariable outWarn -WarningAction SilentlyContinue);
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'M6.Rule1';
$warnings = @($outWarn);
$warnings.Length | Should -Be 0;
# Module default via manifest
$Null = Import-Module (Join-Path $here -ChildPath 'TestModule7') -Force;
$result = @(Get-PSRule -Module TestModule7 -WarningVariable outWarn -WarningAction SilentlyContinue);
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'M7.Rule2';
$warnings = @($outWarn);
$warnings.Length | Should -Be 0;
}
It 'With obsolete' {
# Not obsolete
$Null = @($testObject | Invoke-PSRule -Path $ruleFilePath,$baselineFilePath -Baseline 'TestBaseline1' -WarningVariable outWarn -WarningAction SilentlyContinue);
$warnings = @($outWarn);
$warnings.Length | Should -Be 0;
# Obsolete
$Null = @($testObject | Invoke-PSRule -Path $ruleFilePath,$baselineFilePath -Baseline 'TestBaseline5' -WarningVariable outWarn -WarningAction SilentlyContinue);
$warnings = @($outWarn);
$warnings.Length | Should -Be 1;
$warnings[0] | Should -BeExactly "The Baseline 'TestBaseline5' is obsolete. Consider switching to an alternative Baseline.";
}
It 'With scoped configuration' {
$Null = Import-Module (Join-Path $here -ChildPath 'TestModule9a') -Force;
$Null = Import-Module (Join-Path $here -ChildPath 'TestModule9b') -Force;
# Each module
$result = @($testObject | Invoke-PSRule -Module TestModule9a, TestModule9b);
$result.Length | Should -Be 4;
$result.Outcome | Should -BeIn 'Pass';
# Each module reverse
$result = @($testObject | Invoke-PSRule -Module TestModule9b, TestModule9a);
$result.Length | Should -Be 4;
$result.Outcome | Should -BeIn 'Pass';
# From options
$option = New-PSRuleOption;
$option.Include.Module = @('TestModule9a', 'TestModule9b')
$result = @($testObject | Invoke-PSRule -Option $option);
$result.Length | Should -Be 4;
$result.Outcome | Should -BeIn 'Pass';
# With dependency chain
$result = @($testObject | Invoke-PSRule -Module TestModule9b);
$result.Length | Should -Be 2;
$result.Outcome | Should -BeIn 'Pass';
}
}
Context 'Get-PSRule' {
It 'With -Baseline' {
$result = @(Get-PSRule -Path $ruleFilePath,$baselineFilePath -Baseline 'TestBaseline1');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 1;
$result[0].RuleName | Should -Be 'WithBaseline';
$result = @(Get-PSRule -Path $ruleFilePath,$baselineFilePath -Baseline 'TestBaseline3');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 2;
$result[0].RuleName | Should -Be 'WithBaseline';
$result[1].RuleName | Should -Be 'NotInBaseline';
$result = @(Get-PSRule -Path $ruleFilePath,$baselineFilePath -Baseline 'TestBaseline4');
$result | Should -Not -BeNullOrEmpty;
$result.Length | Should -Be 2;
$result[0].RuleName | Should -Be 'WithBaseline';
$result[1].RuleName | Should -Be 'NotInBaseline';
}
}
}
#endregion Baseline