2023-03-18 14:23:41 +00:00
|
|
|
use std.nu assert
|
2023-03-16 18:23:29 +00:00
|
|
|
|
2023-03-18 14:23:41 +00:00
|
|
|
def clean [path: path] {
|
|
|
|
cd $path
|
|
|
|
cd ..
|
|
|
|
rm -r $path
|
2023-03-16 18:23:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export def test_dirs_command [] {
|
|
|
|
# need some directories to play with
|
|
|
|
let base_path = (($nu.temp-path) | path join $"test_dirs_(random uuid)" | path expand )
|
|
|
|
let path_a = ($base_path | path join "a")
|
|
|
|
let path_b = ($base_path | path join "b")
|
|
|
|
|
|
|
|
try {
|
|
|
|
mkdir $base_path $path_a $path_b
|
|
|
|
cd $base_path
|
2023-03-17 17:30:35 +00:00
|
|
|
use std.nu "dirs next"
|
|
|
|
use std.nu "dirs prev"
|
|
|
|
use std.nu "dirs add"
|
|
|
|
use std.nu "dirs drop"
|
|
|
|
use std.nu "dirs show"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
2023-03-18 14:23:41 +00:00
|
|
|
assert (1 == ($env.DIRS_LIST | length)) "list is just pwd after initialization"
|
|
|
|
assert ($base_path == $env.DIRS_LIST.0) "list is just pwd after initialization"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
dirs next
|
2023-03-18 14:23:41 +00:00
|
|
|
assert ($base_path == $env.DIRS_LIST.0) "next wraps at end of list"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
dirs prev
|
2023-03-18 14:23:41 +00:00
|
|
|
assert ($base_path == $env.DIRS_LIST.0) "prev wraps at top of list"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
dirs add $path_b $path_a
|
2023-03-18 14:23:41 +00:00
|
|
|
assert ($path_b == $env.PWD) "add changes PWD to first added dir"
|
|
|
|
assert (3 == ($env.DIRS_LIST | length)) "add in fact adds to list"
|
|
|
|
assert ($path_a == $env.DIRS_LIST.2) "add in fact adds to list"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
dirs next 2
|
2023-03-18 14:23:41 +00:00
|
|
|
assert ($base_path == $env.PWD) "next wraps at end of list"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
dirs prev 1
|
2023-03-18 14:23:41 +00:00
|
|
|
assert ($path_a == $env.PWD) "prev wraps at start of list"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
|
|
|
dirs drop
|
2023-03-18 14:23:41 +00:00
|
|
|
assert (2 == ($env.DIRS_LIST | length)) "drop removes from list"
|
|
|
|
assert ($base_path == $env.PWD) "drop changes PWD to next in list (after dropped element)"
|
2023-03-16 18:23:29 +00:00
|
|
|
|
2023-03-18 14:23:41 +00:00
|
|
|
assert ((dirs show) == [[active path]; [true $base_path] [false $path_b]]) "show table contains expected information"
|
2023-03-16 18:23:29 +00:00
|
|
|
} catch { |error|
|
2023-03-18 14:23:41 +00:00
|
|
|
clean $base_path
|
|
|
|
|
|
|
|
let error = (
|
|
|
|
$error
|
|
|
|
| get debug
|
|
|
|
| str replace "{" "("
|
|
|
|
| str replace "}" ")"
|
|
|
|
| parse 'GenericError("{msg}", "{text}", Some(Span ( start: {start}, end: {end} )), {rest})'
|
|
|
|
| reject rest
|
|
|
|
| get 0
|
|
|
|
)
|
|
|
|
error make {
|
|
|
|
msg: $error.msg
|
|
|
|
label: {
|
|
|
|
text: $error.text
|
|
|
|
start: ($error.start | into int)
|
|
|
|
end: ($error.end | into int)
|
|
|
|
}
|
|
|
|
}
|
2023-03-16 18:23:29 +00:00
|
|
|
}
|
|
|
|
|
2023-03-18 14:23:41 +00:00
|
|
|
try { clean $base_path }
|
2023-03-17 17:30:35 +00:00
|
|
|
}
|