tests: Skip network-dependent tests when the network is unreachable.
[jackhill/guix/guix.git] / tests / union.scm
1 ;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
2 ;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
3 ;;;
4 ;;; This file is part of Guix.
5 ;;;
6 ;;; 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 ;;; 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 Guix. If not, see <http://www.gnu.org/licenses/>.
18
19
20 (define-module (test-union)
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 (distro packages bootstrap)
29 #:use-module (srfi srfi-64)
30 #:use-module (ice-9 match))
31
32 ;; Exercise the (guix build union) module.
33
34 (define %store
35 (false-if-exception (open-connection)))
36
37 (when %store
38 ;; By default, use %BOOTSTRAP-GUILE for the current system.
39 (let ((drv (package-derivation %store %bootstrap-guile)))
40 (%guile-for-build drv)))
41
42 \f
43 (test-begin "union")
44
45 (test-equal "tree-union, empty"
46 '()
47 (tree-union '()))
48
49 (test-equal "tree-union, leaves only"
50 '(a b c d)
51 (tree-union '(a b c d)))
52
53 (test-equal "tree-union, simple"
54 '((bin ls touch make awk gawk))
55 (tree-union '((bin ls touch)
56 (bin make)
57 (bin awk gawk))))
58
59 (test-equal "tree-union, several levels"
60 '((share (doc (make README) (coreutils README)))
61 (bin ls touch make))
62 (tree-union '((bin ls touch)
63 (share (doc (coreutils README)))
64 (bin make)
65 (share (doc (make README))))))
66
67 (test-skip (if (and %store
68 (false-if-exception
69 (getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)))
70 0
71 1))
72
73 (test-assert "union-build"
74 (let* ((inputs (map (match-lambda
75 ((name package)
76 `(,name ,(package-derivation %store package))))
77 %bootstrap-inputs))
78 (builder `(begin
79 (use-modules (guix build union))
80 (union-build (assoc-ref %outputs "out")
81 (map cdr %build-inputs))))
82 (drv
83 (build-expression->derivation %store "union-test"
84 (%current-system)
85 builder inputs
86 #:modules '((guix build union)))))
87 (and (build-derivations %store (list (pk 'drv drv)))
88 (with-directory-excursion (derivation-path->output-path drv)
89 (and (file-exists? "bin/touch")
90 (file-exists? "bin/gcc")
91 (file-exists? "bin/ld")
92 (file-exists? "lib/libc.so")
93 (directory-exists? "lib/gcc")
94 (file-exists? "include/unistd.h"))))))
95
96 (test-end)
97
98 \f
99 (exit (= (test-runner-fail-count (test-runner-current)) 0))
100
101 ;;; Local Variables:
102 ;;; eval: (put 'test-assert 'scheme-indent-function 1)
103 ;;; eval: (put 'test-equal 'scheme-indent-function 1)
104 ;;; eval: (put 'call-with-input-string 'scheme-indent-function 1)
105 ;;; End: