61 lines
2.0 KiB
Bash
61 lines
2.0 KiB
Bash
#!/usr/bin/env bats
|
|
|
|
load ../test_helper
|
|
load ../../lib/helpers
|
|
load ../../lib/composure
|
|
|
|
@test 'ensure _go_pathmunge_wrap is defined' {
|
|
{ [[ $CI ]] || _command_exists go; } || skip 'golang not found'
|
|
load ../../plugins/available/go.plugin
|
|
run type -t _go_pathmunge_wrap
|
|
assert_line 'function'
|
|
}
|
|
|
|
@test 'plugins go: single entry in GOPATH' {
|
|
{ [[ $CI ]] || _command_exists go; } || skip 'golang not found'
|
|
export GOPATH="/foo"
|
|
export GOROOT="/baz"
|
|
load ../../plugins/available/go.plugin
|
|
assert_equal "$(cut -d':' -f1,2 <<<$PATH)" "/foo/bin:/baz/bin"
|
|
}
|
|
|
|
@test 'plugins go: single entry in GOPATH, with space' {
|
|
{ [[ $CI ]] || _command_exists go; } || skip 'golang not found'
|
|
export GOPATH="/foo bar"
|
|
export GOROOT="/baz"
|
|
load ../../plugins/available/go.plugin
|
|
assert_equal "$(cut -d':' -f1,2 <<<$PATH)" "/foo bar/bin:/baz/bin"
|
|
}
|
|
|
|
@test 'plugins go: single entry in GOPATH, with escaped space' {
|
|
{ [[ $CI ]] || _command_exists go; } || skip 'golang not found'
|
|
export GOPATH="/foo\ bar"
|
|
export GOROOT="/baz"
|
|
load ../../plugins/available/go.plugin
|
|
assert_equal "$(cut -d':' -f1,2 <<<$PATH)" "/foo\ bar/bin:/baz/bin"
|
|
}
|
|
|
|
@test 'plugins go: multiple entries in GOPATH' {
|
|
{ [[ $CI ]] || _command_exists go; } || skip 'golang not found'
|
|
export GOPATH="/foo:/bar"
|
|
export GOROOT="/baz"
|
|
load ../../plugins/available/go.plugin
|
|
assert_equal "$(cut -d':' -f1,2,3 <<<$PATH)" "/foo/bin:/bar/bin:/baz/bin"
|
|
}
|
|
|
|
@test 'plugins go: multiple entries in GOPATH, with space' {
|
|
{ [[ $CI ]] || _command_exists go; } || skip 'golang not found'
|
|
export GOPATH="/foo:/foo bar"
|
|
export GOROOT="/baz"
|
|
load ../../plugins/available/go.plugin
|
|
assert_equal "$(cut -d':' -f1,2,3 <<<$PATH)" "/foo/bin:/foo bar/bin:/baz/bin"
|
|
}
|
|
|
|
@test 'plugins go: multiple entries in GOPATH, with escaped space' {
|
|
{ [[ $CI ]] || _command_exists go; } || skip 'golang not found'
|
|
export GOPATH="/foo:/foo\ bar"
|
|
export GOROOT="/baz"
|
|
load ../../plugins/available/go.plugin
|
|
assert_equal "$(cut -d':' -f1,2,3 <<<$PATH)" "/foo/bin:/foo\ bar/bin:/baz/bin"
|
|
}
|