2006-03-01 12:15:33 +00:00
|
|
|
source common.sh
|
|
|
|
|
2006-09-21 18:54:08 +00:00
|
|
|
clearProfiles
|
2006-02-08 14:32:06 +00:00
|
|
|
|
2007-11-29 16:18:24 +00:00
|
|
|
set -x
|
|
|
|
|
2006-02-08 14:32:06 +00:00
|
|
|
# Query installed: should be empty.
|
2006-03-10 16:14:30 +00:00
|
|
|
test "$($nixenv -p $profiles/test -q '*' | wc -l)" -eq 0
|
2006-02-08 14:32:06 +00:00
|
|
|
|
|
|
|
# Query available: should contain several.
|
2006-03-10 10:24:46 +00:00
|
|
|
test "$($nixenv -p $profiles/test -f ./user-envs.nix -qa '*' | wc -l)" -eq 5
|
2006-02-08 14:32:06 +00:00
|
|
|
|
2006-03-10 16:20:42 +00:00
|
|
|
# Query descriptions.
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -qa '*' --description | grep silly
|
|
|
|
|
2006-02-08 14:32:06 +00:00
|
|
|
# Install "foo-1.0".
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -i foo-1.0
|
|
|
|
|
|
|
|
# Query installed: should contain foo-1.0 now (which should be
|
|
|
|
# executable).
|
2006-03-10 10:24:46 +00:00
|
|
|
test "$($nixenv -p $profiles/test -q '*' | wc -l)" -eq 1
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-1.0
|
2006-02-08 14:32:06 +00:00
|
|
|
test "$($profiles/test/bin/foo)" = "foo-1.0"
|
|
|
|
|
|
|
|
# Store the path of foo-1.0.
|
2006-03-10 10:24:46 +00:00
|
|
|
outPath10=$($nixenv -p $profiles/test -q --out-path --no-name '*' | grep foo-1.0)
|
2006-02-08 14:32:06 +00:00
|
|
|
echo "foo-1.0 = $outPath10"
|
|
|
|
test -n "$outPath10"
|
|
|
|
|
|
|
|
# Install "foo-2.0pre1": should remove foo-1.0.
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -i foo-2.0pre1
|
|
|
|
|
|
|
|
# Query installed: should contain foo-2.0pre1 now.
|
2006-03-10 10:24:46 +00:00
|
|
|
test "$($nixenv -p $profiles/test -q '*' | wc -l)" -eq 1
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-2.0pre1
|
2006-02-08 14:32:06 +00:00
|
|
|
test "$($profiles/test/bin/foo)" = "foo-2.0pre1"
|
|
|
|
|
|
|
|
# Upgrade "foo": should install foo-2.0.
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -u foo
|
|
|
|
|
|
|
|
# Query installed: should contain foo-2.0 now.
|
2006-03-10 10:24:46 +00:00
|
|
|
test "$($nixenv -p $profiles/test -q '*' | wc -l)" -eq 1
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-2.0
|
2006-02-08 14:32:06 +00:00
|
|
|
test "$($profiles/test/bin/foo)" = "foo-2.0"
|
|
|
|
|
|
|
|
# Store the path of foo-2.0.
|
2006-03-10 10:24:46 +00:00
|
|
|
outPath20=$($nixenv -p $profiles/test -q --out-path --no-name '*' | grep foo-2.0)
|
2006-02-08 14:32:06 +00:00
|
|
|
test -n "$outPath20"
|
|
|
|
|
|
|
|
# Install bar-0.1, uninstall foo.
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -i bar-0.1
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -e foo
|
|
|
|
|
|
|
|
# Query installed: should only contain bar-0.1 now.
|
2006-03-10 10:24:46 +00:00
|
|
|
if $nixenv -p $profiles/test -q '*' | grep -q foo; then false; fi
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q bar
|
2006-02-08 14:32:06 +00:00
|
|
|
|
|
|
|
# Rollback: should bring "foo" back.
|
|
|
|
$nixenv -p $profiles/test --rollback
|
2006-03-10 10:24:46 +00:00
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-2.0
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q bar
|
2006-02-08 14:32:06 +00:00
|
|
|
|
|
|
|
# Rollback again: should remove "bar".
|
|
|
|
$nixenv -p $profiles/test --rollback
|
2006-03-10 10:24:46 +00:00
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-2.0
|
|
|
|
if $nixenv -p $profiles/test -q '*' | grep -q bar; then false; fi
|
2006-02-08 14:32:06 +00:00
|
|
|
|
|
|
|
# Count generations.
|
2008-06-15 15:10:03 +00:00
|
|
|
$nixenv -p $profiles/test --list-generations
|
2006-02-08 14:32:06 +00:00
|
|
|
test "$($nixenv -p $profiles/test --list-generations | wc -l)" -eq 5
|
|
|
|
|
|
|
|
# Install foo-1.0, now using its store path.
|
|
|
|
echo $outPath10
|
|
|
|
$nixenv -p $profiles/test -i "$outPath10"
|
2006-03-10 10:24:46 +00:00
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-1.0
|
2006-02-08 14:32:06 +00:00
|
|
|
|
2007-11-29 16:18:24 +00:00
|
|
|
# Uninstall foo-1.0, using a symlink to its store path.
|
|
|
|
ln -sfn $outPath10/bin/foo $TEST_ROOT/symlink
|
|
|
|
$nixenv -p $profiles/test -e $TEST_ROOT/symlink
|
|
|
|
if $nixenv -p $profiles/test -q '*' | grep -q foo; then false; fi
|
|
|
|
|
|
|
|
# Install foo-1.0, now using a symlink to its store path.
|
|
|
|
$nixenv -p $profiles/test -i $TEST_ROOT/symlink
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo
|
|
|
|
|
2006-02-08 14:32:06 +00:00
|
|
|
# Delete all old generations.
|
|
|
|
$nixenv -p $profiles/test --delete-generations old
|
|
|
|
|
|
|
|
# Run the garbage collector. This should get rid of foo-2.0 but not
|
|
|
|
# foo-1.0.
|
|
|
|
$NIX_BIN_DIR/nix-collect-garbage
|
|
|
|
test -e "$outPath10"
|
|
|
|
if test -e "$outPath20"; then false; fi
|
2006-02-17 17:03:19 +00:00
|
|
|
|
|
|
|
# Uninstall everything
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -e '*'
|
2006-03-10 10:24:46 +00:00
|
|
|
test "$($nixenv -p $profiles/test -q '*' | wc -l)" -eq 0
|
2006-02-17 17:03:19 +00:00
|
|
|
|
|
|
|
# Installing "foo" should only install the newest foo.
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -i foo
|
2006-03-10 10:24:46 +00:00
|
|
|
test "$($nixenv -p $profiles/test -q '*' | grep foo- | wc -l)" -eq 1
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-2.0
|
2006-02-17 17:03:19 +00:00
|
|
|
|
2006-02-17 17:05:34 +00:00
|
|
|
# On the other hand, this should install both (and should fail due to
|
|
|
|
# a collision).
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -e '*'
|
|
|
|
if $nixenv -p $profiles/test -f ./user-envs.nix -i foo-1.0 foo-2.0; then false; fi
|
|
|
|
|
2006-02-17 17:03:19 +00:00
|
|
|
# Installing "*" should install one foo and one bar.
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -e '*'
|
|
|
|
$nixenv -p $profiles/test -f ./user-envs.nix -i '*'
|
2006-03-10 10:24:46 +00:00
|
|
|
test "$($nixenv -p $profiles/test -q '*' | wc -l)" -eq 2
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q foo-2.0
|
|
|
|
$nixenv -p $profiles/test -q '*' | grep -q bar-0.1.1
|