gnu: cool-retro-term: Upgrade to 1.1.1.
[jackhill/guix/guix.git] / tests / profiles.scm
CommitLineData
a2078770 1;;; GNU Guix --- Functional package management for GNU
38b77f34 2;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
343745c8 3;;; Copyright © 2014 Alex Kost <alezost@gmail.com>
a2078770
LC
4;;;
5;;; This file is part of GNU Guix.
6;;;
7;;; GNU Guix is free software; you can redistribute it and/or modify it
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;;;
12;;; GNU Guix is distributed in the hope that it will be useful, but
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
18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
19
20(define-module (test-profiles)
c1bc358f 21 #:use-module (guix tests)
a2078770 22 #:use-module (guix profiles)
2225d56a 23 #:use-module (guix gexp)
462f5cca
LC
24 #:use-module (guix store)
25 #:use-module (guix monads)
ef8de985 26 #:use-module (guix grafts)
462f5cca
LC
27 #:use-module (guix packages)
28 #:use-module (guix derivations)
a0dac7a0 29 #:use-module (guix build-system trivial)
462f5cca 30 #:use-module (gnu packages bootstrap)
e39d1461 31 #:use-module ((gnu packages base) #:prefix packages:)
dedb17ad 32 #:use-module ((gnu packages guile) #:prefix packages:)
a2078770 33 #:use-module (ice-9 match)
ef8993e2 34 #:use-module (ice-9 regex)
d664f1b4
LC
35 #:use-module (ice-9 popen)
36 #:use-module (rnrs io ports)
ccda8f7d 37 #:use-module (srfi srfi-1)
79601521 38 #:use-module (srfi srfi-11)
a654dc4b 39 #:use-module (srfi srfi-34)
a2078770
LC
40 #:use-module (srfi srfi-64))
41
343745c8 42;; Test the (guix profiles) module.
a2078770 43
462f5cca 44(define %store
c1bc358f 45 (open-connection-for-tests))
a2078770 46
ef8de985
LC
47;; Globally disable grafts because they can trigger early builds.
48(%graft? #f)
49
a2078770
LC
50;; Example manifest entries.
51
f7554030
AK
52(define guile-1.8.8
53 (manifest-entry
54 (name "guile")
55 (version "1.8.8")
56 (item "/gnu/store/...")
57 (output "out")))
58
a2078770
LC
59(define guile-2.0.9
60 (manifest-entry
61 (name "guile")
62 (version "2.0.9")
a54c94a4 63 (item "/gnu/store/...")
a2078770
LC
64 (output "out")))
65
66(define guile-2.0.9:debug
67 (manifest-entry (inherit guile-2.0.9)
68 (output "debug")))
69
79601521
LC
70(define glibc
71 (manifest-entry
72 (name "glibc")
73 (version "2.19")
74 (item "/gnu/store/...")
75 (output "out")))
76
a2078770
LC
77\f
78(test-begin "profiles")
79
80(test-assert "manifest-installed?"
81 (let ((m (manifest (list guile-2.0.9 guile-2.0.9:debug))))
82 (and (manifest-installed? m (manifest-pattern (name "guile")))
83 (manifest-installed? m (manifest-pattern
84 (name "guile") (output "debug")))
85 (manifest-installed? m (manifest-pattern
86 (name "guile") (output "out")
87 (version "2.0.9")))
88 (not (manifest-installed?
89 m (manifest-pattern (name "guile") (version "1.8.8"))))
90 (not (manifest-installed?
91 m (manifest-pattern (name "guile") (output "foobar")))))))
92
93(test-assert "manifest-matching-entries"
94 (let* ((e (list guile-2.0.9 guile-2.0.9:debug))
95 (m (manifest e)))
487cbb01 96 (and (equal? e
a2078770
LC
97 (manifest-matching-entries m
98 (list (manifest-pattern
99 (name "guile")
100 (output #f)))))
101 (equal? (list guile-2.0.9)
102 (manifest-matching-entries m
103 (list (manifest-pattern
104 (name "guile")
105 (version "2.0.9"))))))))
106
487cbb01
LC
107(test-assert "manifest-matching-entries, no match"
108 (let ((m (manifest (list guile-2.0.9)))
109 (p (manifest-pattern (name "python"))))
110 (guard (c ((unmatched-pattern-error? c)
111 (and (eq? p (unmatched-pattern-error-pattern c))
112 (eq? m (unmatched-pattern-error-manifest c)))))
113 (manifest-matching-entries m (list p))
114 #f)))
115
a2078770
LC
116(test-assert "manifest-remove"
117 (let* ((m0 (manifest (list guile-2.0.9 guile-2.0.9:debug)))
118 (m1 (manifest-remove m0
119 (list (manifest-pattern (name "guile")))))
120 (m2 (manifest-remove m1
121 (list (manifest-pattern (name "guile"))))) ; same
122 (m3 (manifest-remove m2
123 (list (manifest-pattern
124 (name "guile") (output "debug")))))
125 (m4 (manifest-remove m3
126 (list (manifest-pattern (name "guile"))))))
127 (match (manifest-entries m2)
128 ((($ <manifest-entry> "guile" "2.0.9" "debug"))
129 (and (equal? m1 m2)
130 (null? (manifest-entries m3))
131 (null? (manifest-entries m4)))))))
132
f7554030
AK
133(test-assert "manifest-add"
134 (let* ((m0 (manifest '()))
135 (m1 (manifest-add m0 (list guile-1.8.8)))
136 (m2 (manifest-add m1 (list guile-2.0.9)))
137 (m3 (manifest-add m2 (list guile-2.0.9:debug)))
138 (m4 (manifest-add m3 (list guile-2.0.9:debug))))
139 (and (match (manifest-entries m1)
140 ((($ <manifest-entry> "guile" "1.8.8" "out")) #t)
141 (_ #f))
142 (match (manifest-entries m2)
143 ((($ <manifest-entry> "guile" "2.0.9" "out")) #t)
144 (_ #f))
145 (equal? m3 m4))))
146
435603a1
LC
147(test-equal "manifest-add removes duplicates" ;<https://bugs.gnu.org/30569>
148 (list guile-2.0.9)
149 (manifest-entries (manifest-add (manifest '())
150 (list guile-2.0.9 guile-2.0.9))))
151
343745c8
AK
152(test-assert "manifest-perform-transaction"
153 (let* ((m0 (manifest (list guile-2.0.9 guile-2.0.9:debug)))
154 (t1 (manifest-transaction
155 (install (list guile-1.8.8))
156 (remove (list (manifest-pattern (name "guile")
157 (output "debug"))))))
158 (t2 (manifest-transaction
159 (remove (list (manifest-pattern (name "guile")
160 (version "2.0.9")
161 (output #f))))))
162 (m1 (manifest-perform-transaction m0 t1))
163 (m2 (manifest-perform-transaction m1 t2))
164 (m3 (manifest-perform-transaction m0 t2)))
165 (and (match (manifest-entries m1)
166 ((($ <manifest-entry> "guile" "1.8.8" "out")) #t)
167 (_ #f))
168 (equal? m1 m2)
169 (null? (manifest-entries m3)))))
170
79601521
LC
171(test-assert "manifest-transaction-effects"
172 (let* ((m0 (manifest (list guile-1.8.8)))
173 (t (manifest-transaction
487cbb01 174 (install (list guile-2.0.9 glibc)))))
46b23e1a 175 (let-values (((remove install upgrade downgrade)
79601521 176 (manifest-transaction-effects m0 t)))
46b23e1a 177 (and (null? remove) (null? downgrade)
79601521 178 (equal? (list glibc) install)
ef8993e2
LC
179 (equal? (list (cons guile-1.8.8 guile-2.0.9)) upgrade)))))
180
46b23e1a
LC
181(test-assert "manifest-transaction-effects and downgrades"
182 (let* ((m0 (manifest (list guile-2.0.9)))
183 (t (manifest-transaction (install (list guile-1.8.8)))))
184 (let-values (((remove install upgrade downgrade)
185 (manifest-transaction-effects m0 t)))
186 (and (null? remove) (null? install) (null? upgrade)
187 (equal? (list (cons guile-2.0.9 guile-1.8.8)) downgrade)))))
188
3bea13bb
LC
189(test-assert "manifest-transaction-effects and pseudo-upgrades"
190 (let* ((m0 (manifest (list guile-2.0.9)))
191 (t (manifest-transaction (install (list guile-2.0.9)))))
192 (let-values (((remove install upgrade downgrade)
193 (manifest-transaction-effects m0 t)))
194 (and (null? remove) (null? install) (null? downgrade)
195 (equal? (list (cons guile-2.0.9 guile-2.0.9)) upgrade)))))
196
c8c25704
LC
197(test-assert "manifest-transaction-null?"
198 (manifest-transaction-null? (manifest-transaction)))
199
6d382339
LC
200(test-assert "manifest-transaction-removal-candidate?"
201 (let ((m (manifest (list guile-2.0.9)))
202 (t (manifest-transaction
203 (remove (list (manifest-pattern (name "guile")))))))
204 (and (manifest-transaction-removal-candidate? guile-2.0.9 t)
205 (not (manifest-transaction-removal-candidate? glibc t)))))
206
ebf5ad46
LC
207(test-assertm "profile-derivation"
208 (mlet* %store-monad
209 ((entry -> (package->manifest-entry %bootstrap-guile))
210 (guile (package->derivation %bootstrap-guile))
211 (drv (profile-derivation (manifest (list entry))
a6562c7e
LC
212 #:hooks '()
213 #:locales? #f))
ebf5ad46
LC
214 (profile -> (derivation->output-path drv))
215 (bindir -> (string-append profile "/bin"))
216 (_ (built-derivations (list drv))))
217 (return (and (file-exists? (string-append bindir "/guile"))
218 (string=? (dirname (readlink bindir))
219 (derivation->output-path guile))))))
462f5cca 220
e00ade3f
LC
221(test-assertm "profile-derivation relative symlinks, one entry"
222 (mlet* %store-monad
223 ((entry -> (package->manifest-entry %bootstrap-guile))
224 (guile (package->derivation %bootstrap-guile))
225 (drv (profile-derivation (manifest (list entry))
226 #:relative-symlinks? #t
227 #:hooks '()
228 #:locales? #f))
229 (profile -> (derivation->output-path drv))
230 (bindir -> (string-append profile "/bin"))
231 (_ (built-derivations (list drv))))
232 (return (and (file-exists? (string-append bindir "/guile"))
233 (string=? (readlink bindir)
234 (string-append "../"
235 (basename
236 (derivation->output-path guile))
237 "/bin"))))))
238
239(unless (network-reachable?) (test-skip 1))
240(test-assertm "profile-derivation relative symlinks, two entries"
241 (mlet* %store-monad
242 ((gnu-make-boot0 -> (@@ (gnu packages commencement) gnu-make-boot0))
243 (manifest -> (packages->manifest
244 (list %bootstrap-guile gnu-make-boot0)))
245 (guile (package->derivation %bootstrap-guile))
246 (make (package->derivation gnu-make-boot0))
247 (drv (profile-derivation manifest
248 #:relative-symlinks? #t
249 #:hooks '()
250 #:locales? #f))
251 (profile -> (derivation->output-path drv))
252 (bindir -> (string-append profile "/bin"))
253 (_ (built-derivations (list drv))))
254 (return (and (file-exists? (string-append bindir "/guile"))
255 (file-exists? (string-append bindir "/make"))
256 (string=? (readlink (string-append bindir "/guile"))
257 (string-append "../../"
258 (basename
259 (derivation->output-path guile))
260 "/bin/guile"))
261 (string=? (readlink (string-append bindir "/make"))
262 (string-append "../../"
263 (basename
264 (derivation->output-path make))
265 "/bin/make"))))))
266
e39d1461
LC
267(test-assertm "profile-derivation, inputs"
268 (mlet* %store-monad
269 ((entry -> (package->manifest-entry packages:glibc "debug"))
270 (drv (profile-derivation (manifest (list entry))
a6562c7e
LC
271 #:hooks '()
272 #:locales? #f)))
e39d1461
LC
273 (return (derivation-inputs drv))))
274
176febe3
LC
275(test-assertm "profile-derivation, cross-compilation"
276 (mlet* %store-monad
277 ((manifest -> (packages->manifest (list packages:sed packages:grep)))
278 (target -> "arm-linux-gnueabihf")
279 (grep (package->cross-derivation packages:grep target))
280 (sed (package->cross-derivation packages:sed target))
281 (locales (package->derivation packages:glibc-utf8-locales))
282 (drv (profile-derivation manifest
283 #:hooks '()
284 #:locales? #t
285 #:target target)))
ede121de
CM
286 (define (find-input package)
287 (let ((name (string-append (package-full-name package "-") ".drv")))
176febe3
LC
288 (any (lambda (input)
289 (let ((input (derivation-input-path input)))
290 (and (string-suffix? name input) input)))
291 (derivation-inputs drv))))
292
293 ;; The inputs for grep and sed should be cross-build derivations, but that
294 ;; for the glibc-utf8-locales should be a native build.
295 (return (and (string=? (derivation-system drv) (%current-system))
ede121de 296 (string=? (find-input packages:grep)
176febe3 297 (derivation-file-name grep))
ede121de 298 (string=? (find-input packages:sed)
176febe3 299 (derivation-file-name sed))
ede121de 300 (string=? (find-input packages:glibc-utf8-locales)
176febe3
LC
301 (derivation-file-name locales))))))
302
9e90fc77
LC
303(test-assert "package->manifest-entry defaults to \"out\""
304 (let ((outputs (package-outputs packages:glibc)))
305 (equal? (manifest-entry-output
306 (package->manifest-entry (package
307 (inherit packages:glibc)
308 (outputs (reverse outputs)))))
309 (manifest-entry-output
310 (package->manifest-entry packages:glibc))
311 "out")))
312
dedb17ad
LC
313(test-assertm "profile-manifest, search-paths"
314 (mlet* %store-monad
315 ((guile -> (package
316 (inherit %bootstrap-guile)
317 (native-search-paths
318 (package-native-search-paths packages:guile-2.0))))
319 (entry -> (package->manifest-entry guile))
320 (drv (profile-derivation (manifest (list entry))
a6562c7e
LC
321 #:hooks '()
322 #:locales? #f))
dedb17ad
LC
323 (profile -> (derivation->output-path drv)))
324 (mbegin %store-monad
325 (built-derivations (list drv))
326
327 ;; Read the manifest back and make sure search paths are preserved.
328 (let ((manifest (profile-manifest profile)))
329 (match (manifest-entries manifest)
330 ((result)
331 (return (equal? (manifest-entry-search-paths result)
332 (manifest-entry-search-paths entry)
333 (package-native-search-paths
334 packages:guile-2.0)))))))))
d664f1b4 335
ccda8f7d
LC
336(test-assert "package->manifest-entry, search paths"
337 ;; See <http://bugs.gnu.org/22073>.
2d17a904 338 (let ((mpl (@ (gnu packages python-xyz) python2-matplotlib)))
ccda8f7d
LC
339 (lset= eq?
340 (package-transitive-native-search-paths mpl)
341 (manifest-entry-search-paths
342 (package->manifest-entry mpl)))))
343
55b4715f
LC
344(test-equal "packages->manifest, propagated inputs"
345 (map (match-lambda
346 ((label package)
347 (list (package-name package) (package-version package)
348 package)))
349 (package-propagated-inputs packages:guile-2.2))
350 (map (lambda (entry)
351 (list (manifest-entry-name entry)
352 (manifest-entry-version entry)
353 (manifest-entry-item entry)))
354 (manifest-entry-dependencies
355 (package->manifest-entry packages:guile-2.2))))
356
b3a00885
LC
357(test-assert "manifest-entry-parent"
358 (let ((entry (package->manifest-entry packages:guile-2.2)))
359 (match (manifest-entry-dependencies entry)
360 ((dependencies ..1)
361 (and (every (lambda (parent)
362 (eq? entry (force parent)))
363 (map manifest-entry-parent dependencies))
364 (not (force (manifest-entry-parent entry))))))))
365
55b4715f
LC
366(test-assertm "read-manifest"
367 (mlet* %store-monad ((manifest -> (packages->manifest
368 (list (package
369 (inherit %bootstrap-guile)
370 (native-search-paths
371 (package-native-search-paths
372 packages:guile-2.0))))))
373 (drv (profile-derivation manifest
374 #:hooks '()
375 #:locales? #f))
376 (out -> (derivation->output-path drv)))
377 (define (entry->sexp entry)
378 (list (manifest-entry-name entry)
379 (manifest-entry-version entry)
380 (manifest-entry-search-paths entry)
b3a00885
LC
381 (manifest-entry-dependencies entry)
382 (force (manifest-entry-parent entry))))
55b4715f
LC
383
384 (mbegin %store-monad
385 (built-derivations (list drv))
386 (let ((manifest2 (profile-manifest out)))
387 (return (equal? (map entry->sexp (manifest-entries manifest))
388 (map entry->sexp (manifest-entries manifest2))))))))
389
a654dc4b
LC
390(test-equal "collision"
391 '(("guile-bootstrap" "2.0") ("guile-bootstrap" "42"))
392 (guard (c ((profile-collision-error? c)
393 (let ((entry1 (profile-collision-error-entry c))
394 (entry2 (profile-collision-error-conflict c)))
395 (list (list (manifest-entry-name entry1)
396 (manifest-entry-version entry1))
397 (list (manifest-entry-name entry2)
398 (manifest-entry-version entry2))))))
399 (run-with-store %store
400 (mlet* %store-monad ((p0 -> (package
401 (inherit %bootstrap-guile)
402 (version "42")))
403 (p1 -> (dummy-package "p1"
404 (propagated-inputs `(("p0" ,p0)))))
405 (manifest -> (packages->manifest
406 (list %bootstrap-guile p1)))
407 (drv (profile-derivation manifest
408 #:hooks '()
409 #:locales? #f)))
410 (return #f)))))
411
412(test-equal "collision of propagated inputs"
413 '(("guile-bootstrap" "2.0") ("guile-bootstrap" "42"))
414 (guard (c ((profile-collision-error? c)
415 (let ((entry1 (profile-collision-error-entry c))
416 (entry2 (profile-collision-error-conflict c)))
417 (list (list (manifest-entry-name entry1)
418 (manifest-entry-version entry1))
419 (list (manifest-entry-name entry2)
420 (manifest-entry-version entry2))))))
421 (run-with-store %store
422 (mlet* %store-monad ((p0 -> (package
423 (inherit %bootstrap-guile)
424 (version "42")))
425 (p1 -> (dummy-package "p1"
426 (propagated-inputs
427 `(("guile" ,%bootstrap-guile)))))
428 (p2 -> (dummy-package "p2"
429 (propagated-inputs
430 `(("guile" ,p0)))))
431 (manifest -> (packages->manifest (list p1 p2)))
432 (drv (profile-derivation manifest
433 #:hooks '()
434 #:locales? #f)))
435 (return #f)))))
436
437(test-assertm "no collision"
438 ;; Here we have an entry that is "lowered" (its 'item' field is a store file
439 ;; name) and another entry (its 'item' field is a package) that is
440 ;; equivalent.
441 (mlet* %store-monad ((p -> (dummy-package "p"
442 (propagated-inputs
443 `(("guile" ,%bootstrap-guile)))))
444 (guile (package->derivation %bootstrap-guile))
445 (entry -> (manifest-entry
446 (inherit (package->manifest-entry
447 %bootstrap-guile))
448 (item (derivation->output-path guile))))
449 (manifest -> (manifest
450 (list entry
451 (package->manifest-entry p))))
452 (drv (profile-derivation manifest)))
453 (return (->bool drv))))
454
d664f1b4
LC
455(test-assertm "etc/profile"
456 ;; Make sure we get an 'etc/profile' file that at least defines $PATH.
457 (mlet* %store-monad
458 ((guile -> (package
459 (inherit %bootstrap-guile)
460 (native-search-paths
461 (package-native-search-paths packages:guile-2.0))))
462 (entry -> (package->manifest-entry guile))
463 (drv (profile-derivation (manifest (list entry))
a6562c7e
LC
464 #:hooks '()
465 #:locales? #f))
d664f1b4
LC
466 (profile -> (derivation->output-path drv)))
467 (mbegin %store-monad
468 (built-derivations (list drv))
469 (let* ((pipe (open-input-pipe
9e006fb3
TUBK
470 (string-append "unset GUIX_PROFILE; "
471 ;; 'source' is a Bashism; use '.' (dot).
472 ". " profile "/etc/profile; "
473 ;; Don't try to parse set(1) output because
474 ;; it differs among shells; just use echo.
475 "echo $PATH")))
476 (path (get-string-all pipe)))
d664f1b4
LC
477 (return
478 (and (zero? (close-pipe pipe))
9e006fb3 479 (string-contains path (string-append profile "/bin"))))))))
d664f1b4 480
a0dac7a0
LC
481(test-assertm "etc/profile when etc/ already exists"
482 ;; Here 'union-build' makes the profile's etc/ a symlink to the package's
483 ;; etc/ directory, which makes it read-only. Make sure the profile build
484 ;; handles that.
485 (mlet* %store-monad
486 ((thing -> (dummy-package "dummy"
487 (build-system trivial-build-system)
488 (arguments
489 `(#:guile ,%bootstrap-guile
490 #:builder
491 (let ((out (assoc-ref %outputs "out")))
492 (mkdir out)
493 (mkdir (string-append out "/etc"))
494 (call-with-output-file (string-append out "/etc/foo")
495 (lambda (port)
1e868858
MW
496 (display "foo!" port)))
497 #t)))))
a0dac7a0
LC
498 (entry -> (package->manifest-entry thing))
499 (drv (profile-derivation (manifest (list entry))
a6562c7e
LC
500 #:hooks '()
501 #:locales? #f))
a0dac7a0
LC
502 (profile -> (derivation->output-path drv)))
503 (mbegin %store-monad
504 (built-derivations (list drv))
505 (return (and (file-exists? (string-append profile "/etc/profile"))
506 (string=? (call-with-input-file
507 (string-append profile "/etc/foo")
508 get-string-all)
509 "foo!"))))))
510
113c17a0
LC
511(test-assertm "etc/profile when etc/ is a symlink"
512 ;; When etc/ is a symlink, the unsymlink code in 0.8.2 would fail
513 ;; gracelessly because 'scandir' would return #f.
514 (mlet* %store-monad
515 ((thing -> (dummy-package "dummy"
516 (build-system trivial-build-system)
517 (arguments
518 `(#:guile ,%bootstrap-guile
519 #:builder
520 (let ((out (assoc-ref %outputs "out")))
521 (mkdir out)
522 (mkdir (string-append out "/foo"))
523 (symlink "foo" (string-append out "/etc"))
524 (call-with-output-file (string-append out "/etc/bar")
525 (lambda (port)
1e868858
MW
526 (display "foo!" port)))
527 #t)))))
113c17a0
LC
528 (entry -> (package->manifest-entry thing))
529 (drv (profile-derivation (manifest (list entry))
a6562c7e
LC
530 #:hooks '()
531 #:locales? #f))
113c17a0
LC
532 (profile -> (derivation->output-path drv)))
533 (mbegin %store-monad
534 (built-derivations (list drv))
535 (return (and (file-exists? (string-append profile "/etc/profile"))
536 (string=? (call-with-input-file
537 (string-append profile "/etc/bar")
538 get-string-all)
539 "foo!"))))))
540
2225d56a
LC
541(test-assertm "profile-derivation when etc/ is a relative symlink"
542 ;; See <https://bugs.gnu.org/32686>.
543 (mlet* %store-monad
544 ((etc (gexp->derivation
545 "etc"
546 #~(begin
547 (mkdir #$output)
548 (call-with-output-file (string-append #$output "/foo")
549 (lambda (port)
550 (display "Heya!" port))))))
551 (thing -> (dummy-package "dummy"
552 (build-system trivial-build-system)
553 (inputs
554 `(("etc" ,etc)))
555 (arguments
556 `(#:guile ,%bootstrap-guile
557 #:builder
558 (let ((out (assoc-ref %outputs "out"))
559 (etc (assoc-ref %build-inputs "etc")))
560 (mkdir out)
561 (symlink etc (string-append out "/etc"))
562 #t)))))
563 (entry -> (package->manifest-entry thing))
564 (drv (profile-derivation (manifest (list entry))
565 #:relative-symlinks? #t
566 #:hooks '()
567 #:locales? #f))
568 (profile -> (derivation->output-path drv)))
569 (mbegin %store-monad
570 (built-derivations (list drv))
571 (return (string=? (call-with-input-file
572 (string-append profile "/etc/foo")
573 get-string-all)
574 "Heya!")))))
575
22ef06b8
LC
576(test-equalm "union vs. dangling symlink" ;<https://bugs.gnu.org/26949>
577 "does-not-exist"
578 (mlet* %store-monad
579 ((thing1 -> (dummy-package "dummy"
580 (build-system trivial-build-system)
581 (arguments
582 `(#:guile ,%bootstrap-guile
583 #:builder
584 (let ((out (assoc-ref %outputs "out")))
585 (mkdir out)
586 (symlink "does-not-exist"
587 (string-append out "/dangling"))
588 #t)))))
589 (thing2 -> (package (inherit thing1) (name "dummy2")))
590 (drv (profile-derivation (packages->manifest
591 (list thing1 thing2))
592 #:hooks '()
593 #:locales? #f))
594 (profile -> (derivation->output-path drv)))
595 (mbegin %store-monad
596 (built-derivations (list drv))
597 (return (readlink (readlink (string-append profile "/dangling")))))))
598
38b77f34
LC
599(test-equalm "profile in profile"
600 '("foo" "0")
601
602 ;; Make sure we can build a profile that has another profile has one of its
603 ;; entries. The new profile's /manifest and /etc/profile must override the
604 ;; other's.
605 (mlet* %store-monad
606 ((prof0 (profile-derivation
607 (manifest
608 (list (package->manifest-entry %bootstrap-guile)))
609 #:hooks '()
610 #:locales? #f))
611 (prof1 (profile-derivation
612 (manifest (list (manifest-entry
613 (name "foo")
614 (version "0")
615 (item prof0))))
616 #:hooks '()
617 #:locales? #f)))
618 (mbegin %store-monad
619 (built-derivations (list prof1))
620 (let ((out (derivation->output-path prof1)))
621 (return (and (file-exists?
622 (string-append out "/bin/guile"))
623 (let ((manifest (profile-manifest out)))
624 (match (manifest-entries manifest)
625 ((entry)
626 (list (manifest-entry-name entry)
627 (manifest-entry-version entry)))))))))))
628
a2078770
LC
629(test-end "profiles")
630
a2078770
LC
631;;; Local Variables:
632;;; eval: (put 'dummy-package 'scheme-indent-function 1)
633;;; End: