services: Add 'lookup-service-types'.
[jackhill/guix/guix.git] / tests / guix-system.sh
CommitLineData
c1202fb1 1# GNU Guix --- Functional package management for GNU
0649321d 2# Copyright © 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
c1202fb1
LC
3#
4# This file is part of GNU Guix.
5#
6# GNU Guix is free software; you can redistribute it and/or modify it
7# under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 3 of the License, or (at
9# your option) any later version.
10#
11# GNU Guix is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19#
9d3994f7 20# Test 'guix system', mostly error reporting.
c1202fb1
LC
21#
22
23set -e
24
25guix system --version
26
27tmpfile="t-guix-system-$$"
28errorfile="t-guix-system-error-$$"
9d3994f7
LC
29
30# Note: This directory is chosen outside $builddir so that relative file name
31# canonicalization doesn't mess up with 'current-source-directory', used by
32# 'local-file' ('load' forces 'relative' for
33# %FILE-PORT-NAME-CANONICALIZATION.)
34tmpdir="${TMPDIR:-/tmp}/t-guix-system-$$"
35mkdir "$tmpdir"
36
37trap 'rm -f "$tmpfile" "$errorfile" "$tmpdir"/*; rmdir "$tmpdir"' EXIT
c1202fb1 38
116244df
LC
39# Reporting of syntax errors.
40
c1202fb1
LC
41cat > "$tmpfile"<<EOF
42;; This is line 1, and the next one is line 2.
43 (operating-system)
44;; The 'T' is at column 3.
45EOF
46
47if guix system vm "$tmpfile" 2> "$errorfile"
48then
49 # This must not succeed.
50 exit 1
51else
52 grep "$tmpfile:2:3:.*missing.* initializers" "$errorfile"
53fi
116244df
LC
54
55
a6e22d84
LC
56cat > "$tmpfile"<<EOF
57;; This is line 1, and the next one is line 2.
58 (operating-system
59;; This is line 3, and there is no closing paren!
60EOF
61
62if guix system vm "$tmpfile" 2> "$errorfile"
63then
64 # This must not succeed.
65 exit 1
66else
67 grep "$tmpfile:4:1: missing closing paren" "$errorfile"
68fi
69
70
2abcc97f
LC
71# Reporting of unbound variables.
72
73cat > "$tmpfile" <<EOF
74(use-modules (gnu)) ; 1
75(use-service-modules networking) ; 2
76
77(operating-system ; 4
78 (host-name "antelope") ; 5
79 (timezone "Europe/Paris") ; 6
80 (locale "en_US.UTF-8") ; 7
81
82 (bootloader (GRUB-config (device "/dev/sdX"))) ; 9
83 (file-systems (cons (file-system
84 (device "root")
85 (title 'label)
86 (mount-point "/")
87 (type "ext4"))
88 %base-file-systems)))
89EOF
90
91if guix system build "$tmpfile" -n 2> "$errorfile"
92then false
93else
13159c68
LC
94 if test "`guile -c '(display (effective-version))'`" = 2.2
95 then
96 # FIXME: With Guile 2.2.0 the error is reported on line 4.
97 # See <http://bugs.gnu.org/26107>.
98 grep "$tmpfile:[49]:.*[Uu]nbound variable.*GRUB-config" "$errorfile"
99 else
100 grep "$tmpfile:9:.*[Uu]nbound variable.*GRUB-config" "$errorfile"
101 fi
2abcc97f
LC
102fi
103
2d2651e7 104OS_BASE='
116244df
LC
105 (host-name "antelope")
106 (timezone "Europe/Paris")
107 (locale "en_US.UTF-8")
108
109 (bootloader (grub-configuration (device "/dev/sdX")))
110 (file-systems (cons (file-system
111 (device "root")
2d2651e7 112 (title (string->symbol "label"))
116244df
LC
113 (mount-point "/")
114 (type "ext4"))
115 %base-file-systems))
2d2651e7 116'
116244df 117
2d2651e7
LC
118# Reporting of duplicate service identifiers.
119
120cat > "$tmpfile" <<EOF
121(use-modules (gnu))
122(use-service-modules networking)
123
124(operating-system
125 $OS_BASE
116244df
LC
126 (services (cons* (dhcp-client-service)
127 (dhcp-client-service) ;twice!
128 %base-services)))
129EOF
130
131if guix system vm "$tmpfile" 2> "$errorfile"
132then
133 # This must not succeed.
134 exit 1
135else
136 grep "service 'networking'.*more than once" "$errorfile"
137fi
0c09a306 138
0190c1c0 139# Reporting unmet shepherd requirements.
2d2651e7
LC
140
141cat > "$tmpfile" <<EOF
0190c1c0 142(use-modules (gnu) (gnu services shepherd))
2d2651e7
LC
143(use-service-modules networking)
144
145(define buggy-service-type
d4053c71 146 (shepherd-service-type
2d2651e7
LC
147 'buggy
148 (lambda _
d4053c71 149 (shepherd-service
2d2651e7
LC
150 (provision '(buggy!))
151 (requirement '(does-not-exist))
152 (start #t)))))
153
154(operating-system
155 $OS_BASE
156 (services (cons (service buggy-service-type #t)
157 %base-services)))
158EOF
159
160if guix system build "$tmpfile" 2> "$errorfile"
161then
162 exit 1
163else
a8492735 164 grep "service 'buggy!'.*'does-not-exist'.*not provided" "$errorfile"
2d2651e7
LC
165fi
166
167# Reporting inconsistent user accounts.
168
0c09a306
LC
169make_user_config ()
170{
171 cat > "$tmpfile" <<EOF
172(use-modules (gnu))
173(use-service-modules networking)
174
175(operating-system
176 (host-name "antelope")
177 (timezone "Europe/Paris")
178 (locale "en_US.UTF-8")
179
180 (bootloader (grub-configuration (device "/dev/sdX")))
181 (file-systems (cons (file-system
182 (device "root")
183 (title 'label)
184 (mount-point "/")
185 (type "ext4"))
186 %base-file-systems))
187 (users (list (user-account
188 (name "dave")
189 (home-directory "/home/dave")
190 (group "$1")
191 (supplementary-groups '("$2"))))))
192EOF
193}
194
195make_user_config "users" "wheel"
196guix system build "$tmpfile" -n # succeeds
197
f3f427c2
LC
198guix system build "$tmpfile" -d # succeeds
199guix system build "$tmpfile" -d | grep '\.drv$'
200
201guix system vm "$tmpfile" -d # succeeds
202guix system vm "$tmpfile" -d | grep '\.drv$'
203
0c09a306
LC
204make_user_config "group-that-does-not-exist" "users"
205if guix system build "$tmpfile" -n 2> "$errorfile"
206then false
207else grep "primary group.*group-that-does-not-exist.*undeclared" "$errorfile"; fi
208
209make_user_config "users" "group-that-does-not-exist"
210if guix system build "$tmpfile" -n 2> "$errorfile"
211then false
212else grep "supplementary group.*group-that-does-not-exist.*undeclared" "$errorfile"; fi
9d3994f7
LC
213
214# Try 'local-file' and relative file name resolution.
215
216cat > "$tmpdir/config.scm"<<EOF
217(use-modules (gnu))
218(use-service-modules networking)
219
220(operating-system
221 $OS_BASE
222 (services (cons (tor-service (local-file "my-torrc"))
223 %base-services)))
224EOF
225
226cat > "$tmpdir/my-torrc"<<EOF
227# This is an example file.
228EOF
229
230# In both cases 'my-torrc' should be properly resolved.
231guix system build "$tmpdir/config.scm" -n
232(cd "$tmpdir"; guix system build "config.scm" -n)
0649321d
LC
233
234# Searching.
235guix system search tor | grep "^name: tor"
236guix system search anonym network | grep "^name: tor"