forked from PowerShell/DscResource.Tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTestHelper.psm1
807 lines (663 loc) · 22.5 KB
/
TestHelper.psm1
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
<#
.SYNOPSIS
Helper functions for the common tests (Meta.Tests.ps1).
#>
<#
.SYNOPSIS
Creates a nuspec file for a nuget package at the specified path.
.EXAMPLE
New-Nuspec `
-PackageName 'TestPackage' `
-Version '1.0.0.0' `
-Author 'Microsoft Corporation' `
-Owners 'Microsoft Corporation' `
-DestinationPath C:\temp `
-LicenseUrl 'http://license' `
-PackageDescription 'Description of the package' `
-Tags 'tag1 tag2'
#>
function New-Nuspec
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[String]
$PackageName,
[Parameter(Mandatory = $true)]
[String]
$Version,
[Parameter(Mandatory = $true)]
[String]
$Author,
[Parameter(Mandatory=$true)]
[String]
$Owners,
[Parameter(Mandatory=$true)]
[String]
$DestinationPath,
[String]
$LicenseUrl,
[String]
$ProjectUrl,
[String]
$IconUrl,
[String]
$PackageDescription,
[String]
$ReleaseNotes,
[String]
$Tags
)
$currentYear = (Get-Date).Year
$nuspecFileContent += @"
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>$PackageName</id>
<version>$Version</version>
<authors>$Author</authors>
<owners>$Owners</owners>
"@
if (-not [String]::IsNullOrEmpty($LicenseUrl))
{
$nuspecFileContent += @"
<licenseUrl>$LicenseUrl</licenseUrl>
"@
}
if (-not [String]::IsNullOrEmpty($ProjectUrl))
{
$nuspecFileContent += @"
<projectUrl>$ProjectUrl</projectUrl>
"@
}
if (-not [String]::IsNullOrEmpty($IconUrl))
{
$nuspecFileContent += @"
<iconUrl>$IconUrl</iconUrl>
"@
}
$nuspecFileContent += @"
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>$PackageDescription</description>
<releaseNotes>$ReleaseNotes</releaseNotes>
<copyright>Copyright $currentYear</copyright>
<tags>$Tags</tags>
</metadata>
</package>
"@
if (-not (Test-Path -Path $DestinationPath))
{
$null = New-Item -Path $DestinationPath -ItemType 'Directory'
}
$nuspecFilePath = Join-Path -Path $DestinationPath -ChildPath "$PackageName.nuspec"
$null = New-Item -Path $nuspecFilePath -ItemType 'File' -Force
$null = Set-Content -Path $nuspecFilePath -Value $nuspecFileContent
}
<#
.SYNOPSIS
Downloads and installs a module from PowerShellGallery using
Nuget.
.PARAMETER ModuleName
Name of the module to install
.PARAMETER DestinationPath
Path where module should be installed
#>
function Install-ModuleFromPowerShellGallery
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[String]
$ModuleName,
[Parameter(Mandatory = $true)]
[String]
$DestinationPath
)
$nugetPath = 'nuget.exe'
# Can't assume nuget.exe is available - look for it in Path
if ($null -eq (Get-Command -Name $nugetPath -ErrorAction 'SilentlyContinue'))
{
# Is it in temp folder?
$tempNugetPath = Join-Path -Path $env:temp -ChildPath $nugetPath
if (-not (Test-Path -Path $tempNugetPath))
{
# Nuget.exe can't be found - download it to temp folder
$nugetDownloadURL = 'http://nuget.org/nuget.exe'
Invoke-WebRequest -Uri $nugetDownloadURL -OutFile $tempNugetPath
Write-Verbose -Message "nuget.exe downloaded at $tempNugetPath"
$nugetPath = $tempNugetPath
}
else
{
Write-Verbose -Message "Using Nuget.exe found at $tempNugetPath"
}
}
$moduleOutputDirectory = "$(Split-Path -Path $DestinationPath -Parent)\"
$nugetSource = 'https://www.powershellgallery.com/api/v2'
# Use Nuget.exe to install the module
$null = & $nugetPath @( `
'install', $ModuleName, `
'-source', $nugetSource, `
'-outputDirectory', $moduleOutputDirectory, `
'-ExcludeVersion' `
)
if ($LASTEXITCODE -ne 0)
{
throw "Installation of module $ModuleName using Nuget failed with exit code $LASTEXITCODE."
}
Write-Verbose -Message "The module $ModuleName was installed using Nuget."
}
<#
.SYNOPSIS
Initializes an enviroment for running unit or integration tests
on a DSC resource.
This includes:
1. Updates the $env:PSModulePath to ensure the correct module is tested.
2. Imports the module to test.
3. Sets the PowerShell ExecutionMode to Unrestricted.
4. Produces a test object to store the backed up settings.
The above changes are reverted by calling the Restore-TestEnvironment
function.
Returns a test environment object which must be passed to the
Restore-TestEnvironment function to allow it to restore the system
back to the original state.
.PARAMETER DscModuleName
The name of the DSC Module containing the resource that the tests will be
run on.
.PARAMETER DscResourceName
The full name of the DSC resource that the tests will be run on. This is
usually the name of the folder containing the actual resource MOF file.
.PARAMETER TestType
Specifies the type of tests that are being intialized. It can be:
Unit: Initialize for running Unit tests on a DSC resource. Default.
Integration: Initialize for running Integration tests on a DSC resource.
.EXAMPLE
$TestEnvironment = Inialize-TestEnvironment `
-DSCModuleName 'xNetworking' `
-DSCResourceName 'MSFT_xFirewall' `
-TestType Unit
This command will initialize the test enviroment for Unit testing
the MSFT_xFirewall DSC resource in the xNetworking DSC module.
.EXAMPLE
$TestEnvironment = Inialize-TestEnvironment `
-DSCModuleName 'xNetworking' `
-DSCResourceName 'MSFT_xFirewall' `
-TestType Integration
This command will initialize the test enviroment for Integration testing
the MSFT_xFirewall DSC resource in the xNetworking DSC module.
#>
function Initialize-TestEnvironment
{
[OutputType([Hashtable])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$DscModuleName,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$DscResourceName,
[Parameter(Mandatory = $true)]
[ValidateSet('Unit', 'Integration')]
[String]
$TestType
)
Write-Verbose -Message "Initializing test environment for $TestType testing of $DscResourceName in module $DscModuleName"
$moduleRootFilePath = Split-Path -Path $PSScriptRoot -Parent
$moduleManifestFilePath = Join-Path -Path $moduleRootFilePath -ChildPath "$DscModuleName.psd1"
if (Test-Path -Path $moduleManifestFilePath)
{
Write-Verbose -Message "Module manifest $DscModuleName.psd1 detected at $moduleManifestFilePath"
}
else
{
throw "Module manifest could not be found for the module $DscModuleName in the root folder $moduleRootFilePath"
}
# Import the module to test
if ($TestType -ieq 'Unit')
{
$dscResourcesFolderFilePath = Join-Path -Path $moduleRootFilePath -ChildPath 'DSCResources'
$dscResourceToTestFolderFilePath = Join-Path -Path $dscResourcesFolderFilePath -ChildPath $DscResourceName
$moduleToImportFilePath = Join-Path -Path $dscResourceToTestFolderFilePath -ChildPath "$DscResourceName.psm1"
}
else
{
$moduleToImportFilePath = $moduleManifestFilePath
}
Import-Module -Name $moduleToImportFilePath -Scope 'Global' -Force
<#
Set the PSModulePath environment variable so that the module path that includes the module
we want to test appears first. LCM will then use this path to locate modules when
integration tests are called. Placing the path we want first ensures the correct module
will be tested.
#>
$moduleParentFilePath = Split-Path -Path $moduleRootFilePath -Parent
$oldPSModulePath = $env:PSModulePath
if ($null -ne $oldPSModulePath)
{
$oldPSModulePathSplit = $oldPSModulePath.Split(';')
}
else
{
$oldPSModulePathSplit = $null
}
if ($oldPSModulePathSplit -ccontains $moduleParentFilePath)
{
# Remove the existing module path from the new PSModulePath
$newPSModulePathSplit = $oldPSModulePathSplit | Where-Object {$_ -ne $moduleParentFilePath}
$newPSModulePath = $newPSModulePathSplit -join ';'
}
else
{
$newPSModulePath = $oldPSModulePath
}
$newPSModulePath = "$moduleParentFilePath;$newPSModulePath"
$env:PSModulePath = $newPSModulePath
if ($TestType -ieq 'Integration')
{
<#
For integration tests we have to set the machine's PSModulePath because otherwise the
DSC LCM won't be able to find the resource module being tested or may use the wrong one.
#>
[System.Environment]::SetEnvironmentVariable('PSModulePath', $newPSModulePath, [System.EnvironmentVariableTarget]::Machine)
# Reset the DSC LCM
Reset-DSC
}
# Preserve and set the execution policy so that the DSC MOF can be created
$oldExecutionPolicy = Get-ExecutionPolicy
if ($oldExecutionPolicy -ine 'Unrestricted')
{
Set-ExecutionPolicy -ExecutionPolicy 'Unrestricted' -Scope 'Process' -Force
}
# Return the test environment
return @{
DSCModuleName = $DscModuleName
DSCResourceName = $DscResourceName
TestType = $TestType
ImportedModulePath = $moduleToImportFilePath
OldPSModulePath = $oldPSModulePath
OldExecutionPolicy = $oldExecutionPolicy
}
}
<#
.SYNOPSIS
Restores the enviroment after running unit or integration tests
on a DSC resource.
This restores the following changes made by calling
Initialize-TestEnvironemt:
1. Restores the $env:PSModulePath if it was changed.
2. Restores the PowerShell execution policy.
3. Resets the DSC LCM if running Integration tests.
.PARAMETER TestEnvironment
The hashtable created by the Initialize-TestEnvironment.
.EXAMPLE
Restore-TestEnvironment -TestEnvironment $TestEnvironment
#>
function Restore-TestEnvironment
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[Hashtable]
$TestEnvironment
)
Write-Verbose -Message "Cleaning up Test Environment after $($TestEnvironment.TestType) testing of $($TestEnvironment.DSCResourceName) in module $($TestEnvironment.DSCModuleName)."
if ($TestEnvironment.TestType -ieq 'Integration')
{
# Reset the DSC LCM
Reset-DSC
}
# Restore PSModulePath
if ($TestEnvironment.OldPSModulePath -ne $env:PSModulePath)
{
$env:PSModulePath = $TestEnvironment.OldPSModulePath
if ($TestEnvironment.TestType -eq 'Integration')
{
# Restore the machine PSModulePath for integration tests.
[System.Environment]::SetEnvironmentVariable('PSModulePath', $TestEnvironment.OldPSModulePath, [System.EnvironmentVariableTarget]::Machine)
}
}
# Restore the Execution Policy
if ($TestEnvironment.OldExecutionPolicy -ne (Get-ExecutionPolicy))
{
Set-ExecutionPolicy -ExecutionPolicy $TestEnvironment.OldExecutionPolicy -Scope 'Process' -Force
}
}
<#
.SYNOPSIS
Resets the DSC LCM by performing the following functions:
1. Cancel any currently executing DSC LCM operations
2. Remove any DSC configurations that:
- are currently applied
- are pending application
- have been previously applied
The purpose of this function is to ensure the DSC LCM is in a known
and idle state before an integration test is performed that will
apply a configuration.
This is to prevent an integration test from being performed but failing
because the DSC LCM is applying a previous configuration.
This function should be called after each Describe block in an integration
test to ensure the DSC LCM is reset before another test DSC configuration
is applied.
.EXAMPLE
Reset-DSC
This command will reset the DSC LCM and clear out any DSC configurations.
#>
function Reset-DSC
{
[CmdletBinding()]
param ()
Write-Verbose -Message 'Resetting the DSC LCM'
Stop-DscConfiguration -ErrorAction 'SilentlyContinue' -Force
Remove-DscConfigurationDocument -Stage 'Current' -Force
Remove-DscConfigurationDocument -Stage 'Pending' -Force
Remove-DscConfigurationDocument -Stage 'Previous' -Force
}
<#
.SYNOPSIS
Tests if a PowerShell file contains a DSC class resource.
.PARAMETER FilePath
The full path to the file to test.
.EXAMPLE
Test-ContainsClassResource -ModulePath 'c:\mymodule\myclassmodule.psm1'
This command will test myclassmodule for the presence of any class-based
DSC resources.
#>
function Test-FileContainsClassResource
{
[OutputType([Boolean])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[String]
$FilePath
)
$fileAst = [System.Management.Automation.Language.Parser]::ParseFile($FilePath, [ref]$null, [ref]$null)
foreach ($fileAttributeAst in $fileAst.FindAll({$args[0] -is [System.Management.Automation.Language.AttributeAst]}, $false))
{
if ($fileAttributeAst.Extent.Text -ieq '[DscResource()]')
{
return $true
}
}
return $false
}
<#
.SYNOPSIS
Retrieves the name(s) of any DSC class resources from a PowerShell file.
.PARAMETER FilePath
The full path to the file to test.
.EXAMPLE
Get-ClassResourceName -ModulePath 'c:\mymodule\myclassmodule.psm1'
This command will get any DSC class resource names from the myclassmodule module.
#>
function Get-ClassResourceNameFromFile
{
[OutputType([String[]])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[String]
$FilePath
)
$classResourceNames = [String[]]@()
if (Test-FileContainsClassResource -Path $FilePath)
{
$fileAst = [System.Management.Automation.Language.Parser]::ParseFile($FilePath, [ref]$null, [ref]$null)
$typeDefinitionAsts = $fileAst.FindAll({$args[0] -is [System.Management.Automation.Language.TypeDefinitionAst]}, $false)
foreach ($typeDefinitionAst in $typeDefinitionAsts)
{
if ($typeDefinitionAst.Attributes.TypeName.Name -ieq 'DscResource')
{
$classResourceNames += $typeDefinitionAst.Name
}
}
}
return $classResourceNames
}
<#
.SYNOPSIS
Tests if a module contains a script resource.
.PARAMETER ModulePath
The path to the module to test.
#>
function Test-ModuleContainsScriptResource
{
[OutputType([Boolean])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[String]
$ModulePath
)
$dscResourcesFolderFilePath = Join-Path -Path $ModulePath -ChildPath 'DscResources'
$mofSchemaFiles = Get-ChildItem -Path $dscResourcesFolderFilePath -Filter '*.schema.mof' -File -Recurse
return ($null -ne $mofSchemaFiles)
}
<#
.SYNOPSIS
Tests if a module contains a class resource.
.PARAMETER ModulePath
The path to the module to test.
#>
function Test-ModuleContainsClassResource
{
[OutputType([Boolean])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[String]
$ModulePath
)
$psm1Files = Get-Psm1FileList -FilePath $ModulePath
foreach ($psm1File in $psm1Files)
{
if (Test-FileContainsClassResource -FilePath $psm1File.FullName)
{
return $true
}
}
return $false
}
<#
.SYNOPSIS
Retrieves all .psm1 files under the given file path.
.PARAMETER FilePath
The root file path to gather the .psm1 files from.
#>
function Get-Psm1FileList
{
[OutputType([Object[]])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[String]
$FilePath
)
return Get-ChildItem -Path $FilePath -Filter '*.psm1' -File -Recurse
}
<#
.SYNOPSIS
Retrieves the parse errors for the given file.
.PARAMETER FilePath
The path to the file to get parse errors for.
#>
function Get-FileParseErrors
{
[OutputType([System.Management.Automation.Language.ParseError[]])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[String]
$FilePath
)
$parseErrors = $null
$null = [System.Management.Automation.Language.Parser]::ParseFile($FilePath, [ref] $null, [ref] $parseErrors)
return $parseErrors
}
<#
.SYNOPSIS
Retrieves all text files under the given root file path.
.PARAMETER Root
The root file path under which to retrieve all text files.
.NOTES
Retrieves all files with the '.gitignore', '.gitattributes', '.ps1', '.psm1', '.psd1',
'.json', '.xml', '.cmd', or '.mof' file extensions.
#>
function Get-TextFilesList
{
[OutputType([System.IO.FileInfo[]])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[String]
$Root
)
$textFileExtensions = @('.gitignore', '.gitattributes', '.ps1', '.psm1', '.psd1', '.json', '.xml', '.cmd', '.mof')
return Get-ChildItem -Path $Root -File -Recurse | Where-Object { $textFileExtensions -contains $_.Extension }
}
<#
.SYNOPSIS
Tests if a file is encoded in Unicode.
.PARAMETER FileInfo
The file to test.
#>
function Test-FileInUnicode
{
[OutputType([Boolean])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[System.IO.FileInfo]
$FileInfo
)
$filePath = $FileInfo.FullName
$fileBytes = [System.IO.File]::ReadAllBytes($filePath)
$zeroBytes = @( $fileBytes -eq 0 )
return ($zeroBytes.Length -ne 0)
}
<#
.SYNOPSIS
Retrieves the names of all script resources for the given module.
.PARAMETER ModulePath
The path to the module to retrieve the script resource names of.
#>
function Get-ModuleScriptResourceNames
{
[OutputType([String[]])]
[CmdletBinding()]
param
(
[Parameter(ValueFromPipeline = $true, Mandatory = $true)]
[String]
$ModulePath
)
$scriptResourceNames = @()
$dscResourcesFolderFilePath = Join-Path -Path $ModulePath -ChildPath 'DscResources'
$mofSchemaFiles = Get-ChildItem -Path $dscResourcesFolderFilePath -Filter '*.schema.mof' -File -Recurse
foreach ($mofSchemaFile in $mofSchemaFiles)
{
$scriptResourceName = $mofSchemaFile.BaseName.Replace('.schema', '')
$scriptResourceNames += $scriptResourceName
}
return $scriptResourceNames
}
<#
.SYNOPSIS
Imports the PS Script Analyzer module.
Installs the module from the PowerShell Gallery if it is not already installed.
#>
function Import-PSScriptAnalyzer
{
[CmdletBinding()]
param ()
$psScriptAnalyzerModule = Get-Module -Name 'PSScriptAnalyzer' -ListAvailable
if ($null -eq $psScriptAnalyzerModule)
{
Write-Verbose -Message 'Installing PSScriptAnalyzer from the PowerShell Gallery'
$psScriptAnalyzerModulePath = "$env:userProfile\Documents\WindowsPowerShell\Modules\PSScriptAnalyzer"
Install-ModuleFromPowerShellGallery -ModuleName 'PSScriptAnalyzer' -DestinationPath $psScriptAnalyzerModulePath
}
$psScriptAnalyzerModule = Get-Module -Name 'PSScriptAnalyzer' -ListAvailable
Import-Module -Name $psScriptAnalyzerModule
}
<#
.SYNOPSIS
Imports the xDscResourceDesigner module.
Installs the module from the PowerShell Gallery if it is not already installed.
#>
function Import-xDscResourceDesigner
{
[CmdletBinding()]
param ()
$xDscResourceDesignerModule = Get-Module -Name 'xDscResourceDesigner' -ListAvailable
if ($null -eq $xDscResourceDesignerModule)
{
Write-Verbose -Message 'Installing xDscResourceDesigner from the PowerShell Gallery'
$xDscResourceDesignerModulePath = "$env:userProfile\Documents\WindowsPowerShell\Modules\xDscResourceDesigner"
Install-ModuleFromPowerShellGallery -ModuleName 'xDscResourceDesigner' -DestinationPath $xDscResourceDesignerModulePath
}
$xDscResourceDesignerModule = Get-Module -Name 'xDscResourceDesigner' -ListAvailable
Import-Module -Name $xDscResourceDesignerModule
}
<#
.SYNOPSIS
Retrieves the list of suppressed PSSA rules in the file at the given path.
.PARAMETER FilePath
The path to the file to retrieve the suppressed rules of.
#>
function Get-SuppressedPSSARuleNameList
{
[OutputType([String[]])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[String]
$FilePath
)
$suppressedPSSARuleNames = [String[]]@()
$fileAst = [System.Management.Automation.Language.Parser]::ParseFile($FilePath, [ref]$null, [ref]$null)
# Overall file attrbutes
$attributeAsts = $fileAst.FindAll({$args[0] -is [System.Management.Automation.Language.AttributeAst]}, $true)
foreach ($attributeAst in $attributeAsts)
{
if ([System.Diagnostics.CodeAnalysis.SuppressMessageAttribute].FullName.ToLower().Contains($attributeAst.TypeName.FullName.ToLower()))
{
$suppressedPSSARuleNames += $attributeAst.PositionalArguments.Extent.Text
}
}
return $suppressedPSSARuleNames
}
Export-ModuleMember -Function @(
'New-Nuspec', `
'Install-ModuleFromPowerShellGallery', `
'Initialize-TestEnvironment', `
'Restore-TestEnvironment', `
'Get-ClassResourceName', `
'Test-ModuleContainsScriptResource', `
'Test-ModuleContainsClassResource', `
'Get-Psm1FileList', `
'Get-FileParseErrors', `
'Get-TextFilesList', `
'Test-FileInUnicode', `
'Get-ModuleScriptResourceNames', `
'Import-PSScriptAnalyzer', `
'Import-xDscResourceDesigner', `
'Get-SuppressedPSSARuleNameList'
)