1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 01:51:47 +02:00

tests: Add simple tests for nix-shell

nix-shell -A, -p and -i are lightly tested.
This commit is contained in:
Tuomas Tynkkynen 2017-01-01 18:45:51 +02:00
parent 018f884ffd
commit b501bea25f
4 changed files with 72 additions and 1 deletions

21
tests/nix-shell.sh Normal file
View file

@ -0,0 +1,21 @@
source common.sh
clearStore
# Test nix-shell -A
export IMPURE_VAR=foo
output=$(nix-shell --pure shell.nix -A shellDrv --run \
'echo "$IMPURE_VAR - $VAR_FROM_STDENV_SETUP - $VAR_FROM_NIX"')
[ "$output" = " - foo - bar" ]
# Test nix-shell -p
output=$(NIX_PATH=nixpkgs=shell.nix nix-shell --pure -p foo bar --run 'echo "$(foo) $(bar)"')
[ "$output" = "foo bar" ]
# Test nix-shell shebang mode
sed -e "s|@ENV_PROG@|$(type -p env)|" shell.shebang.sh > $TEST_ROOT/shell.shebang.sh
chmod a+rx $TEST_ROOT/shell.shebang.sh
output=$($TEST_ROOT/shell.shebang.sh)
[ "$output" = "foo bar" ]