2021-05-09 20:35:35 -07:00
|
|
|
use crate::common::*;
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: long,
|
|
|
|
justfile: "
|
|
|
|
x:
|
|
|
|
echo XYZ
|
|
|
|
",
|
|
|
|
args: ("--command", "printf", "foo"),
|
|
|
|
stdout: "foo",
|
|
|
|
}
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: short,
|
|
|
|
justfile: "
|
|
|
|
x:
|
|
|
|
echo XYZ
|
|
|
|
",
|
|
|
|
args: ("-c", "printf", "foo"),
|
|
|
|
stdout: "foo",
|
|
|
|
}
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: no_binary,
|
|
|
|
justfile: "
|
|
|
|
x:
|
|
|
|
echo XYZ
|
|
|
|
",
|
|
|
|
args: ("--command"),
|
|
|
|
stderr: &format!("
|
|
|
|
error: The argument '--command <COMMAND>' requires a value but none was supplied
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
just{} --color <COLOR> --shell <SHELL> --shell-arg <SHELL-ARG>... \
|
2021-07-31 13:53:27 -07:00
|
|
|
<--changelog|--choose|--command <COMMAND>|--completions <SHELL>|--dump|--edit|\
|
2021-06-08 01:01:27 -07:00
|
|
|
--evaluate|--fmt|--init|--list|--show <RECIPE>|--summary|--variables>
|
2021-05-09 20:35:35 -07:00
|
|
|
|
|
|
|
For more information try --help
|
|
|
|
", EXE_SUFFIX),
|
|
|
|
status: EXIT_FAILURE,
|
|
|
|
}
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: env_is_loaded,
|
|
|
|
justfile: "
|
|
|
|
x:
|
|
|
|
echo XYZ
|
|
|
|
",
|
|
|
|
args: ("--command", "sh", "-c", "printf $DOTENV_KEY"),
|
|
|
|
stdout: "dotenv-value",
|
|
|
|
}
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: exports_are_available,
|
|
|
|
justfile: "
|
|
|
|
export FOO := 'bar'
|
|
|
|
|
|
|
|
x:
|
|
|
|
echo XYZ
|
|
|
|
",
|
|
|
|
args: ("--command", "sh", "-c", "printf $FOO"),
|
|
|
|
stdout: "bar",
|
|
|
|
}
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: set_overrides_work,
|
|
|
|
justfile: "
|
|
|
|
export FOO := 'bar'
|
|
|
|
|
|
|
|
x:
|
|
|
|
echo XYZ
|
|
|
|
",
|
|
|
|
args: ("--set", "FOO", "baz", "--command", "sh", "-c", "printf $FOO"),
|
|
|
|
stdout: "baz",
|
|
|
|
}
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: run_in_shell,
|
|
|
|
justfile: "
|
|
|
|
set shell := ['printf']
|
|
|
|
",
|
|
|
|
args: ("--shell-command", "--command", "bar baz"),
|
|
|
|
stdout: "bar baz",
|
|
|
|
shell: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
test! {
|
|
|
|
name: exit_status,
|
|
|
|
justfile: "
|
|
|
|
x:
|
|
|
|
echo XYZ
|
|
|
|
",
|
|
|
|
args: ("--command", "false"),
|
2021-07-26 01:26:06 -07:00
|
|
|
stderr: "error: Command `false` failed: exit code: 1\n",
|
2021-05-09 20:35:35 -07:00
|
|
|
status: EXIT_FAILURE,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn working_directory_is_correct() {
|
|
|
|
let tmp = tempdir();
|
|
|
|
|
|
|
|
fs::write(tmp.path().join("justfile"), "").unwrap();
|
|
|
|
fs::write(tmp.path().join("bar"), "baz").unwrap();
|
|
|
|
fs::create_dir(tmp.path().join("foo")).unwrap();
|
|
|
|
|
|
|
|
let output = Command::new(&executable_path("just"))
|
|
|
|
.args(&["--command", "cat", "bar"])
|
|
|
|
.current_dir(tmp.path().join("foo"))
|
|
|
|
.output()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(str::from_utf8(&output.stderr).unwrap(), "");
|
|
|
|
|
|
|
|
assert!(output.status.success());
|
|
|
|
|
|
|
|
assert_eq!(str::from_utf8(&output.stdout).unwrap(), "baz");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn command_not_found() {
|
|
|
|
let tmp = tempdir();
|
|
|
|
|
|
|
|
fs::write(tmp.path().join("justfile"), "").unwrap();
|
|
|
|
|
|
|
|
let output = Command::new(&executable_path("just"))
|
|
|
|
.args(&["--command", "asdfasdfasdfasdfadfsadsfadsf", "bar"])
|
|
|
|
.output()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert!(str::from_utf8(&output.stderr)
|
|
|
|
.unwrap()
|
|
|
|
.starts_with("error: Failed to invoke `asdfasdfasdfasdfadfsadsfadsf` `bar`:"));
|
|
|
|
|
|
|
|
assert!(!output.status.success());
|
|
|
|
}
|