tests: Choose a less expensive test for packages.
[jackhill/guix/guix.git] / tests / builders.scm
CommitLineData
3eb98237
LC
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-builders)
21 #:use-module (guix http)
208f7cd1
LC
22 #:use-module (guix build-system)
23 #:use-module (guix build-system gnu)
3eb98237
LC
24 #:use-module (guix store)
25 #:use-module (guix utils)
26 #:use-module (guix derivations)
8f3ecbd7 27 #:use-module ((guix packages) #:select (package-derivation))
18633d4f 28 #:use-module (distro packages bootstrap)
8f3ecbd7 29 #:use-module (ice-9 match)
3eb98237
LC
30 #:use-module (srfi srfi-1)
31 #:use-module (srfi srfi-64))
32
33;; Test the higher-level builders.
34
35(define %store
36 (false-if-exception (open-connection)))
37
81dbd783
LC
38(when %store
39 ;; Make sure we build everything by ourselves.
40 (set-build-options %store #:use-substitutes? #f))
41
14da91e2 42(define %bootstrap-inputs
8f3ecbd7
LC
43 ;; Use the bootstrap inputs so it doesn't take ages to run these tests.
44 ;; This still involves building Make, Diffutils, and Findutils.
45 ;; XXX: We're relying on the higher-level `package-derivations' here.
46 (and %store
47 (map (match-lambda
48 ((name package)
49 (list name (package-derivation %store package))))
50 (@@ (distro packages base) %boot0-inputs))))
14da91e2 51
14da91e2 52\f
3eb98237
LC
53(test-begin "builders")
54
55(test-assert "http-fetch"
56 (let* ((url "http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz")
57 (hash (nix-base32-string->bytevector
58 "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))
31ef99a8
LC
59 (drv-path (http-fetch %store url 'sha256 hash))
60 (out-path (derivation-path->output-path drv-path)))
3eb98237 61 (and (build-derivations %store (list drv-path))
31ef99a8
LC
62 (file-exists? out-path)
63 (valid-path? %store out-path))))
3eb98237 64
208f7cd1
LC
65(test-assert "gnu-build-system"
66 (and (build-system? gnu-build-system)
67 (eq? gnu-build (build-system-builder gnu-build-system))))
68
c36db98c
LC
69(test-assert "gnu-build"
70 (let* ((url "http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz")
71 (hash (nix-base32-string->bytevector
72 "0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))
73 (tarball (http-fetch %store url 'sha256 hash))
74 (build (gnu-build %store "hello-2.8" tarball
14da91e2
LC
75 %bootstrap-inputs
76 #:implicit-inputs? #f
77 #:guile %bootstrap-guile))
31ef99a8 78 (out (derivation-path->output-path build)))
c36db98c 79 (and (build-derivations %store (list (pk 'hello-drv build)))
31ef99a8
LC
80 (valid-path? %store out)
81 (file-exists? (string-append out "/bin/hello")))))
c36db98c 82
3eb98237
LC
83(test-end "builders")
84
85\f
86(exit (= (test-runner-fail-count (test-runner-current)) 0))
87
88;;; Local Variables:
89;;; eval: (put 'test-assert 'scheme-indent-function 1)
90;;; End: