-
-
Notifications
You must be signed in to change notification settings - Fork 177
/
Copy pathModuleValidation.Tests.ps1
52 lines (41 loc) · 1.62 KB
/
ModuleValidation.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
Describe 'Static Analysis: Module & Repository Files' {
#region Discovery
$FileSearch = @{
Path = Resolve-Path "$PSScriptRoot/.."
Include = '*.ps1', '*.psm1', '*.psd1'
Recurse = $true
Exclude = '*.Koans.ps1'
}
$Scripts = Get-ChildItem @FileSearch
$TestCases = $Scripts | ForEach-Object { @{ File = $_ } }
#endregion Discovery
Context 'Repository Code' {
It 'has no invalid syntax errors in <File>' -TestCases $TestCases {
$File.FullName | Should -Exist
$FileContents = Get-Content -Path $File.FullName -ErrorAction Stop
$Errors = $null
[System.Management.Automation.PSParser]::Tokenize($FileContents, [ref]$Errors) > $null
$Errors.Count | Should -Be 0
}
It 'has exactly one line feed at EOF in <File>' -TestCases $TestCases {
$crlf = [Regex]::Match(($File | Get-Content -Raw), '(\r?(?<lf>\n))+\Z')
$crlf.Groups['lf'].Captures.Count | Should -Be 1
}
}
Context 'Module Import' {
BeforeAll {
$ModuleName = 'PSKoans'
$ModuleRoot = (Get-Module -Name $ModuleName).ModuleBase
}
It 'cleanly imports the module' {
{ Import-Module (Join-Path $ModuleRoot "$ModuleName.psm1") -Force } | Should -Not -Throw
}
It 'removes and re-imports the module without errors' {
$Script = {
Remove-Module $ModuleName
Import-Module (Join-Path -Path $ModuleRoot -ChildPath "$ModuleName.psm1")
}
$Script | Should -Not -Throw
}
}
}