mirror of
https://github.com/NixOS/nix.git
synced 2024-11-21 22:32:26 +00:00
110 lines
2.7 KiB
Bash
110 lines
2.7 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
source ./common.sh
|
|
|
|
TODO_NixOS
|
|
|
|
createFlake1
|
|
|
|
scriptDir="$TEST_ROOT/nonFlake"
|
|
mkdir -p "$scriptDir"
|
|
|
|
cat > "$scriptDir/shebang.sh" <<EOF
|
|
#! $(type -P env) nix
|
|
#! nix --offline shell
|
|
#! nix flake1#fooScript
|
|
#! nix --no-write-lock-file --command bash
|
|
set -ex
|
|
foo
|
|
echo "\$@"
|
|
EOF
|
|
chmod +x "$scriptDir/shebang.sh"
|
|
|
|
# this also tests a fairly trivial double backtick quoted string, ``--command``
|
|
cat > "$scriptDir/shebang-comments.sh" <<EOF
|
|
#! $(type -P env) nix
|
|
# some comments
|
|
# some comments
|
|
# some comments
|
|
#! nix --offline shell
|
|
#! nix flake1#fooScript
|
|
#! nix --no-write-lock-file ``--command`` bash
|
|
foo
|
|
EOF
|
|
chmod +x "$scriptDir/shebang-comments.sh"
|
|
|
|
cat > "$scriptDir/shebang-different-comments.sh" <<EOF
|
|
#! $(type -P env) nix
|
|
# some comments
|
|
// some comments
|
|
/* some comments
|
|
* some comments
|
|
\ some comments
|
|
% some comments
|
|
@ some comments
|
|
-- some comments
|
|
(* some comments
|
|
#! nix --offline shell
|
|
#! nix flake1#fooScript
|
|
#! nix --no-write-lock-file --command cat
|
|
foo
|
|
EOF
|
|
chmod +x "$scriptDir/shebang-different-comments.sh"
|
|
|
|
cat > "$scriptDir/shebang-reject.sh" <<EOF
|
|
#! $(type -P env) nix
|
|
# some comments
|
|
# some comments
|
|
# some comments
|
|
#! nix --offline shell *
|
|
#! nix flake1#fooScript
|
|
#! nix --no-write-lock-file --command bash
|
|
foo
|
|
EOF
|
|
chmod +x "$scriptDir/shebang-reject.sh"
|
|
|
|
cat > "$scriptDir/shebang-inline-expr.sh" <<EOF
|
|
#! $(type -P env) nix
|
|
EOF
|
|
cat >> "$scriptDir/shebang-inline-expr.sh" <<"EOF"
|
|
#! nix --offline shell
|
|
#! nix --impure --expr ``
|
|
#! nix let flake = (builtins.getFlake (toString ../flake1)).packages;
|
|
#! nix fooScript = flake.${builtins.currentSystem}.fooScript;
|
|
#! nix /* just a comment !@#$%^&*()__+ # */
|
|
#! nix in fooScript
|
|
#! nix ``
|
|
#! nix --no-write-lock-file --command bash
|
|
set -ex
|
|
foo
|
|
echo "$@"
|
|
EOF
|
|
chmod +x "$scriptDir/shebang-inline-expr.sh"
|
|
|
|
cat > "$scriptDir/fooScript.nix" <<"EOF"
|
|
let flake = (builtins.getFlake (toString ../flake1)).packages;
|
|
fooScript = flake.${builtins.currentSystem}.fooScript;
|
|
in fooScript
|
|
EOF
|
|
|
|
cat > "$scriptDir/shebang-file.sh" <<EOF
|
|
#! $(type -P env) nix
|
|
EOF
|
|
cat >> "$scriptDir/shebang-file.sh" <<"EOF"
|
|
#! nix --offline shell
|
|
#! nix --impure --file ./fooScript.nix
|
|
#! nix --no-write-lock-file --command bash
|
|
set -ex
|
|
foo
|
|
echo "$@"
|
|
EOF
|
|
chmod +x "$scriptDir/shebang-file.sh"
|
|
|
|
[[ $("$scriptDir/shebang.sh") = "foo" ]]
|
|
[[ $("$scriptDir/shebang.sh" "bar") = "foo"$'\n'"bar" ]]
|
|
[[ $("$scriptDir/shebang-comments.sh" ) = "foo" ]]
|
|
[[ "$("$scriptDir/shebang-different-comments.sh")" = "$(cat "$scriptDir/shebang-different-comments.sh")" ]]
|
|
[[ $("$scriptDir/shebang-inline-expr.sh" baz) = "foo"$'\n'"baz" ]]
|
|
[[ $("$scriptDir/shebang-file.sh" baz) = "foo"$'\n'"baz" ]]
|
|
expect 1 "$scriptDir/shebang-reject.sh" 2>&1 | grepQuiet -F 'error: unsupported unquoted character in nix shebang: *. Use double backticks to escape?'
|