just 1.50.0

🤖 Just a command runner
Documentation
use super::*;

#[test]
fn linewise() {
  Test::new()
    .arg("foo")
    .arg("hello")
    .arg("goodbye")
    .justfile(
      r#"
        set positional-arguments

        foo bar baz:
          echo $0
          echo $1
          echo $2
          echo "$@"
      "#,
    )
    .stdout(
      "
        foo
        hello
        goodbye
        hello goodbye
      ",
    )
    .stderr(
      r#"
        echo $0
        echo $1
        echo $2
        echo "$@"
      "#,
    )
    .success();
}

#[test]
fn linewise_with_attribute() {
  Test::new()
    .arg("foo")
    .arg("hello")
    .arg("goodbye")
    .justfile(
      r#"
        [positional-arguments]
        foo bar baz:
          echo $0
          echo $1
          echo $2
          echo "$@"
      "#,
    )
    .stdout(
      "
        foo
        hello
        goodbye
        hello goodbye
      ",
    )
    .stderr(
      r#"
        echo $0
        echo $1
        echo $2
        echo "$@"
      "#,
    )
    .success();
}

#[test]
fn variadic_linewise() {
  Test::new()
    .args(["foo", "a", "b", "c"])
    .justfile(
      r#"
        set positional-arguments

        foo *bar:
          echo $1
          echo "$@"
      "#,
    )
    .stdout("a\na b c\n")
    .stderr("echo $1\necho \"$@\"\n")
    .success();
}

#[test]
fn shebang() {
  Test::new()
    .arg("foo")
    .arg("hello")
    .justfile(
      "
        set positional-arguments

        foo bar:
          #!/bin/sh
          echo $1
      ",
    )
    .stdout("hello\n")
    .success();
}

#[test]
fn shebang_with_attribute() {
  Test::new()
    .arg("foo")
    .arg("hello")
    .justfile(
      "
        [positional-arguments]
        foo bar:
          #!/bin/sh
          echo $1
      ",
    )
    .stdout("hello\n")
    .success();
}

#[test]
fn variadic_shebang() {
  Test::new()
    .arg("foo")
    .arg("a")
    .arg("b")
    .arg("c")
    .justfile(
      r#"
        set positional-arguments

        foo *bar:
          #!/bin/sh
          echo $1
          echo "$@"
      "#,
    )
    .stdout("a\na b c\n")
    .success();
}

#[test]
fn default_arguments() {
  Test::new()
    .justfile(
      "
        set positional-arguments

        foo bar='baz':
          echo $1
      ",
    )
    .stdout("baz\n")
    .stderr("echo $1\n")
    .success();
}

#[test]
fn empty_variadic_is_undefined() {
  Test::new()
    .justfile(
      r#"
        set positional-arguments

        foo *bar:
          if [ -n "${1+1}" ]; then echo defined; else echo undefined; fi
      "#,
    )
    .stdout("undefined\n")
    .stderr("if [ -n \"${1+1}\" ]; then echo defined; else echo undefined; fi\n")
    .success();
}

#[test]
fn variadic_arguments_are_separate() {
  Test::new()
    .arg("foo")
    .arg("a")
    .arg("b")
    .justfile(
      "
        set positional-arguments

        foo *bar:
          echo $1
          echo $2
      ",
    )
    .stdout("a\nb\n")
    .stderr("echo $1\necho $2\n")
    .success();
}