tests: Move HTTP server to (guix tests http).
[jackhill/guix/guix.git] / tests / derivations.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
44ad3384 2;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
341c6fdd 3;;;
233e7676 4;;; This file is part of GNU Guix.
341c6fdd 5;;;
233e7676 6;;; GNU Guix is free software; you can redistribute it and/or modify it
341c6fdd
LC
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;;;
233e7676 11;;; GNU Guix is distributed in the hope that it will be useful, but
341c6fdd
LC
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
233e7676 17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
341c6fdd 18
341c6fdd
LC
19(define-module (test-derivations)
20 #:use-module (guix derivations)
ef8de985 21 #:use-module (guix grafts)
26bbbb95 22 #:use-module (guix store)
de4c3f26 23 #:use-module (guix utils)
72626a71 24 #:use-module (guix hash)
ddc29a78 25 #:use-module (guix base32)
c1bc358f 26 #:use-module (guix tests)
36bbbbd1
LC
27 #:use-module ((guix packages) #:select (package-derivation base32))
28 #:use-module ((guix build utils) #:select (executable-file?))
59a43334 29 #:use-module ((gnu packages) #:select (search-bootstrap-binary))
1ffa7090 30 #:use-module (gnu packages bootstrap)
e387ab7c 31 #:use-module ((gnu packages guile) #:select (guile-1.8))
b37eb5ed 32 #:use-module (srfi srfi-1)
fb3eec83 33 #:use-module (srfi srfi-11)
341c6fdd 34 #:use-module (srfi srfi-26)
99634e3f 35 #:use-module (srfi srfi-34)
341c6fdd 36 #:use-module (srfi srfi-64)
fb3eec83 37 #:use-module (rnrs io ports)
749c6567 38 #:use-module (rnrs bytevectors)
dd36b51b 39 #:use-module (web uri)
b37eb5ed 40 #:use-module (ice-9 rdelim)
db393b33 41 #:use-module (ice-9 regex)
99634e3f
LC
42 #:use-module (ice-9 ftw)
43 #:use-module (ice-9 match))
341c6fdd 44
26bbbb95 45(define %store
c1bc358f 46 (open-connection-for-tests))
b272c474 47
ef8de985
LC
48;; Globally disable grafts because they can trigger early builds.
49(%graft? #f)
50
5b0c9d16
LC
51(define (bootstrap-binary name)
52 (let ((bin (search-bootstrap-binary name (%current-system))))
97d3998e 53 (and %store
5b0c9d16
LC
54 (add-to-store %store name #t "sha256" bin))))
55
56(define %bash
57 (bootstrap-binary "bash"))
58(define %mkdir
59 (bootstrap-binary "mkdir"))
97d3998e 60
5b0c9d16 61(define* (directory-contents dir #:optional (slurp get-bytevector-all))
b37eb5ed
LC
62 "Return an alist representing the contents of DIR."
63 (define prefix-len (string-length dir))
64 (sort (file-system-fold (const #t) ; enter?
65 (lambda (path stat result) ; leaf
66 (alist-cons (string-drop path prefix-len)
5b0c9d16 67 (call-with-input-file path slurp)
b37eb5ed
LC
68 result))
69 (lambda (path stat result) result) ; down
70 (lambda (path stat result) result) ; up
71 (lambda (path stat result) result) ; skip
72 (lambda (path stat errno result) result) ; error
73 '()
74 dir)
75 (lambda (e1 e2)
76 (string<? (car e1) (car e2)))))
77
ef8de985 78\f
341c6fdd
LC
79(test-begin "derivations")
80
81(test-assert "parse & export"
33594aa4
LC
82 (let* ((f (search-path %load-path "tests/test.drv"))
83 (b1 (call-with-input-file f get-bytevector-all))
341c6fdd
LC
84 (d1 (read-derivation (open-bytevector-input-port b1)))
85 (b2 (call-with-bytevector-output-port (cut write-derivation d1 <>)))
86 (d2 (read-derivation (open-bytevector-input-port b2))))
87 (and (equal? b1 b2)
88 (equal? d1 d2))))
89
5b0c9d16 90(test-skip (if %store 0 12))
b37eb5ed 91
d1b1c424
LC
92(test-assert "add-to-store, flat"
93 (let* ((file (search-path %load-path "language/tree-il/spec.scm"))
a9ebd9ef 94 (drv (add-to-store %store "flat-test" #f "sha256" file)))
d1b1c424 95 (and (eq? 'regular (stat:type (stat drv)))
31ef99a8 96 (valid-path? %store drv)
d1b1c424
LC
97 (equal? (call-with-input-file file get-bytevector-all)
98 (call-with-input-file drv get-bytevector-all)))))
99
b37eb5ed
LC
100(test-assert "add-to-store, recursive"
101 (let* ((dir (dirname (search-path %load-path "language/tree-il/spec.scm")))
a9ebd9ef 102 (drv (add-to-store %store "dir-tree-test" #t "sha256" dir)))
b37eb5ed 103 (and (eq? 'directory (stat:type (stat drv)))
31ef99a8 104 (valid-path? %store drv)
b37eb5ed
LC
105 (equal? (directory-contents dir)
106 (directory-contents drv)))))
26bbbb95
LC
107
108(test-assert "derivation with no inputs"
31ef99a8 109 (let* ((builder (add-text-to-store %store "my-builder.sh"
97d3998e 110 "echo hello, world\n"
31ef99a8 111 '()))
59688fc4 112 (drv (derivation %store "foo"
97d3998e 113 %bash `("-e" ,builder)
a987d2c0 114 #:env-vars '(("HOME" . "/homeless")))))
59688fc4
LC
115 (and (store-path? (derivation-file-name drv))
116 (valid-path? %store (derivation-file-name drv)))))
26bbbb95 117
fb3eec83 118(test-assert "build derivation with 1 source"
59688fc4
LC
119 (let* ((builder (add-text-to-store %store "my-builder.sh"
120 "echo hello, world > \"$out\"\n"
121 '()))
122 (drv (derivation %store "foo"
123 %bash `(,builder)
124 #:env-vars '(("HOME" . "/homeless")
125 ("zzz" . "Z!")
126 ("AAA" . "A!"))
bde2d9cf 127 #:inputs `((,%bash) (,builder))))
59688fc4
LC
128 (succeeded?
129 (build-derivations %store (list drv))))
fb3eec83 130 (and succeeded?
59688fc4 131 (let ((path (derivation->output-path drv)))
31ef99a8
LC
132 (and (valid-path? %store path)
133 (string=? (call-with-input-file path read-line)
134 "hello, world"))))))
fb3eec83 135
860a6f1a
LC
136(test-assert "derivation with local file as input"
137 (let* ((builder (add-text-to-store
138 %store "my-builder.sh"
bbb76f6f 139 "(while read line ; do echo \"$line\" ; done) < $in > $out"
860a6f1a
LC
140 '()))
141 (input (search-path %load-path "ice-9/boot-9.scm"))
a987d2c0
LC
142 (input* (add-to-store %store (basename input)
143 #t "sha256" input))
59688fc4 144 (drv (derivation %store "derivation-with-input-file"
97d3998e 145 %bash `(,builder)
a987d2c0
LC
146
147 ;; Cheat to pass the actual file name to the
148 ;; builder.
149 #:env-vars `(("in" . ,input*))
150
bde2d9cf
LC
151 #:inputs `((,%bash)
152 (,builder)
a987d2c0 153 (,input))))) ; ← local file name
59688fc4 154 (and (build-derivations %store (list drv))
bbb76f6f
LC
155 ;; Note: we can't compare the files because the above trick alters
156 ;; the contents.
59688fc4 157 (valid-path? %store (derivation->output-path drv)))))
860a6f1a 158
0e510971
LC
159(test-assert "derivation fails but keep going"
160 ;; In keep-going mode, 'build-derivations' should fail because of D1, but it
161 ;; must return only after D2 has succeeded.
162 (with-store store
163 (let* ((d1 (derivation %store "fails"
164 %bash `("-c" "false")
165 #:inputs `((,%bash))))
166 (d2 (build-expression->derivation %store "sleep-then-succeed"
167 `(begin
168 ,(random-text)
169 ;; XXX: Hopefully that's long
170 ;; enough that D1 has already
171 ;; failed.
172 (sleep 2)
173 (mkdir %output)))))
174 (set-build-options %store
175 #:use-substitutes? #f
176 #:keep-going? #t)
177 (guard (c ((nix-protocol-error? c)
178 (and (= 100 (nix-protocol-error-status c))
179 (string-contains (nix-protocol-error-message c)
180 (derivation-file-name d1))
181 (not (valid-path? %store (derivation->output-path d1)))
182 (valid-path? %store (derivation->output-path d2)))))
183 (build-derivations %store (list d1 d2))
184 #f))))
185
44d43c7a
LC
186(test-assert "identical files are deduplicated"
187 (let* ((build1 (add-text-to-store %store "one.sh"
188 "echo hello, world > \"$out\"\n"
189 '()))
190 (build2 (add-text-to-store %store "two.sh"
191 "# Hey!\necho hello, world > \"$out\"\n"
192 '()))
193 (drv1 (derivation %store "foo"
194 %bash `(,build1)
195 #:inputs `((,%bash) (,build1))))
196 (drv2 (derivation %store "bar"
197 %bash `(,build2)
198 #:inputs `((,%bash) (,build2)))))
199 (and (build-derivations %store (list drv1 drv2))
200 (let ((file1 (derivation->output-path drv1))
201 (file2 (derivation->output-path drv2)))
202 (and (valid-path? %store file1) (valid-path? %store file2)
203 (string=? (call-with-input-file file1 get-string-all)
204 "hello, world\n")
205 (= (stat:ino (lstat file1))
206 (stat:ino (lstat file2))))))))
207
e786293e
LC
208(test-equal "derivation-name"
209 "foo-0.0"
210 (let ((drv (derivation %store "foo-0.0" %bash '())))
211 (derivation-name drv)))
212
0b6af195
LC
213(test-equal "derivation-output-names"
214 '(("out") ("bar" "chbouib"))
215 (let ((drv1 (derivation %store "foo-0.0" %bash '()))
216 (drv2 (derivation %store "foo-0.0" %bash '()
217 #:outputs '("bar" "chbouib"))))
218 (list (derivation-output-names drv1)
219 (derivation-output-names drv2))))
220
fc93e309
LC
221(test-assert "offloadable-derivation?"
222 (and (offloadable-derivation? (derivation %store "foo" %bash '()))
4a6aeb67
LC
223 (offloadable-derivation? ;see <http://bugs.gnu.org/18747>
224 (derivation %store "foo" %bash '()
225 #:substitutable? #f))
fc93e309
LC
226 (not (offloadable-derivation?
227 (derivation %store "foo" %bash '()
228 #:local-build? #t)))))
229
4a6aeb67
LC
230(test-assert "substitutable-derivation?"
231 (and (substitutable-derivation? (derivation %store "foo" %bash '()))
232 (substitutable-derivation? ;see <http://bugs.gnu.org/18747>
233 (derivation %store "foo" %bash '()
cfc5d398 234 #:local-build? #t))
4a6aeb67
LC
235 (not (substitutable-derivation?
236 (derivation %store "foo" %bash '()
237 #:substitutable? #f)))))
238
99e17dc9
LC
239(test-assert "fixed-output-derivation?"
240 (let* ((builder (add-text-to-store %store "my-fixed-builder.sh"
241 "echo -n hello > $out" '()))
242 (hash (sha256 (string->utf8 "hello")))
243 (drv (derivation %store "fixed"
244 %bash `(,builder)
245 #:inputs `((,builder))
246 #:hash hash #:hash-algo 'sha256)))
247 (fixed-output-derivation? drv)))
248
749c6567
LC
249(test-assert "fixed-output derivation"
250 (let* ((builder (add-text-to-store %store "my-fixed-builder.sh"
251 "echo -n hello > $out" '()))
252 (hash (sha256 (string->utf8 "hello")))
59688fc4 253 (drv (derivation %store "fixed"
97d3998e 254 %bash `(,builder)
a987d2c0 255 #:inputs `((,builder)) ; optional
749c6567 256 #:hash hash #:hash-algo 'sha256))
59688fc4 257 (succeeded? (build-derivations %store (list drv))))
749c6567 258 (and succeeded?
59688fc4 259 (let ((p (derivation->output-path drv)))
82058eff
LC
260 (and (equal? (string->utf8 "hello")
261 (call-with-input-file p get-bytevector-all))
262 (bytevector? (query-path-hash %store p)))))))
749c6567 263
813986ac
LC
264(test-assert "fixed-output derivation: output paths are equal"
265 (let* ((builder1 (add-text-to-store %store "fixed-builder1.sh"
266 "echo -n hello > $out" '()))
267 (builder2 (add-text-to-store %store "fixed-builder2.sh"
268 "echo hey; echo -n hello > $out" '()))
269 (hash (sha256 (string->utf8 "hello")))
59688fc4 270 (drv1 (derivation %store "fixed"
97d3998e 271 %bash `(,builder1)
813986ac 272 #:hash hash #:hash-algo 'sha256))
59688fc4 273 (drv2 (derivation %store "fixed"
97d3998e 274 %bash `(,builder2)
813986ac 275 #:hash hash #:hash-algo 'sha256))
59688fc4 276 (succeeded? (build-derivations %store (list drv1 drv2))))
813986ac 277 (and succeeded?
59688fc4
LC
278 (equal? (derivation->output-path drv1)
279 (derivation->output-path drv2)))))
813986ac 280
36bbbbd1
LC
281(test-assert "fixed-output derivation, recursive"
282 (let* ((builder (add-text-to-store %store "my-fixed-builder.sh"
283 "echo -n hello > $out" '()))
284 (hash (sha256 (string->utf8 "hello")))
285 (drv (derivation %store "fixed-rec"
286 %bash `(,builder)
287 #:inputs `((,builder))
288 #:hash (base32 "0sg9f58l1jj88w6pdrfdpj5x9b1zrwszk84j81zvby36q9whhhqa")
289 #:hash-algo 'sha256
290 #:recursive? #t))
291 (succeeded? (build-derivations %store (list drv))))
292 (and succeeded?
293 (let ((p (derivation->output-path drv)))
294 (and (equal? (string->utf8 "hello")
295 (call-with-input-file p get-bytevector-all))
296 (bytevector? (query-path-hash %store p)))))))
297
813986ac
LC
298(test-assert "derivation with a fixed-output input"
299 ;; A derivation D using a fixed-output derivation F doesn't has the same
300 ;; output path when passed F or F', as long as F and F' have the same output
301 ;; path.
302 (let* ((builder1 (add-text-to-store %store "fixed-builder1.sh"
303 "echo -n hello > $out" '()))
304 (builder2 (add-text-to-store %store "fixed-builder2.sh"
305 "echo hey; echo -n hello > $out" '()))
306 (hash (sha256 (string->utf8 "hello")))
a987d2c0 307 (fixed1 (derivation %store "fixed"
97d3998e 308 %bash `(,builder1)
813986ac 309 #:hash hash #:hash-algo 'sha256))
a987d2c0 310 (fixed2 (derivation %store "fixed"
97d3998e 311 %bash `(,builder2)
813986ac 312 #:hash hash #:hash-algo 'sha256))
59688fc4 313 (fixed-out (derivation->output-path fixed1))
813986ac
LC
314 (builder3 (add-text-to-store
315 %store "final-builder.sh"
316 ;; Use Bash hackery to avoid Coreutils.
317 "echo $in ; (read -u 3 c; echo $c) 3< $in > $out" '()))
a987d2c0 318 (final1 (derivation %store "final"
97d3998e 319 %bash `(,builder3)
a987d2c0 320 #:env-vars `(("in" . ,fixed-out))
bde2d9cf 321 #:inputs `((,%bash) (,builder3) (,fixed1))))
a987d2c0 322 (final2 (derivation %store "final"
97d3998e 323 %bash `(,builder3)
a987d2c0 324 #:env-vars `(("in" . ,fixed-out))
bde2d9cf 325 #:inputs `((,%bash) (,builder3) (,fixed2))))
813986ac
LC
326 (succeeded? (build-derivations %store
327 (list final1 final2))))
328 (and succeeded?
59688fc4
LC
329 (equal? (derivation->output-path final1)
330 (derivation->output-path final2)))))
813986ac 331
7946c4e7
LC
332(test-assert "multiple-output derivation"
333 (let* ((builder (add-text-to-store %store "my-fixed-builder.sh"
334 "echo one > $out ; echo two > $second"
335 '()))
59688fc4 336 (drv (derivation %store "fixed"
97d3998e 337 %bash `(,builder)
a987d2c0
LC
338 #:env-vars '(("HOME" . "/homeless")
339 ("zzz" . "Z!")
340 ("AAA" . "A!"))
bde2d9cf 341 #:inputs `((,%bash) (,builder))
7946c4e7 342 #:outputs '("out" "second")))
59688fc4 343 (succeeded? (build-derivations %store (list drv))))
7946c4e7 344 (and succeeded?
59688fc4
LC
345 (let ((one (derivation->output-path drv "out"))
346 (two (derivation->output-path drv "second")))
7244a5f7 347 (and (lset= equal?
59688fc4 348 (derivation->output-paths drv)
7244a5f7
LC
349 `(("out" . ,one) ("second" . ,two)))
350 (eq? 'one (call-with-input-file one read))
7946c4e7
LC
351 (eq? 'two (call-with-input-file two read)))))))
352
4b1786aa
LC
353(test-assert "multiple-output derivation, non-alphabetic order"
354 ;; Here, the outputs are not listed in alphabetic order. Yet, the store
355 ;; path computation must reorder them first.
356 (let* ((builder (add-text-to-store %store "my-fixed-builder.sh"
357 "echo one > $out ; echo two > $AAA"
358 '()))
59688fc4 359 (drv (derivation %store "fixed"
97d3998e 360 %bash `(,builder)
bde2d9cf 361 #:inputs `((,%bash) (,builder))
4b1786aa 362 #:outputs '("out" "AAA")))
59688fc4 363 (succeeded? (build-derivations %store (list drv))))
4b1786aa 364 (and succeeded?
59688fc4
LC
365 (let ((one (derivation->output-path drv "out"))
366 (two (derivation->output-path drv "AAA")))
4b1786aa
LC
367 (and (eq? 'one (call-with-input-file one read))
368 (eq? 'two (call-with-input-file two read)))))))
369
97507ebe
LC
370(test-assert "read-derivation vs. derivation"
371 ;; Make sure 'derivation' and 'read-derivation' return objects that are
372 ;; identical.
373 (let* ((sources (unfold (cut >= <> 10)
374 (lambda (n)
375 (add-text-to-store %store
376 (format #f "input~a" n)
377 (random-text)))
378 1+
379 0))
380 (inputs (map (lambda (file)
381 (derivation %store "derivation-input"
382 %bash '()
383 #:inputs `((,%bash) (,file))))
384 sources))
385 (builder (add-text-to-store %store "builder.sh"
386 "echo one > $one ; echo two > $two"
387 '()))
388 (drv (derivation %store "derivation"
389 %bash `(,builder)
390 #:inputs `((,%bash) (,builder)
391 ,@(map list (append sources inputs)))
392 #:outputs '("two" "one")))
393 (drv* (call-with-input-file (derivation-file-name drv)
394 read-derivation)))
395 (equal? drv* drv)))
396
d0dc4907
LC
397(test-assert "multiple-output derivation, derivation-path->output-path"
398 (let* ((builder (add-text-to-store %store "builder.sh"
399 "echo one > $out ; echo two > $second"
400 '()))
401 (drv (derivation %store "multiple"
402 %bash `(,builder)
403 #:outputs '("out" "second")))
404 (drv-file (derivation-file-name drv))
405 (one (derivation->output-path drv "out"))
406 (two (derivation->output-path drv "second"))
407 (first (derivation-path->output-path drv-file "out"))
408 (second (derivation-path->output-path drv-file "second")))
409 (and (not (string=? one two))
410 (string-suffix? "-second" two)
411 (string=? first one)
412 (string=? second two))))
413
d66ac374
LC
414(test-assert "user of multiple-output derivation"
415 ;; Check whether specifying several inputs coming from the same
416 ;; multiple-output derivation works.
417 (let* ((builder1 (add-text-to-store %store "my-mo-builder.sh"
418 "echo one > $out ; echo two > $two"
419 '()))
a987d2c0 420 (mdrv (derivation %store "multiple-output"
97d3998e 421 %bash `(,builder1)
bde2d9cf 422 #:inputs `((,%bash) (,builder1))
d66ac374
LC
423 #:outputs '("out" "two")))
424 (builder2 (add-text-to-store %store "my-mo-user-builder.sh"
425 "read x < $one;
426 read y < $two;
427 echo \"($x $y)\" > $out"
428 '()))
429 (udrv (derivation %store "multiple-output-user"
97d3998e 430 %bash `(,builder2)
a987d2c0 431 #:env-vars `(("one"
59688fc4 432 . ,(derivation->output-path
a987d2c0
LC
433 mdrv "out"))
434 ("two"
59688fc4 435 . ,(derivation->output-path
a987d2c0 436 mdrv "two")))
bde2d9cf
LC
437 #:inputs `((,%bash)
438 (,builder2)
a987d2c0
LC
439 ;; two occurrences of MDRV:
440 (,mdrv)
441 (,mdrv "two")))))
d66ac374 442 (and (build-derivations %store (list (pk 'udrv udrv)))
59688fc4 443 (let ((p (derivation->output-path udrv)))
d66ac374
LC
444 (and (valid-path? %store p)
445 (equal? '(one two) (call-with-input-file p read)))))))
446
858e9282 447(test-assert "derivation with #:references-graphs"
5b0c9d16
LC
448 (let* ((input1 (add-text-to-store %store "foo" "hello"
449 (list %bash)))
450 (input2 (add-text-to-store %store "bar"
451 (number->string (random 7777))
452 (list input1)))
453 (builder (add-text-to-store %store "build-graph"
454 (format #f "
455~a $out
456 (while read l ; do echo $l ; done) < bash > $out/bash
457 (while read l ; do echo $l ; done) < input1 > $out/input1
458 (while read l ; do echo $l ; done) < input2 > $out/input2"
459 %mkdir)
460 (list %mkdir)))
461 (drv (derivation %store "closure-graphs"
462 %bash `(,builder)
858e9282 463 #:references-graphs
5b0c9d16
LC
464 `(("bash" . ,%bash)
465 ("input1" . ,input1)
466 ("input2" . ,input2))
467 #:inputs `((,%bash) (,builder))))
59688fc4 468 (out (derivation->output-path drv)))
5b0c9d16
LC
469 (define (deps path . deps)
470 (let ((count (length deps)))
471 (string-append path "\n\n" (number->string count) "\n"
472 (string-join (sort deps string<?) "\n")
473 (if (zero? count) "" "\n"))))
474
475 (and (build-derivations %store (list drv))
476 (equal? (directory-contents out get-string-all)
477 `(("/bash" . ,(string-append %bash "\n\n0\n"))
478 ("/input1" . ,(if (string>? input1 %bash)
479 (string-append (deps %bash)
480 (deps input1 %bash))
481 (string-append (deps input1 %bash)
482 (deps %bash))))
483 ("/input2" . ,(string-concatenate
484 (map cdr
485 (sort
486 (map (lambda (p d)
487 (cons p (apply deps p d)))
488 (list %bash input1 input2)
489 (list '() (list %bash) (list input1)))
490 (lambda (x y)
491 (match x
492 ((p1 . _)
493 (match y
494 ((p2 . _)
495 (string<? p1 p2)))))))))))))))
496
b53be755
LC
497(test-assert "derivation #:allowed-references, ok"
498 (let ((drv (derivation %store "allowed" %bash
499 '("-c" "echo hello > $out")
500 #:inputs `((,%bash))
501 #:allowed-references '())))
502 (build-derivations %store (list drv))))
503
504(test-assert "derivation #:allowed-references, not allowed"
505 (let* ((txt (add-text-to-store %store "foo" "Hello, world."))
506 (drv (derivation %store "disallowed" %bash
507 `("-c" ,(string-append "echo " txt "> $out"))
508 #:inputs `((,%bash) (,txt))
509 #:allowed-references '())))
510 (guard (c ((nix-protocol-error? c)
511 ;; There's no specific error message to check for.
512 #t))
513 (build-derivations %store (list drv))
514 #f)))
515
516(test-assert "derivation #:allowed-references, self allowed"
517 (let ((drv (derivation %store "allowed" %bash
518 '("-c" "echo $out > $out")
519 #:inputs `((,%bash))
520 #:allowed-references '("out"))))
521 (build-derivations %store (list drv))))
522
523(test-assert "derivation #:allowed-references, self not allowed"
524 (let ((drv (derivation %store "disallowed" %bash
525 `("-c" ,"echo $out > $out")
526 #:inputs `((,%bash))
527 #:allowed-references '())))
528 (guard (c ((nix-protocol-error? c)
529 ;; There's no specific error message to check for.
530 #t))
531 (build-derivations %store (list drv))
532 #f)))
533
35b5ca78
LC
534(test-assert "derivation #:disallowed-references, ok"
535 (let ((drv (derivation %store "disallowed" %bash
536 '("-c" "echo hello > $out")
537 #:inputs `((,%bash))
538 #:disallowed-references '("out"))))
539 (build-derivations %store (list drv))))
540
541(test-assert "derivation #:disallowed-references, not ok"
542 (let* ((txt (add-text-to-store %store "foo" "Hello, world."))
543 (drv (derivation %store "disdisallowed" %bash
544 `("-c" ,(string-append "echo " txt "> $out"))
545 #:inputs `((,%bash) (,txt))
546 #:disallowed-references (list txt))))
547 (guard (c ((nix-protocol-error? c)
548 ;; There's no specific error message to check for.
549 #t))
550 (build-derivations %store (list drv))
551 #f)))
552
44ad3384
LC
553;; Here we should get the value of $NIX_STATE_DIR that the daemon sees, which
554;; is a unique value for each test process; this value is the same as the one
555;; we see in the process executing this file since it is set by 'test-env'.
556(test-equal "derivation #:leaked-env-vars"
557 (getenv "NIX_STATE_DIR")
558 (let* ((value (getenv "NIX_STATE_DIR"))
559 (drv (derivation %store "leaked-env-vars" %bash
560 '("-c" "echo -n $NIX_STATE_DIR > $out")
561 #:hash (sha256 (string->utf8 value))
562 #:hash-algo 'sha256
563 #:inputs `((,%bash))
564 #:leaked-env-vars '("NIX_STATE_DIR"))))
565 (and (build-derivations %store (list drv))
566 (call-with-input-file (derivation->output-path drv)
567 get-string-all))))
568
de4c3f26
LC
569\f
570(define %coreutils
8f3ecbd7 571 (false-if-exception
12d720fd 572 (and (network-reachable?)
f073e523 573 (package-derivation %store %bootstrap-coreutils&co))))
de4c3f26
LC
574
575(test-skip (if %coreutils 0 1))
576
577(test-assert "build derivation with coreutils"
578 (let* ((builder
579 (add-text-to-store %store "build-with-coreutils.sh"
580 "echo $PATH ; mkdir --version ; mkdir $out ; touch $out/good"
581 '()))
59688fc4 582 (drv
a987d2c0 583 (derivation %store "foo"
97d3998e 584 %bash `(,builder)
a987d2c0
LC
585 #:env-vars `(("PATH" .
586 ,(string-append
59688fc4 587 (derivation->output-path %coreutils)
a987d2c0
LC
588 "/bin")))
589 #:inputs `((,builder)
590 (,%coreutils))))
de4c3f26 591 (succeeded?
59688fc4 592 (build-derivations %store (list drv))))
de4c3f26 593 (and succeeded?
59688fc4 594 (let ((p (derivation->output-path drv)))
31ef99a8
LC
595 (and (valid-path? %store p)
596 (file-exists? (string-append p "/good")))))))
de4c3f26 597
9c629a27 598(test-skip (if (%guile-for-build) 0 8))
9a20830e 599
d26e1967
LC
600(test-equal "build-expression->derivation and invalid module name"
601 '(file-search-error "guix/module/that/does/not/exist.scm")
602 (guard (c ((file-search-error? c)
603 (list 'file-search-error
604 (file-search-error-file-name c))))
605 (build-expression->derivation %store "foo" #t
606 #:modules '((guix module that
607 does not exist)))))
608
9a20830e 609(test-assert "build-expression->derivation and derivation-prerequisites"
dd1a5a15 610 (let ((drv (build-expression->derivation %store "fail" #f)))
9a20830e
LC
611 (any (match-lambda
612 (($ <derivation-input> path)
59688fc4 613 (string=? path (derivation-file-name (%guile-for-build)))))
9a20830e 614 (derivation-prerequisites drv))))
d9085c23 615
49c0a8d6 616(test-assert "derivation-prerequisites and valid-derivation-input?"
3681db5d
LC
617 (let* ((a (build-expression->derivation %store "a" '(mkdir %output)))
618 (b (build-expression->derivation %store "b" `(list ,(random-text))))
619 (c (build-expression->derivation %store "c" `(mkdir %output)
620 #:inputs `(("a" ,a) ("b" ,b)))))
49c0a8d6
LC
621 ;; Make sure both A and %BOOTSTRAP-GUILE are built (the latter could have
622 ;; be removed by tests/guix-gc.sh.)
623 (build-derivations %store
624 (list a (package-derivation %store %bootstrap-guile)))
625
3681db5d
LC
626 (match (derivation-prerequisites c
627 (cut valid-derivation-input? %store
628 <>))
629 ((($ <derivation-input> file ("out")))
630 (string=? file (derivation-file-name b)))
631 (x
632 (pk 'fail x #f)))))
633
d9085c23
LC
634(test-assert "build-expression->derivation without inputs"
635 (let* ((builder '(begin
636 (mkdir %output)
637 (call-with-output-file (string-append %output "/test")
638 (lambda (p)
639 (display '(hello guix) p)))))
dd1a5a15 640 (drv (build-expression->derivation %store "goo" builder))
59688fc4 641 (succeeded? (build-derivations %store (list drv))))
d9085c23 642 (and succeeded?
59688fc4 643 (let ((p (derivation->output-path drv)))
d9085c23
LC
644 (equal? '(hello guix)
645 (call-with-input-file (string-append p "/test") read))))))
646
969e678e
LC
647(test-assert "build-expression->derivation and max-silent-time"
648 (let* ((store (let ((s (open-connection)))
649 (set-build-options s #:max-silent-time 1)
650 s))
01e82af5 651 (builder '(begin (sleep 100) (mkdir %output) #t))
dd1a5a15 652 (drv (build-expression->derivation store "silent" builder))
59688fc4 653 (out-path (derivation->output-path drv)))
6c20d1d0
LC
654 (guard (c ((nix-protocol-error? c)
655 (and (string-contains (nix-protocol-error-message c)
656 "failed")
657 (not (valid-path? store out-path)))))
658 (build-derivations store (list drv))
659 #f)))
660
661(test-assert "build-expression->derivation and timeout"
662 (let* ((store (let ((s (open-connection)))
663 (set-build-options s #:timeout 1)
664 s))
665 (builder '(begin (sleep 100) (mkdir %output) #t))
666 (drv (build-expression->derivation store "slow" builder))
667 (out-path (derivation->output-path drv)))
969e678e
LC
668 (guard (c ((nix-protocol-error? c)
669 (and (string-contains (nix-protocol-error-message c)
670 "failed")
671 (not (valid-path? store out-path)))))
01e82af5
LC
672 (build-derivations store (list drv))
673 #f)))
969e678e 674
9a20830e 675(test-assert "build-expression->derivation and derivation-prerequisites-to-build"
dd1a5a15 676 (let ((drv (build-expression->derivation %store "fail" #f)))
9a20830e
LC
677 ;; The only direct dependency is (%guile-for-build) and it's already
678 ;; built.
679 (null? (derivation-prerequisites-to-build %store drv))))
680
784bb1f3 681(test-assert "derivation-prerequisites-to-build when outputs already present"
59688fc4 682 (let* ((builder '(begin (mkdir %output) #t))
dd1a5a15 683 (input-drv (build-expression->derivation %store "input" builder))
59688fc4
LC
684 (input-path (derivation-output-path
685 (assoc-ref (derivation-outputs input-drv)
686 "out")))
dd1a5a15
LC
687 (drv (build-expression->derivation %store "something" builder
688 #:inputs
59688fc4
LC
689 `(("i" ,input-drv))))
690 (output (derivation->output-path drv)))
784bb1f3
LC
691 ;; Make sure these things are not already built.
692 (when (valid-path? %store input-path)
693 (delete-paths %store (list input-path)))
694 (when (valid-path? %store output)
695 (delete-paths %store (list output)))
696
697 (and (equal? (map derivation-input-path
698 (derivation-prerequisites-to-build %store drv))
59688fc4 699 (list (derivation-file-name input-drv)))
784bb1f3
LC
700
701 ;; Build DRV and delete its input.
59688fc4 702 (build-derivations %store (list drv))
784bb1f3
LC
703 (delete-paths %store (list input-path))
704 (not (valid-path? %store input-path))
705
706 ;; Now INPUT-PATH is missing, yet it shouldn't be listed as a
707 ;; prerequisite to build because DRV itself is already built.
708 (null? (derivation-prerequisites-to-build %store drv)))))
709
dd36b51b 710(test-assert "derivation-prerequisites-to-build and substitutes"
59688fc4
LC
711 (let* ((store (open-connection))
712 (drv (build-expression->derivation store "prereq-subst"
dd1a5a15 713 (random 1000)))
e6740741 714 (output (derivation->output-path drv)))
dd36b51b 715
1950bf56 716 ;; Make sure substitutes are usable.
24f5aaaf
LC
717 (set-build-options store #:use-substitutes? #t
718 #:substitute-urls (%test-substitute-urls))
1950bf56 719
e6740741
LC
720 (with-derivation-narinfo drv
721 (let-values (((build download)
722 (derivation-prerequisites-to-build store drv))
723 ((build* download*)
724 (derivation-prerequisites-to-build store drv
e9651e39
LC
725 #:substitutable?
726 (const #f))))
e6740741
LC
727 (and (null? build)
728 (equal? download (list output))
729 (null? download*)
730 (null? build*))))))
dd36b51b 731
4a6aeb67 732(test-assert "derivation-prerequisites-to-build and substitutes, non-substitutable build"
d2d0514b 733 (let* ((store (open-connection))
4a6aeb67 734 (drv (build-expression->derivation store "prereq-no-subst"
d2d0514b 735 (random 1000)
4a6aeb67 736 #:substitutable? #f))
d2d0514b
LC
737 (output (derivation->output-path drv)))
738
739 ;; Make sure substitutes are usable.
24f5aaaf
LC
740 (set-build-options store #:use-substitutes? #t
741 #:substitute-urls (%test-substitute-urls))
d2d0514b
LC
742
743 (with-derivation-narinfo drv
744 (let-values (((build download)
745 (derivation-prerequisites-to-build store drv)))
746 ;; Despite being available as a substitute, DRV will be built locally
4a6aeb67 747 ;; due to #:substitutable? #f.
d2d0514b
LC
748 (and (null? download)
749 (match build
750 (((? derivation-input? input))
751 (string=? (derivation-input-path input)
752 (derivation-file-name drv)))))))))
753
4a6aeb67
LC
754(test-assert "derivation-prerequisites-to-build and substitutes, local build"
755 (with-store store
756 (let* ((drv (build-expression->derivation store "prereq-subst-local"
757 (random 1000)
758 #:local-build? #t))
759 (output (derivation->output-path drv)))
760
761 ;; Make sure substitutes are usable.
24f5aaaf
LC
762 (set-build-options store #:use-substitutes? #t
763 #:substitute-urls (%test-substitute-urls))
4a6aeb67
LC
764
765 (with-derivation-narinfo drv
766 (let-values (((build download)
767 (derivation-prerequisites-to-build store drv)))
cfc5d398 768 ;; #:local-build? is *not* synonymous with #:substitutable?, so we
4a6aeb67
LC
769 ;; must be able to substitute DRV's output.
770 ;; See <http://bugs.gnu.org/18747>.
771 (and (null? build)
772 (match download
773 (((? string? item))
774 (string=? item (derivation->output-path drv))))))))))
775
58c08df0
LC
776(test-assert "derivation-prerequisites-to-build in 'check' mode"
777 (with-store store
778 (let* ((dep (build-expression->derivation store "dep"
779 `(begin ,(random-text)
780 (mkdir %output))))
781 (drv (build-expression->derivation store "to-check"
782 '(mkdir %output)
783 #:inputs `(("dep" ,dep)))))
784 (build-derivations store (list drv))
785 (delete-paths store (list (derivation->output-path dep)))
786
787 ;; In 'check' mode, DEP must be rebuilt.
788 (and (null? (derivation-prerequisites-to-build store drv))
789 (match (derivation-prerequisites-to-build store drv
790 #:mode (build-mode
791 check))
792 ((input)
793 (string=? (derivation-input-path input)
794 (derivation-file-name dep))))))))
795
db393b33
LC
796(test-assert "build-expression->derivation with expression returning #f"
797 (let* ((builder '(begin
798 (mkdir %output)
799 #f)) ; fail!
dd1a5a15 800 (drv (build-expression->derivation %store "fail" builder))
59688fc4 801 (out-path (derivation->output-path drv)))
db393b33
LC
802 (guard (c ((nix-protocol-error? c)
803 ;; Note that the output path may exist at this point, but it
804 ;; is invalid.
31ef99a8
LC
805 (and (string-match "build .* failed"
806 (nix-protocol-error-message c))
807 (not (valid-path? %store out-path)))))
59688fc4 808 (build-derivations %store (list drv))
db393b33
LC
809 #f)))
810
9bc07f4d
LC
811(test-assert "build-expression->derivation with two outputs"
812 (let* ((builder '(begin
813 (call-with-output-file (assoc-ref %outputs "out")
814 (lambda (p)
815 (display '(hello) p)))
816 (call-with-output-file (assoc-ref %outputs "second")
817 (lambda (p)
818 (display '(world) p)))))
dd1a5a15 819 (drv (build-expression->derivation %store "double" builder
9bc07f4d
LC
820 #:outputs '("out"
821 "second")))
59688fc4 822 (succeeded? (build-derivations %store (list drv))))
9bc07f4d 823 (and succeeded?
59688fc4
LC
824 (let ((one (derivation->output-path drv))
825 (two (derivation->output-path drv "second")))
9bc07f4d
LC
826 (and (equal? '(hello) (call-with-input-file one read))
827 (equal? '(world) (call-with-input-file two read)))))))
828
ad1ebab3 829(test-skip (if %coreutils 0 1))
d9085c23
LC
830(test-assert "build-expression->derivation with one input"
831 (let* ((builder '(call-with-output-file %output
832 (lambda (p)
833 (let ((cu (assoc-ref %build-inputs "cu")))
834 (close 1)
835 (dup2 (port->fdes p) 1)
836 (execl (string-append cu "/bin/uname")
837 "uname" "-a")))))
dd1a5a15
LC
838 (drv (build-expression->derivation %store "uname" builder
839 #:inputs
2acb2cb6 840 `(("cu" ,%coreutils))))
59688fc4 841 (succeeded? (build-derivations %store (list drv))))
d9085c23 842 (and succeeded?
59688fc4 843 (let ((p (derivation->output-path drv)))
d9085c23
LC
844 (string-contains (call-with-input-file p read-line) "GNU")))))
845
d9024884
LC
846(test-assert "build-expression->derivation with modules"
847 (let* ((builder `(begin
848 (use-modules (guix build utils))
849 (let ((out (assoc-ref %outputs "out")))
850 (mkdir-p (string-append out "/guile/guix/nix"))
851 #t)))
59688fc4 852 (drv (build-expression->derivation %store "test-with-modules"
dd1a5a15 853 builder
d9024884
LC
854 #:modules
855 '((guix build utils)))))
59688fc4
LC
856 (and (build-derivations %store (list drv))
857 (let* ((p (derivation->output-path drv))
d9024884
LC
858 (s (stat (string-append p "/guile/guix/nix"))))
859 (eq? (stat:type s) 'directory)))))
860
813986ac
LC
861(test-assert "build-expression->derivation: same fixed-output path"
862 (let* ((builder1 '(call-with-output-file %output
863 (lambda (p)
864 (write "hello" p))))
865 (builder2 '(call-with-output-file (pk 'difference-here! %output)
866 (lambda (p)
867 (write "hello" p))))
868 (hash (sha256 (string->utf8 "hello")))
dd1a5a15 869 (input1 (build-expression->derivation %store "fixed" builder1
813986ac
LC
870 #:hash hash
871 #:hash-algo 'sha256))
dd1a5a15 872 (input2 (build-expression->derivation %store "fixed" builder2
813986ac
LC
873 #:hash hash
874 #:hash-algo 'sha256))
875 (succeeded? (build-derivations %store (list input1 input2))))
876 (and succeeded?
59688fc4
LC
877 (not (string=? (derivation-file-name input1)
878 (derivation-file-name input2)))
879 (string=? (derivation->output-path input1)
880 (derivation->output-path input2)))))
813986ac 881
7bdd1f0e
LC
882(test-assert "build-expression->derivation with a fixed-output input"
883 (let* ((builder1 '(call-with-output-file %output
884 (lambda (p)
885 (write "hello" p))))
886 (builder2 '(call-with-output-file (pk 'difference-here! %output)
887 (lambda (p)
888 (write "hello" p))))
889 (hash (sha256 (string->utf8 "hello")))
dd1a5a15 890 (input1 (build-expression->derivation %store "fixed" builder1
7bdd1f0e
LC
891 #:hash hash
892 #:hash-algo 'sha256))
dd1a5a15 893 (input2 (build-expression->derivation %store "fixed" builder2
7bdd1f0e
LC
894 #:hash hash
895 #:hash-algo 'sha256))
896 (builder3 '(let ((input (assoc-ref %build-inputs "input")))
897 (call-with-output-file %output
898 (lambda (out)
899 (format #f "My input is ~a.~%" input)))))
dd1a5a15
LC
900 (final1 (build-expression->derivation %store "final" builder3
901 #:inputs
7bdd1f0e 902 `(("input" ,input1))))
dd1a5a15
LC
903 (final2 (build-expression->derivation %store "final" builder3
904 #:inputs
7bdd1f0e 905 `(("input" ,input2)))))
59688fc4
LC
906 (and (string=? (derivation->output-path final1)
907 (derivation->output-path final2))
908 (string=? (derivation->output-path final1)
909 (derivation-path->output-path
910 (derivation-file-name final1)))
7bdd1f0e
LC
911 (build-derivations %store (list final1 final2)))))
912
36bbbbd1
LC
913(test-assert "build-expression->derivation produces recursive fixed-output"
914 (let* ((builder '(begin
915 (use-modules (srfi srfi-26))
916 (mkdir %output)
917 (chdir %output)
918 (call-with-output-file "exe"
919 (cut display "executable" <>))
920 (chmod "exe" #o777)
921 (symlink "exe" "symlink")
922 (mkdir "subdir")))
923 (drv (build-expression->derivation %store "fixed-rec" builder
924 #:hash-algo 'sha256
925 #:hash (base32
926 "10k1lw41wyrjf9mxydi0is5nkpynlsvgslinics4ppir13g7d74p")
927 #:recursive? #t)))
928 (and (build-derivations %store (list drv))
929 (let* ((dir (derivation->output-path drv))
930 (exe (string-append dir "/exe"))
931 (link (string-append dir "/symlink"))
932 (subdir (string-append dir "/subdir")))
933 (and (executable-file? exe)
934 (string=? "executable"
935 (call-with-input-file exe get-string-all))
936 (string=? "exe" (readlink link))
937 (file-is-directory? subdir))))))
938
939(test-assert "build-expression->derivation uses recursive fixed-output"
940 (let* ((builder '(call-with-output-file %output
941 (lambda (port)
942 (display "hello" port))))
943 (fixed (build-expression->derivation %store "small-fixed-rec"
944 builder
945 #:hash-algo 'sha256
946 #:hash (base32
947 "0sg9f58l1jj88w6pdrfdpj5x9b1zrwszk84j81zvby36q9whhhqa")
948 #:recursive? #t))
949 (in (derivation->output-path fixed))
950 (builder `(begin
951 (mkdir %output)
952 (chdir %output)
953 (symlink ,in "symlink")))
954 (drv (build-expression->derivation %store "fixed-rec-user"
955 builder
956 #:inputs `(("fixed" ,fixed)))))
957 (and (build-derivations %store (list drv))
958 (let ((out (derivation->output-path drv)))
959 (string=? (readlink (string-append out "/symlink")) in)))))
960
858e9282 961(test-assert "build-expression->derivation with #:references-graphs"
9c629a27
LC
962 (let* ((input (add-text-to-store %store "foo" "hello"
963 (list %bash %mkdir)))
964 (builder '(copy-file "input" %output))
858e9282 965 (drv (build-expression->derivation %store "references-graphs"
dd1a5a15 966 builder
858e9282 967 #:references-graphs
9c629a27 968 `(("input" . ,input))))
59688fc4 969 (out (derivation->output-path drv)))
9c629a27
LC
970 (define (deps path . deps)
971 (let ((count (length deps)))
972 (string-append path "\n\n" (number->string count) "\n"
973 (string-join (sort deps string<?) "\n")
974 (if (zero? count) "" "\n"))))
975
976 (and (build-derivations %store (list drv))
977 (equal? (call-with-input-file out get-string-all)
978 (string-concatenate
979 (map cdr
980 (sort (map (lambda (p d)
981 (cons p (apply deps p d)))
982 (list input %bash %mkdir)
983 (list (list %bash %mkdir)
984 '() '()))
985 (lambda (x y)
986 (match x
987 ((p1 . _)
988 (match y
989 ((p2 . _)
990 (string<? p1 p2)))))))))))))
991
e387ab7c
LC
992(test-equal "map-derivation"
993 "hello"
994 (let* ((joke (package-derivation %store guile-1.8))
995 (good (package-derivation %store %bootstrap-guile))
996 (drv1 (build-expression->derivation %store "original-drv1"
e387ab7c 997 #f ; systematically fail
e387ab7c
LC
998 #:guile-for-build joke))
999 (drv2 (build-expression->derivation %store "original-drv2"
e387ab7c
LC
1000 '(call-with-output-file %output
1001 (lambda (p)
dd1a5a15 1002 (display "hello" p)))))
e387ab7c 1003 (drv3 (build-expression->derivation %store "drv-to-remap"
e387ab7c
LC
1004 '(let ((in (assoc-ref
1005 %build-inputs "in")))
1006 (copy-file in %output))
dd1a5a15 1007 #:inputs `(("in" ,drv1))
e387ab7c
LC
1008 #:guile-for-build joke))
1009 (drv4 (map-derivation %store drv3 `((,drv1 . ,drv2)
1010 (,joke . ,good))))
1011 (out (derivation->output-path drv4)))
1012 (and (build-derivations %store (list (pk 'remapped drv4)))
1013 (call-with-input-file out get-string-all))))
1014
a716e36d
LC
1015(test-equal "map-derivation, sources"
1016 "hello"
1017 (let* ((script1 (add-text-to-store %store "fail.sh" "exit 1"))
1018 (script2 (add-text-to-store %store "hi.sh" "echo -n hello > $out"))
1019 (bash-full (package-derivation %store (@ (gnu packages bash) bash)))
1020 (drv1 (derivation %store "drv-to-remap"
1021
1022 ;; XXX: This wouldn't work in practice, but if
1023 ;; we append "/bin/bash" then we can't replace
1024 ;; it with the bootstrap bash, which is a
1025 ;; single file.
1026 (derivation->output-path bash-full)
1027
1028 `("-e" ,script1)
1029 #:inputs `((,bash-full) (,script1))))
1030 (drv2 (map-derivation %store drv1
1031 `((,bash-full . ,%bash)
1032 (,script1 . ,script2))))
1033 (out (derivation->output-path drv2)))
1034 (and (build-derivations %store (list (pk 'remapped* drv2)))
1035 (call-with-input-file out get-string-all))))
1036
341c6fdd 1037(test-end)