Augment `build-expression->derivation' with #:modules; add `http-fetch'.
[guix.git] / tests / utils.scm
blobb3c7fefa39ee51e97fab7a1a1cabfaad2f66d628
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/>.
20 (define-module (test-utils)
21   #:use-module (guix utils)
22   #:use-module (srfi srfi-1)
23   #:use-module (srfi srfi-11)
24   #:use-module (srfi srfi-26)
25   #:use-module (srfi srfi-64)
26   #:use-module (rnrs bytevectors)
27   #:use-module (rnrs io ports)
28   #:use-module (ice-9 rdelim)
29   #:use-module (ice-9 popen))
31 (test-begin "utils")
33 (test-assert "bytevector->base32-string"
34   (fold (lambda (bv expected result)
35           (and result
36                (string=? (bytevector->base32-string bv)
37                          expected)))
38         #t
40         ;; Examples from RFC 4648.
41         (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))
42         '(""
43           "my"
44           "mzxq"
45           "mzxw6"
46           "mzxw6yq"
47           "mzxw6ytb"
48           "mzxw6ytboi")))
50 (test-assert "base32-string->bytevector"
51   (every (lambda (bv)
52            (equal? (base32-string->bytevector
53                     (bytevector->base32-string bv))
54                    bv))
55          ;; Examples from RFC 4648.
56          (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
58 (test-assert "nix-base32-string->bytevector"
59   (every (lambda (bv)
60            (equal? (nix-base32-string->bytevector
61                     (bytevector->nix-base32-string bv))
62                    bv))
63          ;; Examples from RFC 4648.
64          (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
66 (test-assert "bytevector->base16-string->bytevector"
67   (every (lambda (bv)
68            (equal? (base16-string->bytevector
69                     (bytevector->base16-string bv))
70                    bv))
71          (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
73 ;; The following tests requires `nix-hash' in $PATH.
74 (test-skip (if (false-if-exception (system* "nix-hash" "--version"))
75                0
76                1))
78 (test-assert "sha256 & bytevector->nix-base32-string"
79   (let ((file (search-path %load-path "tests/test.drv")))
80     (equal? (bytevector->nix-base32-string
81              (sha256 (call-with-input-file file get-bytevector-all)))
82             (let* ((c (format #f "nix-hash --type sha256 --base32 --flat \"~a\""
83                               file))
84                    (p (open-input-pipe c))
85                    (l (read-line p)))
86               (close-pipe p)
87               l))))
89 (test-assert "gnu-triplet->nix-system"
90   (let ((samples '(("i586-gnu0.3" "i686-gnu")
91                    ("x86_64-unknown-linux-gnu" "x86_64-linux")
92                    ("i386-pc-linux-gnu" "i686-linux")
93                    ("x86_64-unknown-freebsd8.2" "x86_64-freebsd")
94                    ("x86_64-apple-darwin10.8.0" "x86_64-darwin")
95                    ("i686-pc-cygwin" "i686-cygwin"))))
96     (let-values (((gnu nix) (unzip2 samples)))
97       (every (lambda (gnu nix)
98                (equal? nix (gnu-triplet->nix-system gnu)))
99              gnu nix))))
101 (test-end)
104 (exit (= (test-runner-fail-count (test-runner-current)) 0))
106 ;;; Local Variables:
107 ;;; eval: (put 'test-assert 'scheme-indent-function 1)
108 ;;; End: