just/src/integration.rs

401 lines
6.3 KiB
Rust
Raw Normal View History

2016-10-28 22:25:59 +00:00
extern crate tempdir;
extern crate brev;
use tempdir::TempDir;
2016-10-29 02:38:03 +00:00
use super::std::process::Command;
2016-10-28 22:25:59 +00:00
fn integration_test(
name: &str,
args: &[&str],
justfile: &str,
expected_status: i32,
expected_stdout: &str,
expected_stderr: &str,
) {
let tmp = TempDir::new(name)
.unwrap_or_else(|err| panic!("tmpdir: failed to create temporary directory: {}", err));
let mut path = tmp.path().to_path_buf();
path.push("justfile");
brev::dump(path, justfile);
2016-10-29 02:38:03 +00:00
let mut binary = super::std::env::current_dir().unwrap();
2016-10-28 22:25:59 +00:00
binary.push("./target/debug/j");
let output = Command::new(binary)
.current_dir(tmp.path())
.args(args)
.output()
.expect("j invocation failed");
let mut failure = false;
let status = output.status.code().unwrap();
if status != expected_status {
println!("bad status: {} != {}", status, expected_status);
failure = true;
}
2016-10-29 02:38:03 +00:00
let stdout = super::std::str::from_utf8(&output.stdout).unwrap();
2016-10-28 22:25:59 +00:00
if stdout != expected_stdout {
2016-10-29 02:38:03 +00:00
println!("bad stdout:\ngot:\n{}\n\nexpected:\n{}", stdout, expected_stdout);
2016-10-28 22:25:59 +00:00
failure = true;
}
2016-10-29 02:38:03 +00:00
let stderr = super::std::str::from_utf8(&output.stderr).unwrap();
2016-10-28 22:25:59 +00:00
if stderr != expected_stderr {
println!("bad stderr:\ngot:\n{}\n\nexpected:\n{}", stderr, expected_stderr);
2016-10-28 22:25:59 +00:00
failure = true;
}
if failure {
panic!("test failed");
}
}
#[test]
2016-10-28 22:59:50 +00:00
fn default() {
2016-10-28 22:25:59 +00:00
integration_test(
2016-10-28 22:59:50 +00:00
"default",
2016-10-28 22:25:59 +00:00
&[],
2016-10-28 22:59:50 +00:00
"default:\n echo hello\nother: \n echo bar",
2016-10-28 22:25:59 +00:00
0,
"hello\n",
"echo hello\n",
)
}
2016-10-28 22:34:01 +00:00
#[test]
fn quiet() {
integration_test(
"quiet",
&[],
"default:\n @echo hello",
0,
"hello\n",
"",
)
}
#[test]
fn order() {
let text = "
b: a
echo b
@mv a b
a:
echo a
@touch F
@touch a
d: c
echo d
@rm c
c: b
echo c
@mv b c";
integration_test(
"order",
&["a", "d"],
text,
0,
"a\nb\nc\nd\n",
"echo a\necho b\necho c\necho d\n",
);
}
2016-10-28 22:59:50 +00:00
#[test]
fn list() {
let text =
"b: a
a:
d: c
c: b";
integration_test(
"list",
&["--list"],
text,
0,
"a b c d\n",
"",
);
}
#[test]
fn select() {
let text =
"b:
@echo b
a:
@echo a
d:
@echo d
c:
@echo c";
integration_test(
"select",
&["d", "c"],
text,
0,
"d\nc\n",
"",
);
}
#[test]
fn print() {
let text =
"b:
echo b
a:
echo a
d:
echo d
c:
echo c";
integration_test(
"select",
&["d", "c"],
text,
0,
"d\nc\n",
"echo d\necho c\n",
);
}
#[test]
fn show() {
let text =
r#"hello = "foo"
bar = hello + hello
recipe:
echo {{hello + "bar" + bar}}"#;
integration_test(
"show",
&["--show", "recipe"],
text,
0,
r#"recipe:
echo {{hello + "bar" + bar}}
"#,
"",
);
}
2016-10-30 04:51:39 +00:00
/*
2016-10-29 02:38:03 +00:00
#[test]
fn debug() {
let text =
r#"hello = "foo"
bar = hello + hello
recipe:
echo {{hello + "bar" + bar}}"#;
integration_test(
"debug",
&["--debug"],
text,
0,
r#"bar = hello + hello # "foofoo"
hello = "foo" # "foo"
recipe:
echo {{hello + "bar" + bar # "foobarfoofoo"}}
"#,
"",
);
}
2016-10-30 04:51:39 +00:00
*/
2016-10-29 02:38:03 +00:00
2016-10-28 22:59:50 +00:00
#[test]
fn status() {
let text =
"
recipe:
@function f { return 100; }; f";
integration_test(
"status",
&[],
text,
100,
"",
"Recipe \"recipe\" failed with exit code 100\n",
);
}
2016-10-29 03:34:25 +00:00
#[test]
fn error() {
integration_test(
"error",
&[],
"bar:\nhello:\nfoo: bar baaaaaaaz hello",
255,
"",
2016-10-29 03:40:16 +00:00
"error: recipe `foo` has unknown dependency `baaaaaaaz`
2016-10-29 03:34:25 +00:00
|
3 | foo: bar baaaaaaaz hello
| ^^^^^^^^^
",
);
}
#[test]
fn backtick_success() {
integration_test(
"backtick_success",
&[],
"a = `printf Hello,`\nbar:\n printf '{{a + `printf ' world!'`}}'",
0,
"Hello, world!",
"printf 'Hello, world!'\n",
);
}
#[test]
fn backtick_trimming() {
integration_test(
"backtick_trimming",
&[],
"a = `echo Hello,`\nbar:\n echo '{{a + `echo ' world!'`}}'",
0,
"Hello, world!\n",
"echo 'Hello, world!'\n",
);
}
2016-10-30 08:27:05 +00:00
#[test]
fn backtick_code_assignment() {
integration_test(
"backtick_code_assignment",
&[],
"b = a\na = `function f { return 100; }; f`\nbar:\n echo '{{`function f { return 200; }; f`}}'",
100,
"",
"backtick failed with exit code 100
|
2 | a = `function f { return 100; }; f`
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
",
);
}
#[test]
fn backtick_code_interpolation() {
integration_test(
"backtick_code_interpolation",
&[],
"b = a\na = `echo hello`\nbar:\n echo '{{`function f { return 200; }; f`}}'",
200,
"",
"backtick failed with exit code 200
|
4 | echo '{{`function f { return 200; }; f`}}'
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
",
);
}
#[test]
fn shebang_backtick_failure() {
integration_test(
"shebang_backtick_failure",
&[],
"foo:
#!/bin/sh
echo hello
echo {{`exit 123`}}",
123,
"",
"backtick failed with exit code 123
|
4 | echo {{`exit 123`}}
| ^^^^^^^^^^
",
);
}
#[test]
fn command_backtick_failure() {
integration_test(
"command_backtick_failure",
&[],
"foo:
echo hello
echo {{`exit 123`}}",
123,
"hello\n",
"echo hello\nbacktick failed with exit code 123
|
3 | echo {{`exit 123`}}
| ^^^^^^^^^^
",
);
}
#[test]
fn assignment_backtick_failure() {
integration_test(
"assignment_backtick_failure",
&[],
"foo:
echo hello
echo {{`exit 111`}}
a = `exit 222`",
222,
"",
"backtick failed with exit code 222
|
4 | a = `exit 222`
| ^^^^^^^^^^
",
);
}
2016-10-30 10:08:28 +00:00
#[test]
fn unknown_override_options() {
integration_test(
"unknown_override_options",
&["--set", "foo", "bar", "a", "b", "--set", "baz", "bob", "--set", "a", "b"],
"foo:
echo hello
echo {{`exit 111`}}
a = `exit 222`",
255,
"",
"baz and foo set on the command line but not present in justfile\n",
);
}
#[test]
fn unknown_override_args() {
integration_test(
"unknown_override_args",
&["foo=bar", "baz=bob", "a=b", "a", "b"],
"foo:
echo hello
echo {{`exit 111`}}
a = `exit 222`",
255,
"",
"baz and foo set on the command line but not present in justfile\n",
);
}
#[test]
fn overrides_first() {
integration_test(
"unknown_override_args",
&["foo=bar", "a=b", "recipe", "baz=bar"],
r#"
foo = "foo"
a = "a"
baz = "baz"
recipe arg:
echo arg={{arg}}
echo {{foo + a + baz}}"#,
0,
"arg=baz=bar\nbarbbaz\n",
"echo arg=baz=bar\necho barbbaz\n",
);
}