Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / tests / guix-build.sh
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013, 2014, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
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 #
20 # Test the `guix build' command-line utility.
21 #
22
23 guix build --version
24
25 # Should fail.
26 if guix build -e +;
27 then false; else true; fi
28
29 # Source-less packages are accepted; they just return nothing.
30 guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S
31 test "`guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S`" = ""
32
33 # Should pass.
34 guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)' | \
35 grep -e '-guile-'
36 guix build hello -d | \
37 grep -e '-hello-[0-9\.]\+\.drv$'
38
39 # Passing a URI.
40 GUIX_DAEMON_SOCKET="file://$GUIX_STATE_DIRECTORY/daemon-socket/socket" \
41 guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
42
43 ( if GUIX_DAEMON_SOCKET="weird://uri" \
44 guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'; \
45 then exit 1; fi )
46
47 # Check --sources option with its arguments
48 module_dir="t-guix-build-$$"
49 mkdir "$module_dir"
50 trap "rm -rf $module_dir" EXIT
51
52 cat > "$module_dir/foo.scm"<<EOF
53 (define-module (foo)
54 #:use-module (guix tests)
55 #:use-module (guix packages)
56 #:use-module (guix download)
57 #:use-module (guix build-system trivial))
58
59 (define-public foo
60 (package
61 (name "foo")
62 (version "42")
63 (source (origin
64 (method url-fetch)
65 (uri "http://www.example.com/foo.tar.gz")
66 (sha256
67 (base32
68 "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"))))
69 (build-system trivial-build-system)
70 (inputs
71 (quasiquote (("bar" ,bar))))
72 (home-page "www.example.com")
73 (synopsis "Dummy package")
74 (description "foo is a dummy package for testing.")
75 (license #f)))
76
77 (define-public bar
78 (package
79 (name "bar")
80 (version "9001")
81 (source (origin
82 (method url-fetch)
83 (uri "http://www.example.com/bar.tar.gz")
84 (sha256
85 (base32
86 "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"))))
87 (build-system trivial-build-system)
88 (inputs
89 (quasiquote
90 (("data" ,(origin
91 (method url-fetch)
92 (uri "http://www.example.com/bar.dat")
93 (sha256
94 (base32
95 "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz")))))))
96 (home-page "www.example.com")
97 (synopsis "Dummy package")
98 (description "bar is a dummy package for testing.")
99 (license #f)))
100
101 (define-public baz
102 (dummy-package "baz" (replacement foo)))
103
104 (define-public superseded
105 (deprecated-package "superseded" bar))
106
107 EOF
108
109 GUIX_PACKAGE_PATH="$module_dir"
110 export GUIX_PACKAGE_PATH
111
112 # foo.tar.gz
113 guix build -d -S foo
114 guix build -d -S foo | grep -e 'foo\.tar\.gz'
115
116 # 'baz' has a replacement so we should be getting the replacement's source.
117 (unset GUIX_BUILD_OPTIONS;
118 test "`guix build -d -S baz`" = "`guix build -d -S foo`")
119
120 guix build -d --sources=package foo
121 guix build -d --sources=package foo | grep -e 'foo\.tar\.gz'
122
123 # bar.tar.gz and bar.dat
124 guix build -d --sources bar
125 test `guix build -d --sources bar \
126 | grep -e 'bar\.tar\.gz' -e 'bar\.dat' \
127 | wc -l` -eq 2
128
129 # bar.tar.gz and bar.dat
130 guix build -d --sources=all bar
131 test `guix build -d --sources bar \
132 | grep -e 'bar\.tar\.gz' -e 'bar\.dat' \
133 | wc -l` -eq 2
134
135 # Should include foo.tar.gz, bar.tar.gz, and bar.dat
136 guix build -d --sources=transitive foo
137 test `guix build -d --sources=transitive foo \
138 | grep -e 'foo\.tar\.gz' -e 'bar\.tar\.gz' -e 'bar\.dat' \
139 | wc -l` -eq 3
140
141
142 # Unbound variables.
143 cat > "$module_dir/foo.scm"<<EOF
144 (define-module (foo)
145 #:use-module (guix tests)
146 #:use-module (guix build-system trivial))
147
148 (define-public foo
149 (dummy-package "package-with-something-wrong"
150 (build-system trivial-build-system)
151 (inputs (quasiquote (("sed" ,sed)))))) ;unbound variable
152 EOF
153
154 if guix build package-with-something-wrong -n; then false; else true; fi
155 guix build package-with-something-wrong -n 2> "$module_dir/err" || true
156 grep "unbound" "$module_dir/err" # actual error
157 grep "forget.*(gnu packages base)" "$module_dir/err" # hint
158 rm -f "$module_dir"/*
159
160 # Should all return valid log files.
161 drv="`guix build -d -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'`"
162 out="`guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'`"
163 log="`guix build --log-file $drv`"
164 echo "$log" | grep log/.*guile.*drv
165 test -f "$log"
166 test "`guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)' --log-file`" \
167 = "$log"
168 test "`guix build --log-file guile-bootstrap`" = "$log"
169 test "`guix build --log-file $out`" = "$log"
170
171 # Should fail because the name/version combination could not be found.
172 if guix build hello-0.0.1 -n; then false; else true; fi
173
174 # Keep a symlink to the result, registered as a root.
175 result="t-result-$$"
176 guix build -r "$result" \
177 -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
178 test -x "$result/bin/guile"
179
180 # Should fail, because $result already exists.
181 if guix build -r "$result" -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
182 then false; else true; fi
183
184 rm -f "$result"
185
186 # Cross building.
187 guix build coreutils --target=mips64el-linux-gnu --dry-run --no-substitutes
188
189 # Replacements.
190 drv1=`guix build guix --with-input=guile@2.0=guile@2.2 -d`
191 drv2=`guix build guix -d`
192 test "$drv1" != "$drv2"
193
194 drv1=`guix build guile -d`
195 drv2=`guix build guile --with-input=gimp=ruby -d`
196 test "$drv1" = "$drv2"
197
198 if guix build guile --with-input=libunistring=something-really-silly
199 then false; else true; fi
200
201 # Deprecated/superseded packages.
202 test "`guix build superseded -d`" = "`guix build bar -d`"
203
204 # Parsing package names and versions.
205 guix build -n time # PASS
206 guix build -n time@1.9 # PASS, version found
207 if guix build -n time@3.2; # FAIL, version not found
208 then false; else true; fi
209 if guix build -n something-that-will-never-exist; # FAIL
210 then false; else true; fi
211
212 # Invoking a monadic procedure.
213 guix build -e "(begin
214 (use-modules (guix gexp))
215 (lambda ()
216 (gexp->derivation \"test\"
217 (gexp (mkdir (ungexp output))))))" \
218 --dry-run
219
220 # Running a gexp.
221 guix build -e '#~(mkdir #$output)' -d
222 guix build -e '#~(mkdir #$output)' -d | grep 'gexp\.drv'
223
224 # Same with a file-like object.
225 guix build -e '(computed-file "foo" #~(mkdir #$output))' -d
226 guix build -e '(computed-file "foo" #~(mkdir #$output))' -d | grep 'foo\.drv'
227
228 # Building from a package file.
229 cat > "$module_dir/package.scm"<<EOF
230 (use-modules (gnu))
231 (use-package-modules bootstrap)
232
233 %bootstrap-guile
234 EOF
235 guix build --file="$module_dir/package.scm"
236
237 # Building from a monadic procedure file.
238 cat > "$module_dir/proc.scm"<<EOF
239 (use-modules (guix gexp))
240 (lambda ()
241 (gexp->derivation "test"
242 (gexp (mkdir (ungexp output)))))
243 EOF
244 guix build --file="$module_dir/proc.scm" --dry-run
245
246 # Building from a gexp file.
247 cat > "$module_dir/gexp.scm"<<EOF
248 (use-modules (guix gexp))
249
250 (gexp (mkdir (ungexp output)))
251 EOF
252 guix build --file="$module_dir/gexp.scm" -d
253 guix build --file="$module_dir/gexp.scm" -d | grep 'gexp\.drv'
254
255 # Using 'GUIX_BUILD_OPTIONS'.
256 GUIX_BUILD_OPTIONS="--dry-run --no-grafts"
257 export GUIX_BUILD_OPTIONS
258
259 guix build emacs
260
261 GUIX_BUILD_OPTIONS="--something-completely-crazy"
262 if guix build emacs;
263 then false; else true; fi