2023-05-23 13:24:39 +02:00
|
|
|
use std assert
|
2023-05-27 14:45:04 +02:00
|
|
|
use std assert
|
2023-05-23 22:48:50 +02:00
|
|
|
use std log
|
2023-05-23 13:24:39 +02:00
|
|
|
|
|
|
|
# A couple of nuances to understand when testing module that exports environment:
|
2023-10-02 20:13:31 +02:00
|
|
|
# Each 'use' for that module in the test script will execute the def --env block.
|
|
|
|
# PWD at the time of the `use` will be what the export def --env block will see.
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-07-02 10:41:33 +02:00
|
|
|
#[before-each]
|
2023-06-10 20:16:17 +02:00
|
|
|
def before-each [] {
|
2023-05-23 13:24:39 +02:00
|
|
|
# need some directories to play with
|
|
|
|
let base_path = ($nu.temp-path | path join $"test_dirs_(random uuid)")
|
|
|
|
let path_a = ($base_path | path join "a")
|
|
|
|
let path_b = ($base_path | path join "b")
|
|
|
|
|
|
|
|
mkdir $base_path $path_a $path_b
|
|
|
|
|
2023-06-16 10:42:50 +02:00
|
|
|
{base_path: $base_path, path_a: $path_a, path_b: $path_b}
|
2023-04-10 22:42:11 +02:00
|
|
|
}
|
|
|
|
|
2023-07-02 10:41:33 +02:00
|
|
|
#[after-each]
|
2023-06-10 20:16:17 +02:00
|
|
|
def after-each [] {
|
2023-04-10 22:42:11 +02:00
|
|
|
let base_path = $in.base_path
|
|
|
|
cd $base_path
|
2023-03-18 15:23:41 +01:00
|
|
|
cd ..
|
2023-04-10 22:42:11 +02:00
|
|
|
rm -r $base_path
|
2023-03-16 19:23:29 +01:00
|
|
|
}
|
|
|
|
|
2023-05-23 13:24:39 +02:00
|
|
|
def cur_dir_check [expect_dir, scenario] {
|
|
|
|
log debug $"check dir ($expect_dir), scenario ($scenario)"
|
|
|
|
assert equal $expect_dir $env.PWD $"expected not PWD after ($scenario)"
|
|
|
|
}
|
2023-07-02 10:41:33 +02:00
|
|
|
|
2023-05-23 13:24:39 +02:00
|
|
|
def cur_ring_check [expect_dir:string, expect_position: int scenario:string] {
|
|
|
|
log debug $"check ring ($expect_dir), position ($expect_position) scenario ($scenario)"
|
|
|
|
assert ($expect_position < ($env.DIRS_LIST | length)) $"ring big enough after ($scenario)"
|
|
|
|
assert equal $expect_position $env.DIRS_POSITION $"position in ring after ($scenario)"
|
|
|
|
}
|
|
|
|
|
2023-07-02 10:41:33 +02:00
|
|
|
#[test]
|
|
|
|
def dirs_command [] {
|
2023-05-23 13:24:39 +02:00
|
|
|
# careful with order of these statements!
|
|
|
|
# must capture value of $in before executing `use`s
|
2023-05-23 22:48:50 +02:00
|
|
|
let $c = $in
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-10-02 20:13:31 +02:00
|
|
|
# must set PWD *before* doing `use` that will run the def --env block in dirs module.
|
2023-05-23 13:24:39 +02:00
|
|
|
cd $c.base_path
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-05-23 13:24:39 +02:00
|
|
|
# must execute these uses for the UOT commands *after* the test and *not* just put them at top of test module.
|
2023-10-02 20:13:31 +02:00
|
|
|
# the def --env gets messed up
|
2023-05-23 22:48:50 +02:00
|
|
|
use std dirs
|
|
|
|
|
2023-06-16 10:42:50 +02:00
|
|
|
# Stack: [BASE]
|
2023-05-23 13:24:39 +02:00
|
|
|
assert equal [$c.base_path] $env.DIRS_LIST "list is just pwd after initialization"
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-04-10 22:42:11 +02:00
|
|
|
dirs next
|
2023-05-23 13:24:39 +02:00
|
|
|
assert equal $c.base_path $env.DIRS_LIST.0 "next wraps at end of list"
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-04-10 22:42:11 +02:00
|
|
|
dirs prev
|
2023-05-23 13:24:39 +02:00
|
|
|
assert equal $c.base_path $env.DIRS_LIST.0 "prev wraps at top of list"
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-06-16 10:42:50 +02:00
|
|
|
# Stack becomes: [base PATH_B path_a]
|
2023-05-23 13:24:39 +02:00
|
|
|
dirs add $c.path_b $c.path_a
|
|
|
|
assert equal $c.path_b $env.PWD "add changes PWD to first added dir"
|
2023-04-10 22:42:11 +02:00
|
|
|
assert length $env.DIRS_LIST 3 "add in fact adds to list"
|
2023-05-23 13:24:39 +02:00
|
|
|
assert equal $c.path_a $env.DIRS_LIST.2 "add in fact adds to list"
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-06-16 10:42:50 +02:00
|
|
|
# Stack becomes: [BASE path_b path_a]
|
2023-04-10 22:42:11 +02:00
|
|
|
dirs next 2
|
2023-05-23 13:24:39 +02:00
|
|
|
# assert (not) equal requires span.start of first arg < span.end of 2nd
|
|
|
|
assert equal $env.PWD $c.base_path "next wraps at end of list"
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-06-16 10:42:50 +02:00
|
|
|
# Stack becomes: [base path_b PATH_A]
|
2023-04-10 22:42:11 +02:00
|
|
|
dirs prev 1
|
2023-05-23 13:24:39 +02:00
|
|
|
assert equal $c.path_a $env.PWD "prev wraps at start of list"
|
|
|
|
cur_dir_check $c.path_a "prev wraps to end from start of list"
|
2023-03-18 15:23:41 +01:00
|
|
|
|
2023-06-16 10:42:50 +02:00
|
|
|
# Stack becomes: [base PATH_B]
|
2023-04-10 22:42:11 +02:00
|
|
|
dirs drop
|
|
|
|
assert length $env.DIRS_LIST 2 "drop removes from list"
|
2023-05-23 13:24:39 +02:00
|
|
|
assert equal $env.PWD $c.path_b "drop changes PWD to previous in list (before dropped element)"
|
|
|
|
|
|
|
|
assert equal (dirs show) [[active path]; [false $c.base_path] [true $c.path_b]] "show table contains expected information"
|
2023-06-16 10:42:50 +02:00
|
|
|
|
|
|
|
# Stack becomes: [BASE]
|
|
|
|
dirs drop
|
|
|
|
assert length $env.DIRS_LIST 1 "drop removes from list"
|
|
|
|
assert equal $env.PWD $c.base_path "drop changes PWD (regression test for #9449)"
|
2023-05-23 13:24:39 +02:00
|
|
|
}
|
2023-03-16 19:23:29 +01:00
|
|
|
|
2023-07-02 10:41:33 +02:00
|
|
|
#[test]
|
|
|
|
def dirs_next [] {
|
2023-05-23 13:24:39 +02:00
|
|
|
# must capture value of $in before executing `use`s
|
2023-05-23 22:48:50 +02:00
|
|
|
let $c = $in
|
2023-10-02 20:13:31 +02:00
|
|
|
# must set PWD *before* doing `use` that will run the def --env block in dirs module.
|
2023-05-23 13:24:39 +02:00
|
|
|
cd $c.base_path
|
|
|
|
assert equal $env.PWD $c.base_path "test setup"
|
|
|
|
|
2023-05-23 22:48:50 +02:00
|
|
|
use std dirs
|
2023-05-23 13:24:39 +02:00
|
|
|
cur_dir_check $c.base_path "use module test setup"
|
|
|
|
|
|
|
|
dirs add $c.path_a $c.path_b
|
|
|
|
cur_ring_check $c.path_a 1 "add 2, but pwd is first one added"
|
|
|
|
|
|
|
|
dirs next
|
|
|
|
cur_ring_check $c.path_b 2 "next to third"
|
|
|
|
|
|
|
|
dirs next
|
|
|
|
cur_ring_check $c.base_path 0 "next from top wraps to bottom of ring"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-07-02 10:41:33 +02:00
|
|
|
#[test]
|
|
|
|
def dirs_cd [] {
|
2023-05-23 13:24:39 +02:00
|
|
|
# must capture value of $in before executing `use`s
|
2023-05-23 22:48:50 +02:00
|
|
|
let $c = $in
|
2023-10-02 20:13:31 +02:00
|
|
|
# must set PWD *before* doing `use` that will run the def --env block in dirs module.
|
2023-05-23 13:24:39 +02:00
|
|
|
cd $c.base_path
|
|
|
|
|
2023-05-23 22:48:50 +02:00
|
|
|
use std dirs
|
2023-05-23 13:24:39 +02:00
|
|
|
|
|
|
|
cur_dir_check $c.base_path "use module test setup"
|
|
|
|
|
|
|
|
cd $c.path_b
|
|
|
|
cur_ring_check $c.path_b 0 "cd with empty ring"
|
|
|
|
|
|
|
|
dirs add $c.path_a
|
|
|
|
cur_dir_check $c.path_a "can add 2nd directory"
|
|
|
|
|
|
|
|
cd $c.path_b
|
|
|
|
cur_ring_check $c.path_b 1 "cd at 2nd item on ring"
|
|
|
|
|
|
|
|
dirs next
|
|
|
|
cur_ring_check $c.path_b 0 "cd updates current position in non-empty ring"
|
|
|
|
assert equal [$c.path_b $c.path_b] $env.DIRS_LIST "cd updated both positions in ring"
|
2023-03-17 18:30:35 +01:00
|
|
|
}
|
2023-10-13 13:46:51 +02:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
def dirs_goto_bug10696 [] {
|
|
|
|
let $c = $in
|
|
|
|
cd $c.base_path
|
|
|
|
use std dirs
|
|
|
|
|
|
|
|
dirs add $c.path_a
|
|
|
|
cd $c.path_b
|
|
|
|
dirs goto 0
|
|
|
|
dirs goto 1
|
|
|
|
|
|
|
|
assert equal $env.PWD $c.path_b "goto other, then goto to come back returns to same directory"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
def dirs_goto [] {
|
|
|
|
let $c = $in
|
|
|
|
cd $c.base_path
|
|
|
|
use std dirs
|
|
|
|
|
|
|
|
# check that goto can move *from* any position in the ring *to* any other position (correctly)
|
|
|
|
|
|
|
|
assert equal $env.PWD $c.base_path
|
|
|
|
dirs add $c.path_a
|
|
|
|
dirs add $c.path_b
|
|
|
|
assert equal ($env.DIRS_LIST | length) 3 "start with 3 elements in ring"
|
|
|
|
|
|
|
|
let exp_dir = [$c.base_path $c.path_a $c.path_b]
|
|
|
|
|
|
|
|
for $cur_pos in 0..<($env.DIRS_LIST | length) {
|
|
|
|
for $other_pos in 0..<($env.DIRS_LIST | length) {
|
|
|
|
dirs goto $cur_pos
|
|
|
|
assert equal $env.PWD ($exp_dir | get $cur_pos) "initial position as expected"
|
|
|
|
|
|
|
|
dirs goto $other_pos
|
|
|
|
assert equal $env.DIRS_POSITION $other_pos "goto moved index to correct slot"
|
|
|
|
assert equal $env.PWD ($exp_dir | get $other_pos) "goto changed working directory correctly"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|