-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ghcman.Tests.ps1
93 lines (76 loc) · 3.2 KB
/
ghcman.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
# Call Invoke-Pester
Set-StrictMode -Version Latest
Import-Module powershell-yaml
Describe "Set-Ghc" {
It "Add foo of config to the empty path" {
$Env:Path = ''
'ghc: { foo: ''C:\'' }' | Out-File ghcman.yaml
Set-Ghc 'foo'
$Env:Path | Should -Be 'C:\'
}
It "Add foo of config to the path which contains another directory which exits in config" {
$Env:Path = 'D:\'
'ghc: { foo: ''C:\'', bar: ''D:\'' }' | Out-File ghcman.yaml
Set-Ghc 'foo'
$Env:Path | Should -Be 'C:\'
}
It "Add foo of config to the path which contains another directory which does not exit in config" {
$Env:Path = 'D:\'
'ghc: { foo: ''C:\'' }' | Out-File ghcman.yaml
Set-Ghc 'foo'
$Env:Path | Should -Be 'C:\;D:\'
}
It "Add foo of config to the path which contains a subdirectory of foo" {
$Env:Path = 'C:\Windows'
'ghc: { foo: ''C:\'' }' | Out-File ghcman.yaml
Set-Ghc 'foo'
$Env:Path | Should -Be 'C:\;C:\Windows'
}
It "Add foo in system global config when local config exists" {
$Env:Path = ''
'ghc: { foo: ''C:\'' }' | Out-File "$Env:ProgramData\ghcman\config.yaml"
'ghc: { bar: ''C:\Windows'' }' | Out-File ghcman.yaml
Set-Ghc 'foo'
$Env:Path | Should -Be 'C:\'
}
It "Add bar in user global config when local and system global configs exists" {
$Env:Path = ''
'ghc: { foo: ''C:\'' }' | Out-File "$Env:ProgramData\ghcman\config.yaml"
'ghc: { bar: ''C:\Users'' }' | Out-File "$Env:APPDATA\ghcman\config.yaml"
'ghc: { buz: ''C:\Windows'' }' | Out-File ghcman.yaml
Set-Ghc 'bar'
$Env:Path | Should -Be 'C:\Users'
}
BeforeAll {
Set-Variable originalPath -Option Constant -Value "$Env:Path"
Set-Variable originalProgramData -Option Constant -Value "$Env:ProgramData"
Set-Variable originalAPPDATA -Option Constant -Value "$Env:APPDATA"
Set-Variable originalPWD -Option Constant -Value "$PWD"
Set-Variable originalGhcmanInstall -Option Constant -Value "$Env:GhcmanInstall"
function New-TemporaryDirectory {
$parent = [System.IO.Path]::GetTempPath()
[String] $name = [System.Guid]::NewGuid()
New-Item -ItemType Directory -Path (Join-Path $parent $name)
}
$Env:ProgramData = New-TemporaryDirectory
New-Item -ItemType Directory -Path "$Env:ProgramData\ghcman"
$Env:APPDATA = New-TemporaryDirectory
New-Item -ItemType Directory -Path "$Env:APPDATA\ghcman"
Import-Module -Force (Join-Path "$PSScriptRoot" 'ghcman.psm1')
$tempPWD = New-TemporaryDirectory
Set-Location $tempPWD
$Env:GhcmanInstall = $tempPWD
}
AfterAll {
Remove-Item $Env:ProgramData -Recurse -ErrorAction Ignore
Set-Location $originalPWD
Remove-Item $tempPWD -Recurse
Set-Item Env:\Path -Value $originalPath
Set-Item Env:\ProgramData -Value $originalProgramData
Set-Item Env:\APPDATA -Value $originalAPPDATA
Set-Item Env:\GhcmanInstall -Value $originalGhcmanInstall
}
AfterEach {
Remove-Item 'ghcman.yaml' -ErrorAction Ignore
}
}