2017-01-01 16:45:51 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
|
2021-05-20 11:55:00 +00:00
|
|
|
if [[ -n ${CONTENT_ADDRESSED:-} ]]; then
|
2021-11-26 08:56:48 +00:00
|
|
|
shellDotNix="$PWD/ca-shell.nix"
|
2021-06-11 11:31:19 +00:00
|
|
|
else
|
2021-11-26 08:56:48 +00:00
|
|
|
shellDotNix="$PWD/shell.nix"
|
2021-05-20 11:55:00 +00:00
|
|
|
fi
|
|
|
|
|
2021-11-26 08:56:48 +00:00
|
|
|
export NIX_PATH=nixpkgs="$shellDotNix"
|
|
|
|
|
2017-01-01 16:45:51 +00:00
|
|
|
# Test nix-shell -A
|
|
|
|
export IMPURE_VAR=foo
|
2018-08-02 01:28:49 +00:00
|
|
|
export SELECTED_IMPURE_VAR=baz
|
2021-11-26 08:56:48 +00:00
|
|
|
|
|
|
|
output=$(nix-shell --pure "$shellDotNix" -A shellDrv --run \
|
2019-10-27 08:34:33 +00:00
|
|
|
'echo "$IMPURE_VAR - $VAR_FROM_STDENV_SETUP - $VAR_FROM_NIX - $TEST_inNixShell"')
|
2017-01-01 16:45:51 +00:00
|
|
|
|
2019-10-27 08:34:33 +00:00
|
|
|
[ "$output" = " - foo - bar - true" ]
|
2017-01-01 16:45:51 +00:00
|
|
|
|
2018-08-02 01:28:49 +00:00
|
|
|
# Test --keep
|
2021-11-26 08:56:48 +00:00
|
|
|
output=$(nix-shell --pure --keep SELECTED_IMPURE_VAR "$shellDotNix" -A shellDrv --run \
|
2018-08-02 01:28:49 +00:00
|
|
|
'echo "$IMPURE_VAR - $VAR_FROM_STDENV_SETUP - $VAR_FROM_NIX - $SELECTED_IMPURE_VAR"')
|
|
|
|
|
|
|
|
[ "$output" = " - foo - bar - baz" ]
|
|
|
|
|
2017-11-24 17:07:29 +00:00
|
|
|
# Test nix-shell on a .drv
|
2021-11-26 08:56:48 +00:00
|
|
|
[[ $(nix-shell --pure $(nix-instantiate "$shellDotNix" -A shellDrv) --run \
|
2019-10-27 08:34:33 +00:00
|
|
|
'echo "$IMPURE_VAR - $VAR_FROM_STDENV_SETUP - $VAR_FROM_NIX - $TEST_inNixShell"') = " - foo - bar - false" ]]
|
2017-11-24 17:07:29 +00:00
|
|
|
|
2021-11-26 08:56:48 +00:00
|
|
|
[[ $(nix-shell --pure $(nix-instantiate "$shellDotNix" -A shellDrv) --run \
|
2019-10-27 08:34:33 +00:00
|
|
|
'echo "$IMPURE_VAR - $VAR_FROM_STDENV_SETUP - $VAR_FROM_NIX - $TEST_inNixShell"') = " - foo - bar - false" ]]
|
2017-11-24 17:07:29 +00:00
|
|
|
|
2018-03-16 22:15:24 +00:00
|
|
|
# Test nix-shell on a .drv symlink
|
|
|
|
|
|
|
|
# Legacy: absolute path and .drv extension required
|
2021-11-26 08:56:48 +00:00
|
|
|
nix-instantiate "$shellDotNix" -A shellDrv --add-root $TEST_ROOT/shell.drv
|
2019-05-07 19:15:45 +00:00
|
|
|
[[ $(nix-shell --pure $TEST_ROOT/shell.drv --run \
|
2018-03-16 22:15:24 +00:00
|
|
|
'echo "$IMPURE_VAR - $VAR_FROM_STDENV_SETUP - $VAR_FROM_NIX"') = " - foo - bar" ]]
|
|
|
|
|
|
|
|
# New behaviour: just needs to resolve to a derivation in the store
|
2021-11-26 08:56:48 +00:00
|
|
|
nix-instantiate "$shellDotNix" -A shellDrv --add-root $TEST_ROOT/shell
|
2019-05-07 19:15:45 +00:00
|
|
|
[[ $(nix-shell --pure $TEST_ROOT/shell --run \
|
2018-03-16 22:15:24 +00:00
|
|
|
'echo "$IMPURE_VAR - $VAR_FROM_STDENV_SETUP - $VAR_FROM_NIX"') = " - foo - bar" ]]
|
|
|
|
|
2017-01-01 16:45:51 +00:00
|
|
|
# Test nix-shell -p
|
2021-11-26 08:56:48 +00:00
|
|
|
output=$(NIX_PATH=nixpkgs="$shellDotNix" nix-shell --pure -p foo bar --run 'echo "$(foo) $(bar)"')
|
2017-01-01 16:45:51 +00:00
|
|
|
[ "$output" = "foo bar" ]
|
|
|
|
|
2021-07-31 14:55:53 +00:00
|
|
|
# Test nix-shell -p --arg x y
|
2021-11-26 08:56:48 +00:00
|
|
|
output=$(NIX_PATH=nixpkgs="$shellDotNix" nix-shell --pure -p foo --argstr fooContents baz --run 'echo "$(foo)"')
|
2021-07-31 14:55:53 +00:00
|
|
|
[ "$output" = "baz" ]
|
|
|
|
|
2017-01-01 16:45:51 +00:00
|
|
|
# Test nix-shell shebang mode
|
2021-05-20 11:55:00 +00:00
|
|
|
sed -e "s|@ENV_PROG@|$(type -P env)|" shell.shebang.sh > $TEST_ROOT/shell.shebang.sh
|
2017-01-01 16:45:51 +00:00
|
|
|
chmod a+rx $TEST_ROOT/shell.shebang.sh
|
|
|
|
|
2017-01-03 10:40:51 +00:00
|
|
|
output=$($TEST_ROOT/shell.shebang.sh abc def)
|
|
|
|
[ "$output" = "foo bar abc def" ]
|
2018-04-08 04:45:28 +00:00
|
|
|
|
2020-11-24 22:12:32 +00:00
|
|
|
# Test nix-shell shebang mode again with metacharacters in the filename.
|
|
|
|
# First word of filename is chosen to not match any file in the test root.
|
2021-05-20 11:55:00 +00:00
|
|
|
sed -e "s|@ENV_PROG@|$(type -P env)|" shell.shebang.sh > $TEST_ROOT/spaced\ \\\'\"shell.shebang.sh
|
2020-11-24 22:12:32 +00:00
|
|
|
chmod a+rx $TEST_ROOT/spaced\ \\\'\"shell.shebang.sh
|
|
|
|
|
|
|
|
output=$($TEST_ROOT/spaced\ \\\'\"shell.shebang.sh abc def)
|
|
|
|
[ "$output" = "foo bar abc def" ]
|
|
|
|
|
2018-04-08 04:45:28 +00:00
|
|
|
# Test nix-shell shebang mode for ruby
|
|
|
|
# This uses a fake interpreter that returns the arguments passed
|
|
|
|
# This, in turn, verifies the `rc` script is valid and the `load()` script (given using `-e`) is as expected.
|
2021-05-20 11:55:00 +00:00
|
|
|
sed -e "s|@SHELL_PROG@|$(type -P nix-shell)|" shell.shebang.rb > $TEST_ROOT/shell.shebang.rb
|
2018-04-08 04:45:28 +00:00
|
|
|
chmod a+rx $TEST_ROOT/shell.shebang.rb
|
|
|
|
|
|
|
|
output=$($TEST_ROOT/shell.shebang.rb abc ruby)
|
2020-11-24 22:12:32 +00:00
|
|
|
[ "$output" = '-e load(ARGV.shift) -- '"$TEST_ROOT"'/shell.shebang.rb abc ruby' ]
|
|
|
|
|
|
|
|
# Test nix-shell shebang mode for ruby again with metacharacters in the filename.
|
|
|
|
# Note: fake interpreter only space-separates args without adding escapes to its output.
|
2021-05-20 11:55:00 +00:00
|
|
|
sed -e "s|@SHELL_PROG@|$(type -P nix-shell)|" shell.shebang.rb > $TEST_ROOT/spaced\ \\\'\"shell.shebang.rb
|
2020-11-24 22:12:32 +00:00
|
|
|
chmod a+rx $TEST_ROOT/spaced\ \\\'\"shell.shebang.rb
|
|
|
|
|
|
|
|
output=$($TEST_ROOT/spaced\ \\\'\"shell.shebang.rb abc ruby)
|
|
|
|
[ "$output" = '-e load(ARGV.shift) -- '"$TEST_ROOT"'/spaced \'\''"shell.shebang.rb abc ruby' ]
|
2020-07-02 16:32:45 +00:00
|
|
|
|
|
|
|
# Test 'nix develop'.
|
2021-11-26 08:56:48 +00:00
|
|
|
nix develop -f "$shellDotNix" shellDrv -c bash -c '[[ -n $stdenv ]]'
|
2020-11-09 16:57:39 +00:00
|
|
|
|
|
|
|
# Ensure `nix develop -c` preserves stdin
|
2021-11-26 08:56:48 +00:00
|
|
|
echo foo | nix develop -f "$shellDotNix" shellDrv -c cat | grep -q foo
|
2020-07-02 16:32:45 +00:00
|
|
|
|
2020-11-09 16:57:39 +00:00
|
|
|
# Ensure `nix develop -c` actually executes the command if stdout isn't a terminal
|
2021-11-26 08:56:48 +00:00
|
|
|
nix develop -f "$shellDotNix" shellDrv -c echo foo |& grep -q foo
|
2020-11-09 16:57:39 +00:00
|
|
|
|
2020-07-02 16:32:45 +00:00
|
|
|
# Test 'nix print-dev-env'.
|
2021-11-26 08:56:48 +00:00
|
|
|
[[ $(nix print-dev-env -f "$shellDotNix" shellDrv --json | jq -r .variables.arr1.value[2]) = '3 4' ]]
|
2021-07-09 10:10:48 +00:00
|
|
|
|
2021-11-26 08:56:48 +00:00
|
|
|
source <(nix print-dev-env -f "$shellDotNix" shellDrv)
|
2020-07-02 16:32:45 +00:00
|
|
|
[[ -n $stdenv ]]
|
2021-07-08 15:12:01 +00:00
|
|
|
[[ ${arr1[2]} = "3 4" ]]
|
2021-07-08 23:16:55 +00:00
|
|
|
[[ ${arr2[1]} = $'\n' ]]
|
|
|
|
[[ ${arr2[2]} = $'x\ny' ]]
|
2021-07-08 23:17:32 +00:00
|
|
|
[[ $(fun) = blabla ]]
|