2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2013-02-03 17:24:25 -05:00
|
|
|
|
;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
|
2012-12-09 17:52:59 -05:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; This file is part of GNU Guix.
|
2012-12-09 17:52:59 -05:00
|
|
|
|
;;;
|
2013-01-05 18:47:50 -05:00
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
2012-12-09 17:52:59 -05: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-12-09 17:52:59 -05: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-12-09 17:52:59 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (test-store)
|
|
|
|
|
#:use-module (guix store)
|
|
|
|
|
#:use-module (guix utils)
|
2013-07-01 17:28:21 -04:00
|
|
|
|
#:use-module (guix hash)
|
2012-12-09 17:52:59 -05:00
|
|
|
|
#:use-module (guix base32)
|
2013-02-03 17:24:25 -05:00
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix derivations)
|
2013-04-12 11:30:27 -04:00
|
|
|
|
#:use-module (guix nar)
|
2013-02-27 16:40:35 -05:00
|
|
|
|
#:use-module (gnu packages)
|
2013-01-17 19:06:24 -05:00
|
|
|
|
#:use-module (gnu packages bootstrap)
|
2012-12-09 17:52:59 -05:00
|
|
|
|
#:use-module (ice-9 match)
|
2013-12-20 11:17:42 -05:00
|
|
|
|
#:use-module (rnrs bytevectors)
|
2013-04-12 11:30:27 -04:00
|
|
|
|
#:use-module (rnrs io ports)
|
2013-04-02 04:44:20 -04:00
|
|
|
|
#:use-module (web uri)
|
2012-12-09 17:52:59 -05:00
|
|
|
|
#:use-module (srfi srfi-1)
|
|
|
|
|
#:use-module (srfi srfi-11)
|
2013-12-20 11:17:42 -05:00
|
|
|
|
#:use-module (srfi srfi-26)
|
2013-05-29 17:04:15 -04:00
|
|
|
|
#:use-module (srfi srfi-34)
|
2012-12-09 17:52:59 -05:00
|
|
|
|
#:use-module (srfi srfi-64))
|
|
|
|
|
|
|
|
|
|
;; Test the (guix store) module.
|
|
|
|
|
|
|
|
|
|
(define %store
|
|
|
|
|
(false-if-exception (open-connection)))
|
|
|
|
|
|
|
|
|
|
(when %store
|
|
|
|
|
;; Make sure we build everything by ourselves.
|
|
|
|
|
(set-build-options %store #:use-substitutes? #f))
|
|
|
|
|
|
|
|
|
|
(define %seed
|
|
|
|
|
(seed->random-state (logxor (getpid) (car (gettimeofday)))))
|
|
|
|
|
|
|
|
|
|
(define (random-text)
|
|
|
|
|
(number->string (random (expt 2 256) %seed) 16))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(test-begin "store")
|
|
|
|
|
|
2013-04-01 10:08:31 -04:00
|
|
|
|
(test-equal "store-path-hash-part"
|
|
|
|
|
"283gqy39v3g9dxjy26rynl0zls82fmcg"
|
|
|
|
|
(store-path-hash-part
|
|
|
|
|
(string-append (%store-prefix)
|
|
|
|
|
"/283gqy39v3g9dxjy26rynl0zls82fmcg-guile-2.0.7")))
|
|
|
|
|
|
|
|
|
|
(test-equal "store-path-hash-part #f"
|
|
|
|
|
#f
|
|
|
|
|
(store-path-hash-part
|
|
|
|
|
(string-append (%store-prefix)
|
|
|
|
|
"/foo/bar/283gqy39v3g9dxjy26rynl0zls82fmcg-guile-2.0.7")))
|
|
|
|
|
|
2013-12-10 18:18:07 -05:00
|
|
|
|
(test-equal "store-path-package-name"
|
|
|
|
|
"guile-2.0.7"
|
|
|
|
|
(store-path-package-name
|
|
|
|
|
(string-append (%store-prefix)
|
|
|
|
|
"/283gqy39v3g9dxjy26rynl0zls82fmcg-guile-2.0.7")))
|
|
|
|
|
|
|
|
|
|
(test-equal "store-path-package-name #f"
|
|
|
|
|
#f
|
|
|
|
|
(store-path-package-name
|
|
|
|
|
"/foo/bar/283gqy39v3g9dxjy26rynl0zls82fmcg-guile-2.0.7"))
|
|
|
|
|
|
2013-11-12 17:36:29 -05:00
|
|
|
|
(test-assert "direct-store-path?"
|
|
|
|
|
(and (direct-store-path?
|
|
|
|
|
(string-append (%store-prefix)
|
|
|
|
|
"/283gqy39v3g9dxjy26rynl0zls82fmcg-guile-2.0.7"))
|
|
|
|
|
(not (direct-store-path?
|
|
|
|
|
(string-append
|
|
|
|
|
(%store-prefix)
|
|
|
|
|
"/283gqy39v3g9dxjy26rynl0zls82fmcg-guile-2.0.7/bin/guile")))))
|
|
|
|
|
|
2012-12-09 17:52:59 -05:00
|
|
|
|
(test-skip (if %store 0 10))
|
|
|
|
|
|
|
|
|
|
(test-assert "dead-paths"
|
2013-09-10 16:36:41 -04:00
|
|
|
|
(let ((p (add-text-to-store %store "random-text" (random-text))))
|
2012-12-09 17:52:59 -05:00
|
|
|
|
(member p (dead-paths %store))))
|
|
|
|
|
|
|
|
|
|
;; FIXME: Find a test for `live-paths'.
|
|
|
|
|
;;
|
|
|
|
|
;; (test-assert "temporary root is in live-paths"
|
|
|
|
|
;; (let* ((p1 (add-text-to-store %store "random-text"
|
|
|
|
|
;; (random-text) '()))
|
|
|
|
|
;; (b (add-text-to-store %store "link-builder"
|
|
|
|
|
;; (format #f "echo ~a > $out" p1)
|
|
|
|
|
;; '()))
|
2013-08-26 16:11:04 -04:00
|
|
|
|
;; (d1 (derivation %store "link"
|
|
|
|
|
;; "/bin/sh" `("-e" ,b)
|
|
|
|
|
;; #:inputs `((,b) (,p1))))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
;; (p2 (derivation->output-path d1)))
|
2012-12-09 17:52:59 -05:00
|
|
|
|
;; (and (add-temp-root %store p2)
|
|
|
|
|
;; (build-derivations %store (list d1))
|
|
|
|
|
;; (valid-path? %store p1)
|
|
|
|
|
;; (member (pk p2) (live-paths %store)))))
|
|
|
|
|
|
|
|
|
|
(test-assert "dead path can be explicitly collected"
|
|
|
|
|
(let ((p (add-text-to-store %store "random-text"
|
|
|
|
|
(random-text) '())))
|
|
|
|
|
(let-values (((paths freed) (delete-paths %store (list p))))
|
|
|
|
|
(and (equal? paths (list p))
|
|
|
|
|
(> freed 0)
|
|
|
|
|
(not (file-exists? p))))))
|
|
|
|
|
|
2013-02-27 16:40:35 -05:00
|
|
|
|
(test-assert "references"
|
|
|
|
|
(let* ((t1 (add-text-to-store %store "random1"
|
2013-09-10 16:36:41 -04:00
|
|
|
|
(random-text)))
|
2013-02-27 16:40:35 -05:00
|
|
|
|
(t2 (add-text-to-store %store "random2"
|
|
|
|
|
(random-text) (list t1))))
|
|
|
|
|
(and (equal? (list t1) (references %store t2))
|
|
|
|
|
(equal? (list t2) (referrers %store t1))
|
|
|
|
|
(null? (references %store t1))
|
|
|
|
|
(null? (referrers %store t2)))))
|
|
|
|
|
|
2013-06-13 16:03:42 -04:00
|
|
|
|
(test-assert "requisites"
|
|
|
|
|
(let* ((t1 (add-text-to-store %store "random1"
|
|
|
|
|
(random-text) '()))
|
|
|
|
|
(t2 (add-text-to-store %store "random2"
|
|
|
|
|
(random-text) (list t1)))
|
|
|
|
|
(t3 (add-text-to-store %store "random3"
|
|
|
|
|
(random-text) (list t2)))
|
|
|
|
|
(t4 (add-text-to-store %store "random4"
|
|
|
|
|
(random-text) (list t1 t3))))
|
|
|
|
|
(define (same? x y)
|
|
|
|
|
(and (= (length x) (length y))
|
|
|
|
|
(lset= equal? x y)))
|
|
|
|
|
|
|
|
|
|
(and (same? (requisites %store t1) (list t1))
|
|
|
|
|
(same? (requisites %store t2) (list t1 t2))
|
|
|
|
|
(same? (requisites %store t3) (list t1 t2 t3))
|
|
|
|
|
(same? (requisites %store t4) (list t1 t2 t3 t4)))))
|
|
|
|
|
|
2013-02-27 16:40:35 -05:00
|
|
|
|
(test-assert "derivers"
|
|
|
|
|
(let* ((b (add-text-to-store %store "build" "echo $foo > $out" '()))
|
|
|
|
|
(s (add-to-store %store "bash" #t "sha256"
|
|
|
|
|
(search-bootstrap-binary "bash"
|
|
|
|
|
(%current-system))))
|
2013-08-26 16:11:04 -04:00
|
|
|
|
(d (derivation %store "the-thing"
|
|
|
|
|
s `("-e" ,b)
|
|
|
|
|
#:env-vars `(("foo" . ,(random-text)))
|
|
|
|
|
#:inputs `((,b) (,s))))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(o (derivation->output-path d)))
|
2013-02-27 16:40:35 -05:00
|
|
|
|
(and (build-derivations %store (list d))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(equal? (query-derivation-outputs %store (derivation-file-name d))
|
2013-02-27 16:40:35 -05:00
|
|
|
|
(list o))
|
|
|
|
|
(equal? (valid-derivers %store o)
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(list (derivation-file-name d))))))
|
2013-02-27 16:40:35 -05:00
|
|
|
|
|
2013-11-11 18:10:10 -05:00
|
|
|
|
(test-assert "log-file, derivation"
|
|
|
|
|
(let* ((b (add-text-to-store %store "build" "echo $foo > $out" '()))
|
|
|
|
|
(s (add-to-store %store "bash" #t "sha256"
|
|
|
|
|
(search-bootstrap-binary "bash"
|
|
|
|
|
(%current-system))))
|
|
|
|
|
(d (derivation %store "the-thing"
|
|
|
|
|
s `("-e" ,b)
|
|
|
|
|
#:env-vars `(("foo" . ,(random-text)))
|
|
|
|
|
#:inputs `((,b) (,s)))))
|
|
|
|
|
(and (build-derivations %store (list d))
|
|
|
|
|
(file-exists? (pk (log-file %store (derivation-file-name d)))))))
|
|
|
|
|
|
|
|
|
|
(test-assert "log-file, output file name"
|
|
|
|
|
(let* ((b (add-text-to-store %store "build" "echo $foo > $out" '()))
|
|
|
|
|
(s (add-to-store %store "bash" #t "sha256"
|
|
|
|
|
(search-bootstrap-binary "bash"
|
|
|
|
|
(%current-system))))
|
|
|
|
|
(d (derivation %store "the-thing"
|
|
|
|
|
s `("-e" ,b)
|
|
|
|
|
#:env-vars `(("foo" . ,(random-text)))
|
|
|
|
|
#:inputs `((,b) (,s))))
|
|
|
|
|
(o (derivation->output-path d)))
|
|
|
|
|
(and (build-derivations %store (list d))
|
|
|
|
|
(file-exists? (pk (log-file %store o)))
|
|
|
|
|
(string=? (log-file %store (derivation-file-name d))
|
|
|
|
|
(log-file %store o)))))
|
|
|
|
|
|
2013-02-03 17:24:25 -05:00
|
|
|
|
(test-assert "no substitutes"
|
|
|
|
|
(let* ((s (open-connection))
|
|
|
|
|
(d1 (package-derivation s %bootstrap-guile (%current-system)))
|
|
|
|
|
(d2 (package-derivation s %bootstrap-glibc (%current-system)))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(o (map derivation->output-path (list d1 d2))))
|
2013-02-03 17:24:25 -05:00
|
|
|
|
(set-build-options s #:use-substitutes? #f)
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(and (not (has-substitutes? s (derivation-file-name d1)))
|
|
|
|
|
(not (has-substitutes? s (derivation-file-name d2)))
|
2013-02-03 17:24:25 -05:00
|
|
|
|
(null? (substitutable-paths s o))
|
|
|
|
|
(null? (substitutable-path-info s o)))))
|
|
|
|
|
|
2013-04-02 04:44:20 -04:00
|
|
|
|
(test-skip (if (getenv "GUIX_BINARY_SUBSTITUTE_URL") 0 1))
|
|
|
|
|
|
|
|
|
|
(test-assert "substitute query"
|
|
|
|
|
(let* ((s (open-connection))
|
|
|
|
|
(d (package-derivation s %bootstrap-guile (%current-system)))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(o (derivation->output-path d))
|
2013-04-02 04:44:20 -04:00
|
|
|
|
(dir (and=> (getenv "GUIX_BINARY_SUBSTITUTE_URL")
|
|
|
|
|
(compose uri-path string->uri))))
|
|
|
|
|
;; Create fake substituter data, to be read by `substitute-binary'.
|
|
|
|
|
(call-with-output-file (string-append dir "/nix-cache-info")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(format p "StoreDir: ~a\nWantMassQuery: 0\n"
|
2013-04-12 11:30:27 -04:00
|
|
|
|
(%store-prefix))))
|
2013-04-02 04:44:20 -04:00
|
|
|
|
(call-with-output-file (string-append dir "/" (store-path-hash-part o)
|
|
|
|
|
".narinfo")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(format p "StorePath: ~a
|
|
|
|
|
URL: ~a
|
|
|
|
|
Compression: none
|
|
|
|
|
NarSize: 1234
|
|
|
|
|
References:
|
|
|
|
|
System: ~a
|
|
|
|
|
Deriver: ~a~%"
|
|
|
|
|
o ; StorePath
|
|
|
|
|
(string-append dir "/example.nar") ; URL
|
|
|
|
|
(%current-system) ; System
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(basename
|
|
|
|
|
(derivation-file-name d))))) ; Deriver
|
2013-04-02 04:44:20 -04:00
|
|
|
|
|
2013-04-15 17:42:27 -04:00
|
|
|
|
;; Remove entry from the local cache.
|
|
|
|
|
(false-if-exception
|
|
|
|
|
(delete-file (string-append (getenv "XDG_CACHE_HOME")
|
|
|
|
|
"/guix/substitute-binary/"
|
|
|
|
|
(store-path-hash-part o))))
|
|
|
|
|
|
2013-04-02 04:44:20 -04:00
|
|
|
|
;; Make sure `substitute-binary' correctly communicates the above data.
|
|
|
|
|
(set-build-options s #:use-substitutes? #t)
|
|
|
|
|
(and (has-substitutes? s o)
|
|
|
|
|
(equal? (list o) (substitutable-paths s (list o)))
|
|
|
|
|
(match (pk 'spi (substitutable-path-info s (list o)))
|
|
|
|
|
(((? substitutable? s))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(and (string=? (substitutable-deriver s) (derivation-file-name d))
|
2013-04-02 04:44:20 -04:00
|
|
|
|
(null? (substitutable-references s))
|
|
|
|
|
(equal? (substitutable-nar-size s) 1234)))))))
|
|
|
|
|
|
2013-04-12 11:30:27 -04:00
|
|
|
|
(test-assert "substitute"
|
|
|
|
|
(let* ((s (open-connection))
|
|
|
|
|
(c (random-text)) ; contents of the output
|
|
|
|
|
(d (build-expression->derivation
|
derivations: Use more keyword parameters for 'build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation): Turn 'system' and
'inputs' into keyword parameters.
Adjust callers accordingly.
* gnu/system/linux.scm, gnu/system/vm.scm, guix/build-system/cmake.scm,
guix/build-system/gnu.scm, guix/build-system/perl.scm,
guix/build-system/python.scm, guix/build-system/trivial.scm,
guix/download.scm, guix/packages.scm, guix/profiles.scm,
guix/scripts/pull.scm, tests/derivations.scm, tests/guix-build.sh,
tests/monads.scm, tests/store.scm, tests/union.scm: Adjust users of
'build-expression->derivation' and 'derivation-expression'
accordingly.
* doc/guix.texi (Derivations): Adjust 'build-expression->derivation'
documentation accordingly.
(The Store Monad): Likewise for 'derivation-expression'.
2013-12-04 10:07:36 -05:00
|
|
|
|
s "substitute-me"
|
2013-04-12 11:30:27 -04:00
|
|
|
|
`(call-with-output-file %output
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(exit 1) ; would actually fail
|
|
|
|
|
(display ,c p)))
|
|
|
|
|
#:guile-for-build
|
|
|
|
|
(package-derivation s %bootstrap-guile (%current-system))))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(o (derivation->output-path d))
|
2013-04-12 11:30:27 -04:00
|
|
|
|
(dir (and=> (getenv "GUIX_BINARY_SUBSTITUTE_URL")
|
|
|
|
|
(compose uri-path string->uri))))
|
|
|
|
|
;; Create fake substituter data, to be read by `substitute-binary'.
|
|
|
|
|
(call-with-output-file (string-append dir "/nix-cache-info")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(format p "StoreDir: ~a\nWantMassQuery: 0\n"
|
|
|
|
|
(%store-prefix))))
|
|
|
|
|
(call-with-output-file (string-append dir "/example.out")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(display c p)))
|
|
|
|
|
(call-with-output-file (string-append dir "/example.nar")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(write-file (string-append dir "/example.out") p)))
|
|
|
|
|
(call-with-output-file (string-append dir "/" (store-path-hash-part o)
|
|
|
|
|
".narinfo")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(format p "StorePath: ~a
|
|
|
|
|
URL: ~a
|
|
|
|
|
Compression: none
|
|
|
|
|
NarSize: 1234
|
|
|
|
|
NarHash: sha256:~a
|
|
|
|
|
References:
|
|
|
|
|
System: ~a
|
|
|
|
|
Deriver: ~a~%"
|
|
|
|
|
o ; StorePath
|
|
|
|
|
"example.nar" ; relative URL
|
|
|
|
|
(call-with-input-file (string-append dir "/example.nar")
|
|
|
|
|
(compose bytevector->nix-base32-string sha256
|
|
|
|
|
get-bytevector-all))
|
|
|
|
|
(%current-system) ; System
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(basename
|
|
|
|
|
(derivation-file-name d))))) ; Deriver
|
2013-04-12 11:30:27 -04:00
|
|
|
|
|
|
|
|
|
;; Make sure we use `substitute-binary'.
|
|
|
|
|
(set-build-options s #:use-substitutes? #t)
|
|
|
|
|
(and (has-substitutes? s o)
|
|
|
|
|
(build-derivations s (list d))
|
|
|
|
|
(equal? c (call-with-input-file o get-string-all)))))
|
|
|
|
|
|
2013-05-29 17:04:15 -04:00
|
|
|
|
(test-assert "substitute --fallback"
|
|
|
|
|
(let* ((s (open-connection))
|
|
|
|
|
(t (random-text)) ; contents of the output
|
|
|
|
|
(d (build-expression->derivation
|
derivations: Use more keyword parameters for 'build-expression->derivation'.
* guix/derivations.scm (build-expression->derivation): Turn 'system' and
'inputs' into keyword parameters.
Adjust callers accordingly.
* gnu/system/linux.scm, gnu/system/vm.scm, guix/build-system/cmake.scm,
guix/build-system/gnu.scm, guix/build-system/perl.scm,
guix/build-system/python.scm, guix/build-system/trivial.scm,
guix/download.scm, guix/packages.scm, guix/profiles.scm,
guix/scripts/pull.scm, tests/derivations.scm, tests/guix-build.sh,
tests/monads.scm, tests/store.scm, tests/union.scm: Adjust users of
'build-expression->derivation' and 'derivation-expression'
accordingly.
* doc/guix.texi (Derivations): Adjust 'build-expression->derivation'
documentation accordingly.
(The Store Monad): Likewise for 'derivation-expression'.
2013-12-04 10:07:36 -05:00
|
|
|
|
s "substitute-me-not"
|
2013-05-29 17:04:15 -04:00
|
|
|
|
`(call-with-output-file %output
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(display ,t p)))
|
|
|
|
|
#:guile-for-build
|
|
|
|
|
(package-derivation s %bootstrap-guile (%current-system))))
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(o (derivation->output-path d))
|
2013-05-29 17:04:15 -04:00
|
|
|
|
(dir (and=> (getenv "GUIX_BINARY_SUBSTITUTE_URL")
|
|
|
|
|
(compose uri-path string->uri))))
|
|
|
|
|
;; Create fake substituter data, to be read by `substitute-binary'.
|
|
|
|
|
(call-with-output-file (string-append dir "/nix-cache-info")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(format p "StoreDir: ~a\nWantMassQuery: 0\n"
|
|
|
|
|
(%store-prefix))))
|
|
|
|
|
(call-with-output-file (string-append dir "/" (store-path-hash-part o)
|
|
|
|
|
".narinfo")
|
|
|
|
|
(lambda (p)
|
|
|
|
|
(format p "StorePath: ~a
|
|
|
|
|
URL: ~a
|
|
|
|
|
Compression: none
|
|
|
|
|
NarSize: 1234
|
|
|
|
|
NarHash: sha256:0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
|
|
|
|
|
References:
|
|
|
|
|
System: ~a
|
|
|
|
|
Deriver: ~a~%"
|
|
|
|
|
o ; StorePath
|
|
|
|
|
"does-not-exist.nar" ; relative URL
|
|
|
|
|
(%current-system) ; System
|
derivations: 'derivation' and related procedures return a single value.
* guix/derivations.scm (derivation->output-path,
derivation->output-paths): New procedures.
(derivation-path->output-path): Use 'derivation->output-path'.
(derivation-path->output-paths): Use 'derivation->output-paths'.
(derivation): Accept 'derivation?' objects as inputs. Return a single
value.
(build-derivations): New procedure.
(compiled-modules): Use 'derivation->output-paths'.
(build-expression->derivation)[source-path]: Add case for when the
input matches 'derivation?'.
[prologue]: Accept 'derivation?' objects in INPUTS.
[mod-dir, go-dir]: Use 'derivation->output-path'.
* guix/download.scm (url-fetch): Adjust to the single-value return.
* guix/packages.scm (package-output): Use 'derivation->output-path'.
* guix/scripts/build.scm (guix-build): When the argument is
'derivation-path?', pass it through 'read-derivation'.
Use 'derivation-file-name' to print out the .drv file names, and to
register them. Use 'derivation->output-path' instead of
'derivation-path->output-path'.
* guix/scripts/package.scm (roll-back): Adjust to the single-value
return.
(guix-package): Use 'derivation->output-path'.
* guix/ui.scm (show-what-to-build): Adjust to deal with 'derivation?'
objects instead of .drv file names.
* gnu/system/grub.scm (grub-configuration-file): Use
'derivation->output-path' instead of 'derivation-path->output-path'.
* gnu/system/vm.scm (qemu-image, system-qemu-image): Likewise.
* tests/builders.scm, tests/derivations.scm, tests/packages.scm,
tests/store.scm, tests/union.scm: Adjust to the new calling
convention.
* doc/guix.texi (Defining Packages, The Store, Derivations): Adjust
accordingly.
2013-09-18 11:01:40 -04:00
|
|
|
|
(basename
|
|
|
|
|
(derivation-file-name d))))) ; Deriver
|
2013-05-29 17:04:15 -04:00
|
|
|
|
|
|
|
|
|
;; Make sure we use `substitute-binary'.
|
|
|
|
|
(set-build-options s #:use-substitutes? #t)
|
|
|
|
|
(and (has-substitutes? s o)
|
|
|
|
|
(guard (c ((nix-protocol-error? c)
|
|
|
|
|
;; The substituter failed as expected. Now make sure that
|
|
|
|
|
;; #:fallback? #t works correctly.
|
|
|
|
|
(set-build-options s
|
|
|
|
|
#:use-substitutes? #t
|
|
|
|
|
#:fallback? #t)
|
|
|
|
|
(and (build-derivations s (list d))
|
|
|
|
|
(equal? t (call-with-input-file o get-string-all)))))
|
|
|
|
|
;; Should fail.
|
|
|
|
|
(build-derivations s (list d))
|
|
|
|
|
#f))))
|
|
|
|
|
|
2013-12-20 11:17:42 -05:00
|
|
|
|
(test-assert "export/import several paths"
|
|
|
|
|
(let* ((texts (unfold (cut >= <> 10)
|
|
|
|
|
(lambda _ (random-text))
|
|
|
|
|
1+
|
|
|
|
|
0))
|
|
|
|
|
(files (map (cut add-text-to-store %store "text" <>) texts))
|
|
|
|
|
(dump (call-with-bytevector-output-port
|
|
|
|
|
(cut export-paths %store files <>))))
|
|
|
|
|
(delete-paths %store files)
|
|
|
|
|
(and (every (negate file-exists?) files)
|
|
|
|
|
(let* ((source (open-bytevector-input-port dump))
|
|
|
|
|
(imported (import-paths %store source)))
|
|
|
|
|
(and (equal? imported files)
|
|
|
|
|
(every file-exists? files)
|
|
|
|
|
(equal? texts
|
|
|
|
|
(map (lambda (file)
|
|
|
|
|
(call-with-input-file file
|
|
|
|
|
get-string-all))
|
|
|
|
|
files)))))))
|
|
|
|
|
|
|
|
|
|
(test-assert "import corrupt path"
|
|
|
|
|
(let* ((text (random-text))
|
|
|
|
|
(file (add-text-to-store %store "text" text))
|
|
|
|
|
(dump (call-with-bytevector-output-port
|
|
|
|
|
(cut export-paths %store (list file) <>))))
|
|
|
|
|
(delete-paths %store (list file))
|
|
|
|
|
|
2013-12-27 18:42:07 -05:00
|
|
|
|
;; Flip a bit in the stream's payload.
|
|
|
|
|
(let* ((index (quotient (bytevector-length dump) 4))
|
2013-12-20 11:17:42 -05:00
|
|
|
|
(byte (bytevector-u8-ref dump index)))
|
|
|
|
|
(bytevector-u8-set! dump index (logxor #xff byte)))
|
|
|
|
|
|
|
|
|
|
(and (not (file-exists? file))
|
|
|
|
|
(guard (c ((nix-protocol-error? c)
|
|
|
|
|
(pk 'c c)
|
|
|
|
|
(and (not (zero? (nix-protocol-error-status c)))
|
|
|
|
|
(string-contains (nix-protocol-error-message c)
|
|
|
|
|
"corrupt"))))
|
|
|
|
|
(let* ((source (open-bytevector-input-port dump))
|
|
|
|
|
(imported (import-paths %store source)))
|
|
|
|
|
(pk 'corrupt-imported imported)
|
|
|
|
|
#f)))))
|
|
|
|
|
|
2012-12-09 17:52:59 -05:00
|
|
|
|
(test-end "store")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(exit (= (test-runner-fail-count (test-runner-current)) 0))
|