gnu: vm: Add a few packages to the default profile.
[jackhill/guix/guix.git] / tests / guix-package.sh
CommitLineData
233e7676 1# GNU Guix --- Functional package management for GNU
cc57f25d 2# Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
acc08466 3# Copyright © 2013 Nikita Karetnikov <nikita@karetnikov.org>
0afdc485 4#
233e7676 5# This file is part of GNU Guix.
0afdc485 6#
233e7676 7# GNU Guix is free software; you can redistribute it and/or modify it
0afdc485
LC
8# under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 3 of the License, or (at
10# your option) any later version.
11#
233e7676 12# GNU Guix is distributed in the hope that it will be useful, but
0afdc485
LC
13# WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
233e7676 18# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
0afdc485
LC
19
20#
e49951eb 21# Test the `guix package' command-line utility.
0afdc485
LC
22#
23
e49951eb 24guix package --version
0afdc485 25
24e262f0
LC
26readlink_base ()
27{
28 basename `readlink "$1"`
29}
30
0afdc485
LC
31profile="t-profile-$$"
32rm -f "$profile"
33
0ec1af59 34trap 'rm "$profile" "$profile-"[0-9]* ; rm -rf t-home-'"$$" EXIT
7a6548cb 35
5d4b411f
LC
36# Use `-e' with a non-package expression.
37if guix package --bootstrap -e +;
38then false; else true; fi
39
e49951eb 40guix package --bootstrap -p "$profile" -i guile-bootstrap
0afdc485
LC
41test -L "$profile" && test -L "$profile-1-link"
42test -f "$profile/bin/guile"
43
1c67d639 44# Installing the same package a second time does nothing.
e49951eb 45guix package --bootstrap -p "$profile" -i guile-bootstrap
1c67d639
LC
46test -L "$profile" && test -L "$profile-1-link"
47! test -f "$profile-2-link"
48test -f "$profile/bin/guile"
0afdc485 49
5924080d
LC
50# No search path env. var. here.
51guix package --search-paths -p "$profile"
52test "`guix package --search-paths -p "$profile" | wc -l`" = 0
53
ad1ebab3
LC
54# Check whether we have network access.
55if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
56then
5d4b411f 57 boot_make="(@@ (gnu packages base) gnu-make-boot0)"
81b66f85 58 boot_make_drv="`guix build -e "$boot_make" | grep -v -e -debug`"
5d4b411f 59 guix package --bootstrap -p "$profile" -i "$boot_make_drv"
ad1ebab3
LC
60 test -L "$profile-2-link"
61 test -f "$profile/bin/make" && test -f "$profile/bin/guile"
0afdc485 62
733b4130 63
ad1ebab3
LC
64 # Check whether `--list-installed' works.
65 # XXX: Change the tests when `--install' properly extracts the package
66 # name and version string.
e49951eb 67 installed="`guix package -p "$profile" --list-installed | cut -f1 | xargs echo | sort`"
ad1ebab3 68 case "x$installed" in
6c1cd80d
NK
69 "guile-bootstrap make-boot0")
70 true;;
71 "make-boot0 guile-bootstrap")
72 true;;
73 "*")
ad1ebab3
LC
74 false;;
75 esac
733b4130 76
e49951eb 77 test "`guix package -p "$profile" -I 'g.*e' | cut -f1`" = "guile-bootstrap"
733b4130 78
acc08466 79 # Search.
6c1cd80d
NK
80 test "`guix package -s "An example GNU package" | grep ^name:`" = \
81 "name: hello"
aad5af9f 82 test -z "`guix package -s "n0t4r341p4ck4g3"`"
acc08466 83
2cd09108
NK
84 # List generations.
85 test "`guix package -p "$profile" -l | cut -f1 | grep guile | head -n1`" \
86 = " guile-bootstrap"
87
0ab212b9
NK
88 # Exit with 1 when a generation does not exist.
89 if guix package -p "$profile" --list-generations=42;
90 then false; else true; fi
91
ad1ebab3 92 # Remove a package.
e49951eb 93 guix package --bootstrap -p "$profile" -r "guile-bootstrap"
ad1ebab3
LC
94 test -L "$profile-3-link"
95 test -f "$profile/bin/make" && ! test -f "$profile/bin/guile"
24e262f0
LC
96
97 # Roll back.
e49951eb 98 guix package --roll-back -p "$profile"
24e262f0
LC
99 test "`readlink_base "$profile"`" = "$profile-2-link"
100 test -x "$profile/bin/guile" && test -x "$profile/bin/make"
e49951eb 101 guix package --roll-back -p "$profile"
24e262f0
LC
102 test "`readlink_base "$profile"`" = "$profile-1-link"
103 test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
104
d9307267
LC
105 # Move to the empty profile.
106 for i in `seq 1 3`
107 do
6c1cd80d
NK
108 guix package --bootstrap --roll-back -p "$profile"
109 ! test -f "$profile/bin"
110 ! test -f "$profile/lib"
111 test "`readlink_base "$profile"`" = "$profile-0-link"
d9307267 112 done
24e262f0 113
4b2bc804
NK
114 # Test that '--list-generations' does not output the zeroth generation.
115 test -z "`guix package -p "$profile" -l 0`"
116
82fe08ed 117 # Reinstall after roll-back to the empty profile.
5d4b411f 118 guix package --bootstrap -p "$profile" -e "$boot_make"
82fe08ed
LC
119 test "`readlink_base "$profile"`" = "$profile-1-link"
120 test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
24e262f0 121
9ac9360d
NK
122 # Check that the first generation is the current one.
123 test "`guix package -p "$profile" -l 1 | cut -f3 | head -n1`" = "(current)"
124
82fe08ed 125 # Roll-back to generation 0, and install---all at once.
e49951eb 126 guix package --bootstrap -p "$profile" --roll-back -i guile-bootstrap
82fe08ed
LC
127 test "`readlink_base "$profile"`" = "$profile-1-link"
128 test -x "$profile/bin/guile" && ! test -x "$profile/bin/make"
129
130 # Install Make.
5d4b411f 131 guix package --bootstrap -p "$profile" -e "$boot_make"
82fe08ed 132 test "`readlink_base "$profile"`" = "$profile-2-link"
24e262f0 133 test -x "$profile/bin/guile" && test -x "$profile/bin/make"
741c70c6 134 grep "`guix build -e "$boot_make"`" "$profile/manifest"
9241172c
LC
135
136 # Make a "hole" in the list of generations, and make sure we can
137 # roll back "over" it.
82fe08ed 138 rm "$profile-1-link"
e49951eb 139 guix package --bootstrap -p "$profile" --roll-back
82fe08ed 140 test "`readlink_base "$profile"`" = "$profile-0-link"
5924080d
LC
141
142 # Make sure LIBRARY_PATH gets listed by `--search-paths'.
143 guix package --bootstrap -p "$profile" -i guile-bootstrap -i gcc-bootstrap
144 guix package --search-paths -p "$profile" | grep LIBRARY_PATH
b7884ca3
NK
145
146 # Delete the third generation and check that it was actually deleted.
147 guix package -p "$profile" --delete-generations=3
148 test -z "`guix package -p "$profile" -l 3`"
149
150 # Exit with 1 when a generation does not exist.
151 if guix package -p "$profile" --delete-generations=42;
152 then false; else true; fi
153
154 # Exit with 0 when trying to delete the zeroth generation.
155 guix package -p "$profile" --delete-generations=0
ad1ebab3 156fi
0afdc485 157
9518856b 158# Make sure the `:' syntax works.
e49951eb 159guix package --bootstrap -i "binutils:lib" -p "$profile" -n
9518856b 160
aa92cf98 161# Make sure nonexistent outputs are reported.
e49951eb
MW
162guix package --bootstrap -i "guile-bootstrap:out" -p "$profile" -n
163if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile" -n;
aa92cf98 164then false; else true; fi
e49951eb 165if guix package --bootstrap -i "guile-bootstrap:does-not-exist" -p "$profile";
aa92cf98
LC
166then false; else true; fi
167
64fc89b6 168# Check whether `--list-available' returns something sensible.
e49951eb 169guix package -A 'gui.*e' | grep guile
64fc89b6 170
67668155 171#
0ec1af59 172# Try with the default profile.
67668155 173#
0ec1af59
LC
174
175XDG_CACHE_HOME="${XDG_CACHE_HOME:-$HOME/.cache}"
176export XDG_CACHE_HOME
177HOME="t-home-$$"
178export HOME
179
180mkdir -p "$HOME"
181
e49951eb 182guix package --bootstrap -i guile-bootstrap
0ec1af59
LC
183test -L "$HOME/.guix-profile"
184test -f "$HOME/.guix-profile/bin/guile"
24e262f0 185
67668155
LC
186if guile -c '(getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)' 2> /dev/null
187then
5d4b411f 188 guix package --bootstrap -e "$boot_make"
67668155
LC
189 test -f "$HOME/.guix-profile/bin/make"
190 first_environment="`cd $HOME/.guix-profile ; pwd`"
191
e49951eb 192 guix package --bootstrap --roll-back
67668155
LC
193 test -f "$HOME/.guix-profile/bin/guile"
194 ! test -f "$HOME/.guix-profile/bin/make"
195 test "`cd $HOME/.guix-profile ; pwd`" = "$first_environment"
196fi
197
d9307267
LC
198# Move to the empty profile.
199default_profile="`readlink "$HOME/.guix-profile"`"
200for i in `seq 1 3`
201do
e49951eb 202 guix package --bootstrap --roll-back
d9307267
LC
203 ! test -f "$HOME/.guix-profile/bin"
204 ! test -f "$HOME/.guix-profile/lib"
205 test "`readlink "$default_profile"`" = "$default_profile-0-link"
206done
3b9c0020
LC
207
208# Extraneous argument.
e49951eb 209if guix package install foo-bar;
aa92cf98 210then false; else true; fi