2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix --- Functional package management for GNU
|
2013-01-07 16:54:54 -05:00
|
|
|
# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2012-10-31 20:46:15 -04:00
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# This file is part of GNU Guix.
|
2012-10-31 20:46:15 -04:00
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix is free software; you can redistribute it and/or modify it
|
2012-10-31 20:46:15 -04:00
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
2013-01-05 18:47:50 -05:00
|
|
|
# GNU Guix is distributed in the hope that it will be useful, but
|
2012-10-31 20:46:15 -04:00
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2013-01-05 18:47:50 -05:00
|
|
|
# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-10-31 20:46:15 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# Test the `guix-package' command-line utility.
|
|
|
|
#
|
|
|
|
|
|
|
|
guix-package --version
|
|
|
|
|
2013-01-17 16:20:42 -05:00
|
|
|
readlink_base ()
|
|
|
|
{
|
|
|
|
basename `readlink "$1"`
|
|
|
|
}
|
|
|
|
|
2012-10-31 20:46:15 -04:00
|
|
|
profile="t-profile-$$"
|
|
|
|
rm -f "$profile"
|
|
|
|
|
2013-01-14 17:44:58 -05:00
|
|
|
trap 'rm "$profile" "$profile-"[0-9]* ; rm -rf t-home-'"$$" EXIT
|
2012-12-11 18:10:32 -05:00
|
|
|
|
2013-01-17 19:06:24 -05:00
|
|
|
boot_guile="`guix-build -e '(@ (gnu packages bootstrap) %bootstrap-guile)'`"
|
2013-01-14 17:44:58 -05:00
|
|
|
|
|
|
|
guix-package --bootstrap -p "$profile" -i "$boot_guile"
|
2012-10-31 20:46:15 -04:00
|
|
|
test -L "$profile" && test -L "$profile-1-link"
|
|
|
|
test -f "$profile/bin/guile"
|
|
|
|
|
2012-12-11 18:01:17 -05:00
|
|
|
# Installing the same package a second time does nothing.
|
2013-01-17 16:20:42 -05:00
|
|
|
guix-package --bootstrap -p "$profile" -i "$boot_guile"
|
2012-12-11 18:01:17 -05:00
|
|
|
test -L "$profile" && test -L "$profile-1-link"
|
|
|
|
! test -f "$profile-2-link"
|
|
|
|
test -f "$profile/bin/guile"
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
# Check whether we have network access.
|
|
|
|
if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
|
|
|
|
then
|
2013-01-17 19:06:24 -05:00
|
|
|
boot_make="`guix-build -e '(@@ (gnu packages base) gnu-make-boot0)'`"
|
2013-01-17 16:20:42 -05:00
|
|
|
guix-package --bootstrap -p "$profile" -i "$boot_make"
|
2012-12-13 16:06:45 -05:00
|
|
|
test -L "$profile-2-link"
|
|
|
|
test -f "$profile/bin/make" && test -f "$profile/bin/guile"
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2012-11-19 16:39:45 -05:00
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
# Check whether `--list-installed' works.
|
|
|
|
# XXX: Change the tests when `--install' properly extracts the package
|
|
|
|
# name and version string.
|
|
|
|
installed="`guix-package -p "$profile" --list-installed | cut -f1 | xargs echo | sort`"
|
|
|
|
case "x$installed" in
|
|
|
|
"guile-bootstrap make-boot0")
|
|
|
|
true;;
|
|
|
|
"make-boot0 guile-bootstrap")
|
|
|
|
true;;
|
|
|
|
"*")
|
|
|
|
false;;
|
|
|
|
esac
|
2012-11-19 16:39:45 -05:00
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
test "`guix-package -p "$profile" -I 'g.*e' | cut -f1`" = "guile-bootstrap"
|
2012-11-19 16:39:45 -05:00
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
# Remove a package.
|
2013-01-07 16:54:54 -05:00
|
|
|
guix-package --bootstrap -p "$profile" -r "guile-bootstrap"
|
2012-12-13 16:06:45 -05:00
|
|
|
test -L "$profile-3-link"
|
|
|
|
test -f "$profile/bin/make" && ! test -f "$profile/bin/guile"
|
2013-01-17 16:20:42 -05:00
|
|
|
|
|
|
|
# Roll back.
|
|
|
|
guix-package --roll-back -p "$profile"
|
|
|
|
test "`readlink_base "$profile"`" = "$profile-2-link"
|
|
|
|
test -x "$profile/bin/guile" && test -x "$profile/bin/make"
|
|
|
|
guix-package --roll-back -p "$profile"
|
|
|
|
test "`readlink_base "$profile"`" = "$profile-1-link"
|
|
|
|
test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
|
|
|
|
|
2013-01-27 11:18:55 -05:00
|
|
|
# Move to the empty profile.
|
|
|
|
for i in `seq 1 3`
|
|
|
|
do
|
|
|
|
guix-package --bootstrap --roll-back -p "$profile"
|
|
|
|
! test -f "$profile/bin"
|
|
|
|
! test -f "$profile/lib"
|
|
|
|
test "`readlink_base "$profile"`" = "$profile-0-link"
|
|
|
|
done
|
2013-01-17 16:20:42 -05:00
|
|
|
|
2013-01-27 11:58:46 -05:00
|
|
|
# Reinstall after roll-back to the empty profile.
|
2013-01-17 16:20:42 -05:00
|
|
|
guix-package --bootstrap -p "$profile" -i "$boot_make"
|
2013-01-27 11:58:46 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-1-link"
|
|
|
|
test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
|
2013-01-17 16:20:42 -05:00
|
|
|
|
2013-01-27 11:58:46 -05:00
|
|
|
# Roll-back to generation 0, and install---all at once.
|
2013-01-17 16:20:42 -05:00
|
|
|
guix-package --bootstrap -p "$profile" --roll-back -i "$boot_guile"
|
2013-01-27 11:58:46 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-1-link"
|
|
|
|
test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
|
|
|
|
|
|
|
|
# Install Make.
|
|
|
|
guix-package --bootstrap -p "$profile" -i "$boot_make"
|
|
|
|
test "`readlink_base "$profile"`" = "$profile-2-link"
|
2013-01-17 16:20:42 -05:00
|
|
|
test -x "$profile/bin/guile" && test -x "$profile/bin/make"
|
2013-01-17 16:41:47 -05:00
|
|
|
|
|
|
|
# Make a "hole" in the list of generations, and make sure we can
|
|
|
|
# roll back "over" it.
|
2013-01-27 11:58:46 -05:00
|
|
|
rm "$profile-1-link"
|
2013-01-17 16:41:47 -05:00
|
|
|
guix-package --bootstrap -p "$profile" --roll-back
|
2013-01-27 11:58:46 -05:00
|
|
|
test "`readlink_base "$profile"`" = "$profile-0-link"
|
2012-12-13 16:06:45 -05:00
|
|
|
fi
|
2012-10-31 20:46:15 -04:00
|
|
|
|
2012-11-07 13:14:22 -05:00
|
|
|
# Make sure the `:' syntax works.
|
2013-01-14 17:33:14 -05:00
|
|
|
guix-package --bootstrap -i "binutils:lib" -p "$profile" -n
|
2012-11-07 13:14:22 -05:00
|
|
|
|
2012-11-19 17:02:59 -05:00
|
|
|
# Check whether `--list-available' returns something sensible.
|
|
|
|
guix-package -A 'gui.*e' | grep guile
|
|
|
|
|
2013-01-22 16:35:16 -05:00
|
|
|
#
|
2013-01-14 17:44:58 -05:00
|
|
|
# Try with the default profile.
|
2013-01-22 16:35:16 -05:00
|
|
|
#
|
2013-01-14 17:44:58 -05:00
|
|
|
|
|
|
|
XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
|
|
|
|
export XDG_CACHE_HOME
|
|
|
|
HOME="t-home-$$"
|
|
|
|
export HOME
|
|
|
|
|
|
|
|
mkdir -p "$HOME"
|
|
|
|
|
|
|
|
guix-package --bootstrap -i "$boot_guile"
|
|
|
|
test -L "$HOME/.guix-profile"
|
|
|
|
test -f "$HOME/.guix-profile/bin/guile"
|
2013-01-17 16:20:42 -05:00
|
|
|
|
2013-01-22 16:35:16 -05:00
|
|
|
if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
|
|
|
|
then
|
|
|
|
guix-package --bootstrap -i "$boot_make"
|
|
|
|
test -f "$HOME/.guix-profile/bin/make"
|
|
|
|
first_environment="`cd $HOME/.guix-profile ; pwd`"
|
|
|
|
|
|
|
|
guix-package --bootstrap --roll-back
|
|
|
|
test -f "$HOME/.guix-profile/bin/guile"
|
|
|
|
! test -f "$HOME/.guix-profile/bin/make"
|
|
|
|
test "`cd $HOME/.guix-profile ; pwd`" = "$first_environment"
|
|
|
|
fi
|
|
|
|
|
2013-01-27 11:18:55 -05:00
|
|
|
# Move to the empty profile.
|
|
|
|
default_profile="`readlink "$HOME/.guix-profile"`"
|
|
|
|
for i in `seq 1 3`
|
|
|
|
do
|
|
|
|
guix-package --bootstrap --roll-back
|
|
|
|
! test -f "$HOME/.guix-profile/bin"
|
|
|
|
! test -f "$HOME/.guix-profile/lib"
|
|
|
|
test "`readlink "$default_profile"`" = "$default_profile-0-link"
|
|
|
|
done
|
2013-01-24 16:00:54 -05:00
|
|
|
|
|
|
|
# Extraneous argument.
|
|
|
|
! guix-package install foo-bar
|