2023-04-08 12:35:16 +00:00
|
|
|
use std
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
export def test_path_add [] {
|
2023-05-27 12:45:04 +00:00
|
|
|
use std assert
|
2023-03-16 18:23:29 +00:00
|
|
|
|
2023-05-17 23:55:46 +00:00
|
|
|
let path_name = if "PATH" in $env { "PATH" } else { "Path" }
|
|
|
|
|
|
|
|
with-env [$path_name []] {
|
|
|
|
def get_path [] { $env | get $path_name }
|
|
|
|
|
|
|
|
assert equal (get_path) []
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
std path add "/foo/"
|
2023-05-17 23:55:46 +00:00
|
|
|
assert equal (get_path) ["/foo/"]
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
std path add "/bar/" "/baz/"
|
2023-05-17 23:55:46 +00:00
|
|
|
assert equal (get_path) ["/bar/", "/baz/", "/foo/"]
|
2023-03-16 18:23:29 +00:00
|
|
|
|
2023-05-17 23:55:46 +00:00
|
|
|
let-env $path_name = []
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
std path add "foo"
|
|
|
|
std path add "bar" "baz" --append
|
2023-05-17 23:55:46 +00:00
|
|
|
assert equal (get_path) ["foo", "bar", "baz"]
|
2023-03-16 18:23:29 +00:00
|
|
|
|
2023-03-20 13:57:28 +00:00
|
|
|
assert equal (std path add "fooooo" --ret) ["fooooo", "foo", "bar", "baz"]
|
2023-05-17 23:55:46 +00:00
|
|
|
assert equal (get_path) ["fooooo", "foo", "bar", "baz"]
|
2023-05-26 07:24:53 +00:00
|
|
|
|
|
|
|
let-env $path_name = []
|
|
|
|
let target_paths = {linux: "foo", windows: "bar", macos: "baz"}
|
|
|
|
|
|
|
|
std path add $target_paths
|
|
|
|
assert equal (get_path) [($target_paths | get $nu.os-info.name)]
|
|
|
|
|
|
|
|
|
2023-03-16 18:23:29 +00:00
|
|
|
}
|
|
|
|
}
|
2023-05-10 12:05:01 +00:00
|
|
|
|
|
|
|
export def test_banner [] {
|
|
|
|
std assert ((std banner | lines | length) == 15)
|
|
|
|
}
|