2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-04-11 16:54:52 -04:00
|
|
|
|
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2012-06-11 18:18:14 -04:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-06-11 18:18:14 -04:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-06-11 18:18:14 -04:00
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
2012-06-11 18:18:14 -04:00
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
2012-06-11 18:18:14 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (test-builders)
|
2012-11-12 17:10:26 -05:00
|
|
|
|
#:use-module (guix download)
|
2012-06-27 17:58:07 -04:00
|
|
|
|
#:use-module (guix build-system)
|
|
|
|
|
#:use-module (guix build-system gnu)
|
2012-06-11 18:18:14 -04:00
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix utils)
|
Move base32 code to (guix base32).
* guix/utils.scm (bytevector-quintet-ref, bytevector-quintet-ref-right,
bytevector-quintet-length, bytevector-quintet-fold,
bytevector-quintet-fold-right, make-bytevector->base32-string,
%nix-base32-chars, %rfc4648-base32-chars, bytevector->base32-string,
bytevector->nix-base32-string, bytevector-quintet-set!,
bytevector-quintet-set-right!, base32-string-unfold,
base32-string-unfold-right, make-base32-string->bytevector,
base32-string->bytevector, nix-base32-string->bytevector): Move to...
* guix/base32.scm: ... here. New file.
* tests/utils.scm (%nix-hash, "bytevector->base32-string",
"base32-string->bytevector", "nix-base32-string->bytevector", "sha256
& bytevector->base32-string"): Move to...
* tests/base32.scm: ... here. New file
* guix-download.in, guix/derivations.scm, guix/packages.scm,
guix/snix.scm, tests/builders.scm, tests/derivations.scm: Adjust
accordingly.
* guix.scm (%public-modules): Add `base32'.
2012-11-11 16:33:28 -05:00
|
|
|
|
#:use-module (guix base32)
|
2012-06-11 18:18:14 -04:00
|
|
|
|
#:use-module (guix derivations)
|
2013-04-11 16:54:52 -04:00
|
|
|
|
#:use-module ((guix packages)
|
|
|
|
|
#:select (package-derivation package-native-search-paths))
|
2013-01-17 19:06:24 -05:00
|
|
|
|
#:use-module (gnu packages bootstrap)
|
2012-10-27 19:58:39 -04:00
|
|
|
|
#:use-module (ice-9 match)
|
2012-06-11 18:18:14 -04:00
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-64))
|
|
|
|
|
|
|
|
|
|
;; Test the higher-level builders.
|
|
|
|
|
|
|
|
|
|
(define %store
|
|
|
|
|
(false-if-exception (open-connection)))
|
|
|
|
|
|
2012-11-02 17:38:52 -04:00
|
|
|
|
(when %store
|
|
|
|
|
;; Make sure we build everything by ourselves.
|
|
|
|
|
(set-build-options %store #:use-substitutes? #f))
|
|
|
|
|
|
2012-10-05 19:24:46 -04:00
|
|
|
|
(define %bootstrap-inputs
|
2012-10-27 19:58:39 -04:00
|
|
|
|
;; Use the bootstrap inputs so it doesn't take ages to run these tests.
|
|
|
|
|
;; This still involves building Make, Diffutils, and Findutils.
|
|
|
|
|
;; XXX: We're relying on the higher-level `package-derivations' here.
|
|
|
|
|
(and %store
|
|
|
|
|
(map (match-lambda
|
|
|
|
|
((name package)
|
|
|
|
|
(list name (package-derivation %store package))))
|
2013-01-17 19:06:24 -05:00
|
|
|
|
(@@ (gnu packages base) %boot0-inputs))))
|
2012-10-05 19:24:46 -04:00
|
|
|
|
|
2013-04-11 16:54:52 -04:00
|
|
|
|
(define %bootstrap-search-paths
|
|
|
|
|
;; Search path specifications that go with %BOOTSTRAP-INPUTS.
|
|
|
|
|
(append-map (match-lambda
|
|
|
|
|
((name package _ ...)
|
|
|
|
|
(package-native-search-paths package)))
|
|
|
|
|
(@@ (gnu packages base) %boot0-inputs)))
|
|
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
|
(define network-reachable?
|
|
|
|
|
(false-if-exception (getaddrinfo "www.gnu.org" "80" AI_NUMERICSERV)))
|
|
|
|
|
|
2012-10-05 19:24:46 -04:00
|
|
|
|
|
2012-06-11 18:18:14 -04:00
|
|
|
|
(test-begin "builders")
|
|
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
|
(unless network-reachable? (test-skip 1))
|
2012-11-12 17:10:26 -05:00
|
|
|
|
(test-assert "url-fetch"
|
|
|
|
|
(let* ((url '("http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz"
|
|
|
|
|
"ftp://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz"))
|
|
|
|
|
(hash (nix-base32-string->bytevector
|
|
|
|
|
"0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))
|
2012-11-12 18:40:29 -05:00
|
|
|
|
(drv-path (url-fetch %store url 'sha256 hash
|
|
|
|
|
#:guile %bootstrap-guile))
|
2012-11-12 17:10:26 -05:00
|
|
|
|
(out-path (derivation-path->output-path drv-path)))
|
|
|
|
|
(and (build-derivations %store (list drv-path))
|
|
|
|
|
(file-exists? out-path)
|
|
|
|
|
(valid-path? %store out-path))))
|
2012-06-11 18:18:14 -04:00
|
|
|
|
|
2012-06-27 17:58:07 -04:00
|
|
|
|
(test-assert "gnu-build-system"
|
|
|
|
|
(and (build-system? gnu-build-system)
|
|
|
|
|
(eq? gnu-build (build-system-builder gnu-build-system))))
|
|
|
|
|
|
2012-12-13 16:06:45 -05:00
|
|
|
|
(unless network-reachable? (test-skip 1))
|
2012-06-13 11:03:34 -04:00
|
|
|
|
(test-assert "gnu-build"
|
|
|
|
|
(let* ((url "http://ftp.gnu.org/gnu/hello/hello-2.8.tar.gz")
|
|
|
|
|
(hash (nix-base32-string->bytevector
|
|
|
|
|
"0wqd8sjmxfskrflaxywc7gqw7sfawrfvdxd9skxawzfgyy0pzdz6"))
|
2012-11-12 18:40:29 -05:00
|
|
|
|
(tarball (url-fetch %store url 'sha256 hash
|
|
|
|
|
#:guile %bootstrap-guile))
|
2012-06-13 11:03:34 -04:00
|
|
|
|
(build (gnu-build %store "hello-2.8" tarball
|
2012-10-05 19:24:46 -04:00
|
|
|
|
%bootstrap-inputs
|
|
|
|
|
#:implicit-inputs? #f
|
2013-04-11 16:54:52 -04:00
|
|
|
|
#:guile %bootstrap-guile
|
|
|
|
|
#:search-paths %bootstrap-search-paths))
|
2012-06-30 18:21:16 -04:00
|
|
|
|
(out (derivation-path->output-path build)))
|
2012-06-13 11:03:34 -04:00
|
|
|
|
(and (build-derivations %store (list (pk 'hello-drv build)))
|
2012-06-30 18:21:16 -04:00
|
|
|
|
(valid-path? %store out)
|
|
|
|
|
(file-exists? (string-append out "/bin/hello")))))
|
2012-06-13 11:03:34 -04:00
|
|
|
|
|
2012-06-11 18:18:14 -04:00
|
|
|
|
(test-end "builders")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(exit (= (test-runner-fail-count (test-runner-current)) 0))
|