Files
Scoop/test/Scoop-Install.Tests.ps1

103 lines
3.5 KiB
PowerShell

BeforeAll {
. "$PSScriptRoot\Scoop-TestLib.ps1"
. "$PSScriptRoot\..\lib\core.ps1"
. "$PSScriptRoot\..\lib\system.ps1"
. "$PSScriptRoot\..\lib\manifest.ps1"
. "$PSScriptRoot\..\lib\install.ps1"
}
Describe 'appname_from_url' -Tag 'Scoop' {
It 'should extract the correct name' {
appname_from_url 'https://example.org/directory/foobar.json' | Should -Be 'foobar'
}
}
Describe 'is_in_dir' -Tag 'Scoop', 'Windows' {
It 'should work correctly' {
is_in_dir 'C:\test' 'C:\foo' | Should -BeFalse
is_in_dir 'C:\test' 'C:\test\foo\baz.zip' | Should -BeTrue
is_in_dir "$PSScriptRoot\..\" "$PSScriptRoot" | Should -BeFalse
}
}
Describe 'env add and remove path' -Tag 'Scoop', 'Windows' {
BeforeAll {
# test data
$manifest = @{
'env_add_path' = @('foo', 'bar', '.', '..')
}
$testdir = Join-Path $PSScriptRoot 'path-test-directory'
$global = $false
}
It 'should concat the correct path' {
Mock Add-Path {}
Mock Remove-Path {}
# adding
env_add_path $manifest $testdir $global
Should -Invoke -CommandName Add-Path -Times 1 -ParameterFilter { $Path -like "$testdir\foo" }
Should -Invoke -CommandName Add-Path -Times 1 -ParameterFilter { $Path -like "$testdir\bar" }
Should -Invoke -CommandName Add-Path -Times 1 -ParameterFilter { $Path -like $testdir }
Should -Invoke -CommandName Add-Path -Times 0 -ParameterFilter { $Path -like $PSScriptRoot }
env_rm_path $manifest $testdir $global
Should -Invoke -CommandName Remove-Path -Times 1 -ParameterFilter { $Path -like "$testdir\foo" }
Should -Invoke -CommandName Remove-Path -Times 1 -ParameterFilter { $Path -like "$testdir\bar" }
Should -Invoke -CommandName Remove-Path -Times 1 -ParameterFilter { $Path -like $testdir }
Should -Invoke -CommandName Remove-Path -Times 0 -ParameterFilter { $Path -like $PSScriptRoot }
}
}
Describe 'shim_def' -Tag 'Scoop' {
It 'should use strings correctly' {
$target, $name, $shimArgs = shim_def 'command.exe'
$target | Should -Be 'command.exe'
$name | Should -Be 'command'
$shimArgs | Should -BeNullOrEmpty
}
It 'should expand the array correctly' {
$target, $name, $shimArgs = shim_def @('foo.exe', 'bar')
$target | Should -Be 'foo.exe'
$name | Should -Be 'bar'
$shimArgs | Should -BeNullOrEmpty
$target, $name, $shimArgs = shim_def @('foo.exe', 'bar', '--test')
$target | Should -Be 'foo.exe'
$name | Should -Be 'bar'
$shimArgs | Should -Be '--test'
}
}
Describe 'persist_def' -Tag 'Scoop' {
It 'parses string correctly' {
$source, $target = persist_def 'test'
$source | Should -Be 'test'
$target | Should -Be 'test'
}
It 'should handle sub-folder' {
$source, $target = persist_def 'foo/bar'
$source | Should -Be 'foo/bar'
$target | Should -Be 'foo/bar'
}
It 'should handle arrays' {
# both specified
$source, $target = persist_def @('foo', 'bar')
$source | Should -Be 'foo'
$target | Should -Be 'bar'
# only first specified
$source, $target = persist_def @('foo')
$source | Should -Be 'foo'
$target | Should -Be 'foo'
# null value specified
$source, $target = persist_def @('foo', $null)
$source | Should -Be 'foo'
$target | Should -Be 'foo'
}
}