Factorize test suite support in (guix tests).
[jackhill/guix/guix.git] / tests / union.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014 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 (define-module (test-union)
20 #:use-module (guix tests)
21 #:use-module (guix store)
22 #:use-module (guix utils)
23 #:use-module (guix derivations)
24 #:use-module (guix packages)
25 #:use-module (guix build union)
26 #:use-module ((guix build utils)
27 #:select (with-directory-excursion directory-exists?))
28 #:use-module (gnu packages bootstrap)
29 #:use-module (srfi srfi-1)
30 #:use-module (srfi srfi-64)
31 #:use-module (rnrs io ports)
32 #:use-module (ice-9 match))
33
34 ;; Exercise the (guix build union) module.
35
36 (define %store
37 (open-connection-for-tests))
38
39 \f
40 (test-begin "union")
41
42 (test-assert "union-build with symlink to directory"
43 ;; http://bugs.gnu.org/17083
44 ;; Here both ONE and TWO provide an element called 'foo', but in ONE it's a
45 ;; directory whereas in TWO it's a symlink to a directory.
46 (let* ((one (build-expression->derivation
47 %store "one"
48 '(begin
49 (use-modules (guix build utils) (srfi srfi-26))
50 (let ((foo (string-append %output "/foo")))
51 (mkdir-p foo)
52 (call-with-output-file (string-append foo "/one")
53 (cut display "one" <>))))
54 #:modules '((guix build utils))))
55 (two (build-expression->derivation
56 %store "two"
57 '(begin
58 (use-modules (guix build utils) (srfi srfi-26))
59 (let ((foo (string-append %output "/foo"))
60 (bar (string-append %output "/bar")))
61 (mkdir-p bar)
62 (call-with-output-file (string-append bar "/two")
63 (cut display "two" <>))
64 (symlink "bar" foo)))
65 #:modules '((guix build utils))))
66 (builder '(begin
67 (use-modules (guix build union))
68
69 (union-build (assoc-ref %outputs "out")
70 (list (assoc-ref %build-inputs "one")
71 (assoc-ref %build-inputs "two")))))
72 (drv
73 (build-expression->derivation %store "union-collision-symlink"
74 builder
75 #:inputs `(("one" ,one) ("two" ,two))
76 #:modules '((guix build union)))))
77 (and (build-derivations %store (list drv))
78 (with-directory-excursion (pk (derivation->output-path drv))
79 (and (string=? "one"
80 (call-with-input-file "foo/one" get-string-all))
81 (string=? "two"
82 (call-with-input-file "foo/two" get-string-all))
83 (string=? "two"
84 (call-with-input-file "bar/two" get-string-all))
85 (not (file-exists? "bar/one")))))))
86
87 (test-skip (if (and %store
88 (false-if-exception
89 (getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)))
90 0
91 1))
92
93 (test-assert "union-build"
94 (let* ((inputs (map (match-lambda
95 ((name package)
96 `(,name ,(package-derivation %store package))))
97
98 ;; Purposefully leave duplicate entries.
99 (append %bootstrap-inputs
100 (take %bootstrap-inputs 3))))
101 (builder `(begin
102 (use-modules (guix build union))
103 (union-build (assoc-ref %outputs "out")
104 (map cdr %build-inputs))))
105 (drv
106 (build-expression->derivation %store "union-test"
107 builder
108 #:inputs inputs
109 #:modules '((guix build union)))))
110 (and (build-derivations %store (list (pk 'drv drv)))
111 (with-directory-excursion (derivation->output-path drv)
112 (and (file-exists? "bin/touch")
113 (file-exists? "bin/gcc")
114 (file-exists? "bin/ld")
115 (file-exists? "lib/libc.so")
116 (directory-exists? "lib/gcc")
117 (file-exists? "include/unistd.h")
118
119 ;; The 'include/c++' sub-directory is only found in
120 ;; gcc-bootstrap, so it should be unified in a
121 ;; straightforward way, without traversing it.
122 (eq? 'symlink (stat:type (lstat "include/c++")))
123
124 ;; Conversely, several inputs have a 'bin' sub-directory, so
125 ;; unifying it requires traversing them all, and creating a
126 ;; new 'bin' sub-directory in the profile.
127 (eq? 'directory (stat:type (lstat "bin"))))))))
128
129 (test-end)
130
131 \f
132 (exit (= (test-runner-fail-count (test-runner-current)) 0))