564814208f
If the search directory was `..`, for example in the invocation `just ../foo`, we would wind up checking the justfile in the current directory since we did `INVOCATION_DIRECTORY/..`.ancestors(), which would first return `INVOCATION_DIRECTORY`. Instead, lexiclean the result of joining th invocation directory with the search directory, so `..` is removed, and `ancestors()` doesn't return the invocation directory.
202 lines
3.6 KiB
Rust
202 lines
3.6 KiB
Rust
use super::*;
|
|
|
|
fn search_test<P: AsRef<Path>>(path: P, args: &[&str]) {
|
|
let binary = executable_path("just");
|
|
|
|
let output = Command::new(binary)
|
|
.current_dir(path)
|
|
.args(args)
|
|
.output()
|
|
.expect("just invocation failed");
|
|
|
|
assert_eq!(output.status.code().unwrap(), 0);
|
|
|
|
let stdout = str::from_utf8(&output.stdout).unwrap();
|
|
assert_eq!(stdout, "ok\n");
|
|
|
|
let stderr = str::from_utf8(&output.stderr).unwrap();
|
|
assert_eq!(stderr, "echo ok\n");
|
|
}
|
|
|
|
#[test]
|
|
fn test_justfile_search() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo ok",
|
|
a: {
|
|
b: {
|
|
c: {
|
|
d: {},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
search_test(tmp.path().join("a/b/c/d"), &[]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_capitalized_justfile_search() {
|
|
let tmp = temptree! {
|
|
Justfile: "default:\n\techo ok",
|
|
a: {
|
|
b: {
|
|
c: {
|
|
d: {},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
search_test(tmp.path().join("a/b/c/d"), &[]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_upwards_path_argument() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo ok",
|
|
a: {
|
|
justfile: "default:\n\techo bad",
|
|
},
|
|
};
|
|
|
|
search_test(tmp.path().join("a"), &["../"]);
|
|
search_test(tmp.path().join("a"), &["../default"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_downwards_path_argument() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo bad",
|
|
a: {
|
|
justfile: "default:\n\techo ok",
|
|
},
|
|
};
|
|
|
|
let path = tmp.path();
|
|
|
|
search_test(path, &["a/"]);
|
|
search_test(path, &["a/default"]);
|
|
search_test(path, &["./a/"]);
|
|
search_test(path, &["./a/default"]);
|
|
search_test(path, &["./a/"]);
|
|
search_test(path, &["./a/default"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_upwards_multiple_path_argument() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo ok",
|
|
a: {
|
|
b: {
|
|
justfile: "default:\n\techo bad",
|
|
},
|
|
},
|
|
};
|
|
|
|
let path = tmp.path().join("a").join("b");
|
|
search_test(&path, &["../../"]);
|
|
search_test(&path, &["../../default"]);
|
|
}
|
|
|
|
#[test]
|
|
fn test_downwards_multiple_path_argument() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo bad",
|
|
a: {
|
|
b: {
|
|
justfile: "default:\n\techo ok",
|
|
},
|
|
},
|
|
};
|
|
|
|
let path = tmp.path();
|
|
|
|
search_test(path, &["a/b/"]);
|
|
search_test(path, &["a/b/default"]);
|
|
search_test(path, &["./a/b/"]);
|
|
search_test(path, &["./a/b/default"]);
|
|
search_test(path, &["./a/b/"]);
|
|
search_test(path, &["./a/b/default"]);
|
|
}
|
|
|
|
#[test]
|
|
fn single_downwards() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo ok",
|
|
child: {},
|
|
};
|
|
|
|
let path = tmp.path();
|
|
|
|
search_test(path, &["child/"]);
|
|
}
|
|
|
|
#[test]
|
|
fn single_upwards() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo ok",
|
|
child: {},
|
|
};
|
|
|
|
let path = tmp.path().join("child");
|
|
|
|
search_test(path, &["../"]);
|
|
}
|
|
|
|
#[test]
|
|
fn double_upwards() {
|
|
let tmp = temptree! {
|
|
justfile: "default:\n\techo ok",
|
|
foo: {
|
|
bar: {
|
|
justfile: "default:\n\techo foo",
|
|
},
|
|
},
|
|
};
|
|
|
|
let path = tmp.path().join("foo/bar");
|
|
|
|
search_test(path, &["../default"]);
|
|
}
|
|
|
|
#[test]
|
|
fn find_dot_justfile() {
|
|
Test::new()
|
|
.justfile(
|
|
"
|
|
foo:
|
|
echo bad
|
|
",
|
|
)
|
|
.tree(tree! {
|
|
dir: {
|
|
".justfile": "
|
|
foo:
|
|
echo ok
|
|
"
|
|
}
|
|
})
|
|
.current_dir("dir")
|
|
.stderr("echo ok\n")
|
|
.stdout("ok\n")
|
|
.run();
|
|
}
|
|
|
|
#[test]
|
|
fn dot_justfile_conflicts_with_justfile() {
|
|
Test::new()
|
|
.justfile(
|
|
"
|
|
foo:
|
|
",
|
|
)
|
|
.tree(tree! {
|
|
".justfile": "
|
|
foo:
|
|
",
|
|
})
|
|
.stderr_regex("error: Multiple candidate justfiles found in `.*`: `.justfile` and `justfile`\n")
|
|
.status(EXIT_FAILURE)
|
|
.run();
|
|
}
|