This commit is contained in:
Casey Rodarmor 2023-11-16 13:51:57 -08:00 committed by GitHub
parent 63c0234c96
commit 53fec7b449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 188 additions and 156 deletions

View File

@ -40,7 +40,7 @@ complete -c just -a '(__fish_just_complete_recipes)'
pub(crate) const ZSH_COMPLETION_REPLACEMENTS: &[(&str, &str)] = &[
(
r#" _arguments "${_arguments_options[@]}" \"#,
r#" local common=("#,
r" local common=(",
),
(
r"'*--set=[Override <VARIABLE> with <VALUE>]' \",
@ -206,5 +206,5 @@ pub(crate) const BASH_COMPLETION_REPLACEMENTS: &[(&str, &str)] = &[
fi
fi"#,
),
(r#" just)"#, r#" "$1")"#),
(r" just)", r#" "$1")"#),
];

View File

@ -669,16 +669,7 @@ mod tests {
}
}
macro_rules! test {
($name:ident, $input:expr, $expected:expr $(,)*) => {
#[test]
fn $name() {
test($input, $expected);
}
};
}
fn test(input: &str, expected: &str) {
fn case(input: &str, expected: &str) {
let justfile = compile(input);
let actual = format!("{}", justfile.color_display(Color::never()));
assert_eq!(actual, expected);
@ -688,8 +679,9 @@ mod tests {
assert_eq!(redumped, actual);
}
test! {
parse_empty,
#[test]
fn parse_empty() {
case(
"
# hello
@ -697,10 +689,12 @@ mod tests {
",
"",
);
}
test! {
parse_string_default,
#[test]
fn parse_string_default() {
case(
r#"
foo a="b\t":
@ -708,32 +702,37 @@ foo a="b\t":
"#,
r#"foo a="b\t":"#,
);
}
test! {
parse_multiple,
r#"
#[test]
fn parse_multiple() {
case(
r"
a:
b:
"#,
r#"a:
", r"a:
b:"#,
b:",
);
}
test! {
parse_variadic,
r#"
#[test]
fn parse_variadic() {
case(
r"
foo +a:
"#,
r#"foo +a:"#,
",
r"foo +a:",
);
}
test! {
parse_variadic_string_default,
#[test]
fn parse_variadic_string_default() {
case(
r#"
foo +a="Hello":
@ -741,10 +740,12 @@ foo +a="Hello":
"#,
r#"foo +a="Hello":"#,
);
}
test! {
parse_raw_string_default,
#[test]
fn parse_raw_string_default() {
case(
r"
foo a='b\t':
@ -752,58 +753,68 @@ foo a='b\t':
",
r"foo a='b\t':",
);
}
test! {
parse_export,
#[test]
fn parse_export() {
case(
r#"
export a := "hello"
"#,
r#"export a := "hello""#,
);
}
test! {
parse_alias_after_target,
r#"
#[test]
fn parse_alias_after_target() {
case(
r"
foo:
echo a
alias f := foo
"#,
r#"alias f := foo
",
r"alias f := foo
foo:
echo a"#
echo a",
);
}
test! {
parse_alias_before_target,
r#"
#[test]
fn parse_alias_before_target() {
case(
r"
alias f := foo
foo:
echo a
"#,
r#"alias f := foo
",
r"alias f := foo
foo:
echo a"#
echo a",
);
}
test! {
parse_alias_with_comment,
r#"
#[test]
fn parse_alias_with_comment() {
case(
r"
alias f := foo #comment
foo:
echo a
"#,
r#"alias f := foo
",
r"alias f := foo
foo:
echo a"#
echo a",
);
}
test! {
parse_complex,
#[test]
fn parse_complex() {
case(
"
x:
y:
@ -837,11 +848,13 @@ x:
y:
z:"
z:",
);
}
test! {
parse_shebang,
#[test]
fn parse_shebang() {
case(
"
practicum := 'hello'
install:
@ -857,16 +870,17 @@ install:
if [[ -f {{ practicum }} ]]; then
\treturn
fi",
);
}
test! {
parse_simple_shebang,
"a:\n #!\n print(1)",
"a:\n #!\n print(1)",
#[test]
fn parse_simple_shebang() {
case("a:\n #!\n print(1)", "a:\n #!\n print(1)");
}
test! {
parse_assignments,
#[test]
fn parse_assignments() {
case(
r#"a := "0"
c := a + b + a + b
b := "1"
@ -876,10 +890,12 @@ b := "1"
b := "1"
c := a + b + a + b"#,
);
}
test! {
parse_assignment_backticks,
#[test]
fn parse_assignment_backticks() {
case(
"a := `echo hello`
c := a + b + a + b
b := `echo goodbye`",
@ -888,44 +904,47 @@ b := `echo goodbye`",
b := `echo goodbye`
c := a + b + a + b",
);
}
test! {
parse_interpolation_backticks,
#[test]
fn parse_interpolation_backticks() {
case(
r#"a:
echo {{ `echo hello` + "blarg" }} {{ `echo bob` }}"#,
r#"a:
echo {{ `echo hello` + "blarg" }} {{ `echo bob` }}"#,
);
}
test! {
eof_test,
"x:\ny:\nz:\na b c: x y z",
"a b c: x y z\n\nx:\n\ny:\n\nz:",
#[test]
fn eof_test() {
case("x:\ny:\nz:\na b c: x y z", "a b c: x y z\n\nx:\n\ny:\n\nz:");
}
test! {
string_quote_escape,
r#"a := "hello\"""#,
r#"a := "hello\"""#,
#[test]
fn string_quote_escape() {
case(r#"a := "hello\"""#, r#"a := "hello\"""#);
}
test! {
string_escapes,
r#"a := "\n\t\r\"\\""#,
r#"a := "\n\t\r\"\\""#,
#[test]
fn string_escapes() {
case(r#"a := "\n\t\r\"\\""#, r#"a := "\n\t\r\"\\""#);
}
test! {
parameters,
#[test]
fn parameters() {
case(
"a b c:
{{b}} {{c}}",
"a b c:
{{ b }} {{ c }}",
);
}
test! {
unary_functions,
#[test]
fn unary_functions() {
case(
"
x := arch()
@ -935,10 +954,12 @@ a:
a:
{{ os() }} {{ os_family() }} {{ num_cpus() }}",
);
}
test! {
env_functions,
#[test]
fn env_functions() {
case(
r#"
x := env_var('foo',)
@ -948,42 +969,52 @@ a:
a:
{{ env_var_or_default('foo' + 'bar', 'baz') }} {{ env_var(env_var("baz")) }}"#,
);
}
test! {
parameter_default_string,
#[test]
fn parameter_default_string() {
case(
r#"
f x="abc":
"#,
r#"f x="abc":"#,
);
}
test! {
parameter_default_raw_string,
r#"
#[test]
fn parameter_default_raw_string() {
case(
r"
f x='abc':
"#,
r#"f x='abc':"#,
",
r"f x='abc':",
);
}
test! {
parameter_default_backtick,
r#"
#[test]
fn parameter_default_backtick() {
case(
r"
f x=`echo hello`:
"#,
r#"f x=`echo hello`:"#,
",
r"f x=`echo hello`:",
);
}
test! {
parameter_default_concatenation_string,
#[test]
fn parameter_default_concatenation_string() {
case(
r#"
f x=(`echo hello` + "foo"):
"#,
r#"f x=(`echo hello` + "foo"):"#,
);
}
test! {
parameter_default_concatenation_variable,
#[test]
fn parameter_default_concatenation_variable() {
case(
r#"
x := "10"
f y=(`echo hello` + x) +z="foo":
@ -991,10 +1022,12 @@ f y=(`echo hello` + x) +z="foo":
r#"x := "10"
f y=(`echo hello` + x) +z="foo":"#,
);
}
test! {
parameter_default_multiple,
#[test]
fn parameter_default_multiple() {
case(
r#"
x := "10"
f y=(`echo hello` + x) +z=("foo" + "bar"):
@ -1002,24 +1035,23 @@ f y=(`echo hello` + x) +z=("foo" + "bar"):
r#"x := "10"
f y=(`echo hello` + x) +z=("foo" + "bar"):"#,
);
}
test! {
concatenation_in_group,
"x := ('0' + '1')",
"x := ('0' + '1')",
#[test]
fn concatenation_in_group() {
case("x := ('0' + '1')", "x := ('0' + '1')");
}
test! {
string_in_group,
"x := ('0' )",
"x := ('0')",
#[test]
fn string_in_group() {
case("x := ('0' )", "x := ('0')");
}
#[rustfmt::skip]
test! {
escaped_dos_newlines,
"@spam:\r
#[test]
fn escaped_dos_newlines() {
case("@spam:\r
\t{ \\\r
\t\tfiglet test; \\\r
\t\tcargo build --color always 2>&1; \\\r
@ -1031,6 +1063,6 @@ f y=(`echo hello` + x) +z=("foo" + "bar"):"#,
\tfiglet test; \\
\tcargo build --color always 2>&1; \\
\tcargo test --color always -- --color always 2>&1; \\
} | less",
} | less");
}
}

View File

@ -1020,11 +1020,11 @@ mod tests {
test! {
name: recipe_named_alias,
text: r#"
text: r"
[private]
alias:
echo 'echoing alias'
"#,
",
tree: (justfile
(recipe alias (body ("echo 'echoing alias'")))
),
@ -1154,13 +1154,13 @@ mod tests {
test! {
name: recipe_plus_variadic,
text: r#"foo +bar:"#,
text: r"foo +bar:",
tree: (justfile (recipe foo (params +(bar)))),
}
test! {
name: recipe_star_variadic,
text: r#"foo *bar:"#,
text: r"foo *bar:",
tree: (justfile (recipe foo (params *(bar)))),
}
@ -1172,13 +1172,13 @@ mod tests {
test! {
name: recipe_variadic_variable_default,
text: r#"foo +bar=baz:"#,
text: r"foo +bar=baz:",
tree: (justfile (recipe foo (params +(bar baz)))),
}
test! {
name: recipe_variadic_addition_group_default,
text: r#"foo +bar=(baz + bob):"#,
text: r"foo +bar=(baz + bob):",
tree: (justfile (recipe foo (params +(bar ((+ baz bob)))))),
}
@ -1440,9 +1440,9 @@ mod tests {
test! {
name: recipe_variadic_with_default_after_default,
text: r#"
text: r"
f a=b +c=d:
"#,
",
tree: (justfile (recipe f (params (a b) +(c d)))),
}