-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelpers.psm1
More file actions
160 lines (139 loc) · 4.36 KB
/
helpers.psm1
File metadata and controls
160 lines (139 loc) · 4.36 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
function Invoke-ShouldEqualFile {
param(
$ActualValue,
$ExpectedValue,
[switch]$Negate)
$ExpectedHash = (Get-FileHash -Algorithm SHA256 $ExpectedValue).Hash
$ActualHash = (Get-FileHash -Algorithm SHA256 $ActualValue).Hash
if ($Negate) {
return [pscustomobject]@{
Succeeded = $ExpectedHash -ine $ActualHash
FailureMessage = "Expected file '$ActualValue' ($ActualHash) to not equal file '$ExpectedValue' ($ExpectedHash)"
}
}
else {
return [pscustomobject]@{
Succeeded = $ExpectedHash -ieq $ActualHash
FailureMessage = "Expected file '$ActualValue' ($ActualHash) to equal file '$ExpectedValue' ($ExpectedHash)"
}
}
}
Add-ShouldOperator EqualFile -InternalName "Invoke-ShouldEqualFile" -Test ${Function:Invoke-ShouldEqualFile}
function Compress-7zArchive {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string]$Program,
[Parameter(Mandatory)]
[string]$InputFile,
[Parameter(Mandatory)]
[string]$CompressedFile,
[Parameter()]
$CompressOptions = @(),
[Parameter()]
[int]$ExpectedExitCode = 0
)
$CompressArgs = @("a") + $CompressOptions + @(
$CompressedFile
$InputFile
)
Write-Verbose ((@($Program) + $CompressArgs) -join " ") -Verbose:$VerbosePreference
$Output = & $Program @CompressArgs 2>&1
$ExitCode = $LASTEXITCODE
$Output | Write-Verbose -Verbose:$VerbosePreference
$ExitCode | Should -Be $ExpectedExitCode
}
function Expand-7zArchive {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string]$Program,
[Parameter()]
[switch]$WithFullPath,
[Parameter(Mandatory)]
[string]$CompressedFile,
[Parameter(Mandatory)]
[string]$ExtractedDir,
[Parameter()]
$ExpandOptions = @(),
[Parameter()]
[int]$ExpectedExitCode = 0
)
$Operation = if ($WithFullPath) { "x" } else { "e" }
$ExpandArgs = @($Operation) + $ExpandOptions + @(
$CompressedFile,
"-o$ExtractedDir"
)
Write-Verbose ((@($Program) + $ExpandArgs) -join " ") -Verbose:$VerbosePreference
$Output = & $Program @ExpandArgs 2>&1
$ExitCode = $LASTEXITCODE
$Output | Write-Verbose -Verbose:$VerbosePreference
$ExitCode | Should -Be $ExpectedExitCode
}
function Invoke-Roundtrip {
[CmdletBinding()]
param(
[Parameter(Mandatory)]
[string]$Program,
[Parameter(Mandatory)]
[string]$InputFile,
[Parameter(Mandatory)]
[string]$CompressedFile,
[Parameter(Mandatory)]
[string]$ExtractedDir,
[Parameter()]
$CompressOptions = @(),
[Parameter()]
$ExpandOptions = @()
)
Compress-7zArchive `
-Program $Program `
-InputFile $InputFile `
-CompressedFile $CompressedFile `
-CompressOptions $CompressOptions `
-Verbose:$VerbosePreference
Expand-7zArchive `
-Program $Program `
-CompressedFile $CompressedFile `
-ExtractedDir $ExtractedDir `
-ExpandOptions $ExpandOptions `
-Verbose:$VerbosePreference
}
function Compare-TestDirFile {
param(
[Parameter(Mandatory)]
[string]$ExpectedDir,
[Parameter(Mandatory)]
[string]$ActualDir
)
Get-ChildItem $ExpectedDir | ForEach-Object {
$Expected = Get-Item $_
$Actual = Get-Item "$ActualDir/$($_.Name)"
$Actual | Should -EqualFile $Expected
}
}
function Compare-TestDirMtime {
param(
[Parameter(Mandatory)]
[string]$ExpectedDir,
[Parameter(Mandatory)]
[string]$ActualDir
)
Get-ChildItem $ExpectedDir | ForEach-Object {
$Expected = Get-Item $_
$Actual = Get-Item "$ActualDir/$($_.Name)"
$MtimeDiff = $Actual.LastWriteTime - $Expected.LastWriteTime
$MtimeDiff | Should -BeLessThan ([timespan]::FromSeconds(1))
$MtimeDiff | Should -BeGreaterThan ([timespan]::FromSeconds(-1))
}
}
function Compare-TestDir {
param(
[Parameter(Mandatory)]
[string]$ExpectedDir,
[Parameter(Mandatory)]
[string]$ActualDir
)
Compare-TestDirFile -ExpectedDir $ExpectedDir -ActualDir $ActualDir
Compare-TestDirMtime -ExpectedDir $ExpectedDir -ActualDir $ActualDir
}