1 ;;; Guix --- Nix package management from Guile. -*- coding: utf-8 -*-
2 ;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
4 ;;; This file is part of Guix.
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.
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.
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))
33 (test-assert "bytevector->base32-string"
34 (fold (lambda (bv expected result)
36 (string=? (bytevector->base32-string bv)
40 ;; Examples from RFC 4648.
41 (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))
50 (test-assert "base32-string->bytevector"
52 (equal? (base32-string->bytevector
53 (bytevector->base32-string bv))
55 ;; Examples from RFC 4648.
56 (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
58 (test-assert "nix-base32-string->bytevector"
60 (equal? (nix-base32-string->bytevector
61 (bytevector->nix-base32-string bv))
63 ;; Examples from RFC 4648.
64 (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
66 (test-assert "bytevector->base16-string->bytevector"
68 (equal? (base16-string->bytevector
69 (bytevector->base16-string 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"))
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\""
84 (p (open-input-pipe c))
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)))
104 (exit (= (test-runner-fail-count (test-runner-current)) 0))
107 ;;; eval: (put 'test-assert 'scheme-indent-function 1)