Skip to content
Snippets Groups Projects
Commit fdb50f8d authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

tests: base32: Work around `system*' bug.

* tests/base32.scm (%nix-hash): When `getenv' returns the empty string,
  ignore it.
  (%have-nix-hash?): New variable.  Update `test-skip' clause to use it.
parent a9128eac
No related branches found
No related tags found
No related merge requests found
...@@ -23,15 +23,24 @@ (define-module (test-base32) ...@@ -23,15 +23,24 @@ (define-module (test-base32)
#:use-module (srfi srfi-64) #:use-module (srfi srfi-64)
#:use-module (ice-9 rdelim) #:use-module (ice-9 rdelim)
#:use-module (ice-9 popen) #:use-module (ice-9 popen)
#:use-module (ice-9 match)
#:use-module (rnrs bytevectors) #:use-module (rnrs bytevectors)
#:use-module (rnrs io ports)) #:use-module (rnrs io ports))
;; Test the (guix base32) module. ;; Test the (guix base32) module.
(define %nix-hash (define %nix-hash
(or (getenv "NIX_HASH") (or (and=> (getenv "NIX_HASH")
(match-lambda
("" #f)
(val val)))
"nix-hash")) "nix-hash"))
(define %have-nix-hash?
;; Note: Use `system', not `system*', because of <http://bugs.gnu.org/13166>.
(false-if-exception
(zero? (system (string-append %nix-hash " --version")))))
(test-begin "base32") (test-begin "base32")
(test-assert "bytevector->base32-string" (test-assert "bytevector->base32-string"
...@@ -67,10 +76,9 @@ (define %nix-hash ...@@ -67,10 +76,9 @@ (define %nix-hash
;; Examples from RFC 4648. ;; Examples from RFC 4648.
(map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar")))) (map string->utf8 '("" "f" "fo" "foo" "foob" "fooba" "foobar"))))
;; The following tests requires `nix-hash' in $PATH. ;; The following test requires `nix-hash' in $PATH.
(test-skip (if (false-if-exception (system* %nix-hash "--version")) (unless %have-nix-hash?
0 (test-skip 1))
1))
(test-assert "sha256 & bytevector->nix-base32-string" (test-assert "sha256 & bytevector->nix-base32-string"
(let ((file (search-path %load-path "tests/test.drv"))) (let ((file (search-path %load-path "tests/test.drv")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment