* [bug#75302] [PATCH] packages: Match renamed origin fields.
@ 2025-01-02 21:03 Herman Rimm via Guix-patches via
2025-01-04 20:59 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: Herman Rimm via Guix-patches via @ 2025-01-02 21:03 UTC (permalink / raw)
To: 75302
Cc: Christopher Baines, Josselin Poiret, Ludovic Courtès,
Mathieu Othacehe, Simon Tournier, Tobias Geerinckx-Rice
* guix/packages.scm (print-origin, origin->derivation): Use
match-record.
Change-Id: Ia554dd3264f51e549df51f767c754040b3dc7611
---
Hello,
Three tests in (tests packages) fail as before:
"package-source-derivation, local-file"
"package-source-derivation, origin, sha512"
"package-source-derivation, origin, sha3-512"
Cheers,
Herman
guix/packages.scm | 59 ++++++++++++++++++++++-------------------------
1 file changed, 28 insertions(+), 31 deletions(-)
diff --git a/guix/packages.scm b/guix/packages.scm
index ff9fbd84709..6088457b20b 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -11,6 +11,7 @@
;;; Copyright © 2022 jgart <jgart@dismail.de>
;;; Copyright © 2023 Simon Tournier <zimon.toutoune@gmail.com>
;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2025 Herman Rimm <herman@rimm.ee>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -359,12 +360,10 @@ (define-syntax-rule (origin fields ...)
(define (print-origin origin port)
"Write a concise representation of ORIGIN to PORT."
- (match origin
- (($ <origin> uri method hash file-name patches)
- (simple-format port "#<origin ~s ~a ~s ~a>"
- uri hash
- (force patches)
- (number->string (object-address origin) 16)))))
+ (match-record origin <origin> (uri method hash file-name patches)
+ (simple-format port "#<origin ~s ~a ~s ~a>"
+ uri hash patches
+ (number->string (object-address origin) 16))))
(set-record-type-printer! <origin> print-origin)
@@ -2151,31 +2150,29 @@ (define-gexp-compiler (package-compiler (package <package>) system target)
(define* (origin->derivation origin
#:optional (system (%current-system)))
"Return the derivation corresponding to ORIGIN."
- (match origin
- (($ <origin> uri method hash name (= force ()) #f)
- ;; No patches, no snippet: this is a fixed-output derivation.
- (method uri
- (content-hash-algorithm hash)
- (content-hash-value hash)
- name #:system system))
- (($ <origin> uri method hash name (= force (patches ...)) snippet
- flags inputs (modules ...) guile-for-build)
- ;; Patches and/or a snippet.
- (mlet %store-monad ((source (method uri
- (content-hash-algorithm hash)
- (content-hash-value hash)
- name #:system system))
- (guile (package->derivation (or guile-for-build
- (default-guile))
- system
- #:graft? #f)))
- (patch-and-repack source patches
- #:inputs inputs
- #:snippet snippet
- #:flags flags
- #:system system
- #:modules modules
- #:guile-for-build guile)))))
+ (match-record origin <origin>
+ (uri method hash file-name patches patch-flags patch-inputs
+ patch-guile snippet modules)
+ (let* ((hash-algo (content-hash-algorithm hash))
+ (hash (content-hash-value hash))
+ (source (method uri hash-algo hash file-name
+ #:system system)))
+ (if (or snippet (pair? patches))
+ (mlet %store-monad
+ ((guile (package->derivation (or patch-guile
+ (default-guile))
+ system
+ #:graft? #f))
+ (source source))
+ (patch-and-repack source patches
+ #:inputs patch-inputs
+ #:snippet snippet
+ #:flags patch-flags
+ #:system system
+ #:modules modules
+ #:guile-for-build guile))
+ ;; This is a fixed-output derivation.
+ source))))
(define-gexp-compiler (origin-compiler (origin <origin>) system target)
;; Compile ORIGIN to a derivation for SYSTEM. This is used when referring
base-commit: 5d7455bb580eed41a4fa7c20b71eaccad9f49e73
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#75302] [PATCH] packages: Match renamed origin fields.
2025-01-02 21:03 [bug#75302] [PATCH] packages: Match renamed origin fields Herman Rimm via Guix-patches via
@ 2025-01-04 20:59 ` Ludovic Courtès
2025-01-06 18:48 ` Herman Rimm via Guix-patches via
0 siblings, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2025-01-04 20:59 UTC (permalink / raw)
To: Herman Rimm
Cc: Josselin Poiret, 75302, Simon Tournier, Mathieu Othacehe,
Tobias Geerinckx-Rice, Christopher Baines
Hi,
Herman Rimm <herman@rimm.ee> skribis:
> * guix/packages.scm (print-origin, origin->derivation): Use
> match-record.
>
> Change-Id: Ia554dd3264f51e549df51f767c754040b3dc7611
The patch LGTM but, (1) fields haven’t been renamed recently, and…
> Three tests in (tests packages) fail as before:
> "package-source-derivation, local-file"
> "package-source-derivation, origin, sha512"
> "package-source-derivation, origin, sha3-512"
… (2) I don’t see these failures as of
b8858d8b1344525d0d7ac78d8fb9dc1a577b85d3.
Could you provide more details about these?
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#75302] [PATCH] packages: Match renamed origin fields.
2025-01-04 20:59 ` Ludovic Courtès
@ 2025-01-06 18:48 ` Herman Rimm via Guix-patches via
2025-01-08 10:06 ` Ludovic Courtès
0 siblings, 1 reply; 4+ messages in thread
From: Herman Rimm via Guix-patches via @ 2025-01-06 18:48 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 75302
[-- Attachment #1: Type: text/plain, Size: 1988 bytes --]
Hello,
On Sat, Jan 04, 2025 at 09:59:13PM +0100, Ludovic Courtès wrote:
> The patch LGTM but, (1) fields haven’t been renamed recently, and…
I misunderstood how (match _ (($ _) _)) works. Can you amend the commit
to start like: 'packages: Replace match with match-record.', instead?
> > Three tests in (tests packages) fail as before:
> > "package-source-derivation, local-file"
> > "package-source-derivation, origin, sha512"
> > "package-source-derivation, origin, sha3-512"
>
> … (2) I don’t see these failures as of
> b8858d8b1344525d0d7ac78d8fb9dc1a577b85d3.
In a checkout at b8858d8b1344525d0d7ac78d8fb9dc1a577b85d3 with this
patch applied, running:
guix shell -CPWN
./pre-inst-env guix repl < tests/packages.scm
I get the three errors mentioned, see attached log. I run the tests
like this because running:
guix shell -CPWN
make check TESTS="tests/packages.scm"
returns:
make check-recursive
make[1]: Entering directory '/home/herman/git/guix'
Making check in po/guix
make[2]: Entering directory '/home/herman/git/guix/po/guix'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/home/herman/git/guix/po/guix'
Making check in po/packages
make[2]: Entering directory '/home/herman/git/guix/po/packages'
make[2]: Nothing to be done for 'check'.
make[2]: Leaving directory '/home/herman/git/guix/po/packages'
make[2]: Entering directory '/home/herman/git/guix'
Compiling Scheme modules...
Compiling Scheme modules...
Compiling Scheme modules...
Compiling Scheme modules...
Compiling Scheme modules...
Compiling Scheme modules...
Compiling Scheme modules...
[ 77%] LOAD gnu.scm
ice-9/eval.scm:293:34: error: diff: unbound variable
hint: Did you forget a `use-modules' form?
make[2]: *** [Makefile:7518: make-system-go] Error 1
make[2]: Leaving directory '/home/herman/git/guix'
make[1]: *** [Makefile:6553: check-recursive] Error 1
make[1]: Leaving directory '/home/herman/git/guix'
make: *** [Makefile:7027: check] Error 2
Cheers,
Herman
[-- Attachment #2: packages.log --]
[-- Type: text/plain, Size: 93294 bytes --]
%%%% Starting test packages
Group begin: packages
Test begin:
test-name: "printer with location"
source-line: 85
source-form: (test-assert "printer with location" (string-match "^#<package foo@0 foo.scm:42 [[:xdigit:]]+>$" (with-output-to-string (lambda () (write (dummy-package "foo" (location (make-location "foo.scm" 42 7))))))))
Test end:
result-kind: pass
actual-value: #("#<package foo@0 foo.scm:42 7feecae619a0>" (0 . 40))
Test begin:
test-name: "printer without location"
source-line: 93
source-form: (test-assert "printer without location" (string-match "^#<package foo@0 [[:xdigit:]]+>$" (with-output-to-string (lambda () (write (dummy-package "foo" (location #f)))))))
Test end:
result-kind: pass
actual-value: #("#<package foo@0 7feecae61840>" (0 . 29))
Test begin:
test-name: "license type checking"
source-line: 100
source-form: (test-equal "license type checking" (quote bad-license) (guard (c ((package-license-error? c) (package-error-invalid-license c))) (dummy-package "foo" (license (quote bad-license)))))
Test end:
result-kind: pass
actual-value: bad-license
expected-value: bad-license
Test begin:
test-name: "hidden-package"
source-line: 107
source-form: (test-assert "hidden-package" (and (hidden-package? (hidden-package (dummy-package "foo"))) (not (hidden-package? (dummy-package "foo")))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-superseded"
source-line: 111
source-form: (test-assert "package-superseded" (let* ((new (dummy-package "bar")) (old (deprecated-package "foo" new))) (and (eq? (package-superseded old) new) (mock ((gnu packages) find-best-packages-by-name (const (list old))) (specification->package "foo") (and (eq? new (specification->package "foo")) (eq? new (specification->package+output "foo")))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "transaction-upgrade-entry, zero upgrades"
source-line: 120
source-form: (test-assert "transaction-upgrade-entry, zero upgrades" (let* ((old (dummy-package "foo" (version "1"))) (tx (mock ((gnu packages) find-best-packages-by-name (const (quote ()))) (transaction-upgrade-entry #f (manifest-entry (inherit (package->manifest-entry old)) (item (string-append (%store-prefix) "/" (make-string 32 #\e) "-foo-1"))) (manifest-transaction))))) (manifest-transaction-null? tx)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "transaction-upgrade-entry, zero upgrades, equivalent package"
source-line: 133
source-form: (test-assert "transaction-upgrade-entry, zero upgrades, equivalent package" (let* ((old (dummy-package "foo" (version "1"))) (drv (package-derivation %store old)) (tx (mock ((gnu packages) find-best-packages-by-name (const (list old))) (transaction-upgrade-entry %store (manifest-entry (inherit (package->manifest-entry old)) (item (derivation->output-path drv))) (manifest-transaction))))) (manifest-transaction-null? tx)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "transaction-upgrade-entry, zero upgrades, propagated inputs"
source-line: 146
source-form: (test-assert "transaction-upgrade-entry, zero upgrades, propagated inputs" (let* ((dep (dummy-package "dep" (version "2"))) (old (dummy-package "foo" (version "1") (propagated-inputs (list dep)))) (drv (package-derivation %store old)) (tx (mock ((gnu packages) find-best-packages-by-name (const (list old))) (transaction-upgrade-entry %store (manifest-entry (inherit (package->manifest-entry old)) (item (derivation->output-path drv)) (dependencies (list (manifest-entry (inherit (package->manifest-entry dep)) (item (derivation->output-path (package-derivation %store dep))))))) (manifest-transaction))))) (manifest-transaction-null? tx)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "transaction-upgrade-entry, one upgrade"
source-line: 168
source-form: (test-assert "transaction-upgrade-entry, one upgrade" (let* ((old (dummy-package "foo" (version "1"))) (new (dummy-package "foo" (version "2"))) (tx (mock ((gnu packages) find-best-packages-by-name (const (list new))) (transaction-upgrade-entry #f (manifest-entry (inherit (package->manifest-entry old)) (item (string-append (%store-prefix) "/" (make-string 32 #\e) "-foo-1"))) (manifest-transaction))))) (and (match (manifest-transaction-install tx) ((($ <manifest-entry> "foo" "2" "out" item)) (eq? item new))) (null? (manifest-transaction-remove tx)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "transaction-upgrade-entry, superseded package"
source-line: 185
source-form: (test-assert "transaction-upgrade-entry, superseded package" (let* ((old (dummy-package "foo" (version "1"))) (new (dummy-package "bar" (version "2"))) (dep (deprecated-package "foo" new)) (tx (mock ((gnu packages) find-best-packages-by-name (const (list dep))) (transaction-upgrade-entry #f (manifest-entry (inherit (package->manifest-entry old)) (item (string-append (%store-prefix) "/" (make-string 32 #\e) "-foo-1"))) (manifest-transaction))))) (and (match (manifest-transaction-install tx) ((($ <manifest-entry> "bar" "2" "out" item)) (eq? item new))) (match (manifest-transaction-remove tx) (((? manifest-pattern? pattern)) (and (string=? (manifest-pattern-name pattern) "foo") (string=? (manifest-pattern-version pattern) "1") (string=? (manifest-pattern-output pattern) "out")))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "transaction-upgrade-entry, transformation options preserved"
source-line: 207
source-form: (test-equal "transaction-upgrade-entry, transformation options preserved" (derivation-file-name (package-derivation %store grep)) (let* ((old (dummy-package "emacs" (version "1"))) (props (quote ((transformations (with-input . "emacs=grep"))))) (tx (transaction-upgrade-entry %store (manifest-entry (inherit (package->manifest-entry old)) (properties props) (item (string-append (%store-prefix) "/" (make-string 32 #\e) "-foo-1"))) (manifest-transaction)))) (match (manifest-transaction-install tx) (((? manifest-entry? entry)) (and (string=? (manifest-entry-version entry) (package-version grep)) (string=? (manifest-entry-name entry) (package-name grep)) (equal? (manifest-entry-properties entry) props) (derivation-file-name (package-derivation %store (manifest-entry-item entry))))))))
Test end:
result-kind: pass
actual-value: "/gnu/store/89g815zm0040xv4b0yb8v0qragx7kf6s-grep-3.11.drv"
expected-value: "/gnu/store/89g815zm0040xv4b0yb8v0qragx7kf6s-grep-3.11.drv"
Test begin:
test-name: "transaction-upgrade-entry, grafts"
source-line: 230
source-form: (test-assert "transaction-upgrade-entry, grafts" (with-build-handler (const (quote failed!)) (parameterize ((%graft? #t)) (let* ((old (dummy-package "foo" (version "1"))) (bar (dummy-package "bar" (version "0") (replacement old))) (new (dummy-package "foo" (version "1") (inputs (list bar)))) (tx (mock ((gnu packages) find-best-packages-by-name (const (list new))) (transaction-upgrade-entry %store (manifest-entry (inherit (package->manifest-entry old)) (item (string-append (%store-prefix) "/" (make-string 32 #\e) "-foo-1"))) (manifest-transaction))))) (and (match (manifest-transaction-install tx) ((($ <manifest-entry> "foo" "1" "out" item)) (eq? item new))) (null? (manifest-transaction-remove tx)))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-definition-location"
source-line: 254
source-form: (test-assert "package-definition-location" (let ((location (package-location hello)) (definition (package-definition-location hello))) (and (string=? (location-file location) (location-file definition)) (= 0 (location-column definition)) (= 2 (location-column location)) (= (location-line definition) (- (location-line location) 1)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-field-location"
source-line: 265
source-form: (test-assert "package-field-location" (let () (define (goto port line column) (unless (and (= (port-column port) (- column 1)) (= (port-line port) (- line 1))) (unless (eof-object? (get-char port)) (goto port line column)))) (define read-at (match-lambda (($ <location> file line column) (call-with-input-file (search-path %load-path file) (lambda (port) (goto port line column) (read port)))))) (and (member (read-at (package-field-location %bootstrap-guile (quote name))) (let ((name (package-name %bootstrap-guile))) (list name (quasiquote (name (unquote name)))))) (member (read-at (package-field-location %bootstrap-guile (quote version))) (let ((version (package-version %bootstrap-guile))) (list version (quasiquote (version (unquote version)))))) (not (package-field-location %bootstrap-guile (quote does-not-exist))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-field-location, relative file name"
source-line: 292
source-form: (test-equal "package-field-location, relative file name" (location-file (package-location %bootstrap-guile)) (with-fluids ((%file-port-name-canonicalization (quote absolute))) (location-file (package-field-location %bootstrap-guile (quote version)))))
Test end:
result-kind: pass
actual-value: "gnu/packages/bootstrap.scm"
expected-value: "gnu/packages/bootstrap.scm"
Test begin:
test-name: "package-transitive-inputs"
source-line: 297
source-form: (test-assert "package-transitive-inputs" (let* ((a (dummy-package "a")) (b (dummy-package "b" (propagated-inputs (list a)))) (c (dummy-package "c" (inputs (list a)))) (d (dummy-package "d" (propagated-inputs (quasiquote (("x" "something.drv")))))) (e (dummy-package "e" (inputs (list b c d))))) (and (null? (package-transitive-inputs a)) (equal? (quasiquote (("a" (unquote a)))) (package-transitive-inputs b)) (equal? (quasiquote (("a" (unquote a)))) (package-transitive-inputs c)) (equal? (package-propagated-inputs d) (package-transitive-inputs d)) (equal? (quasiquote (("b" (unquote b)) ("c" (unquote c)) ("d" (unquote d)) ("a" (unquote a)) ("x" "something.drv"))) (pk (quote x) (package-transitive-inputs e))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-transitive-inputs, no duplicates"
source-line: 316
source-form: (test-assert "package-transitive-inputs, no duplicates" (let* ((a (dummy-package "a")) (b (dummy-package "b" (inputs (quasiquote (("a+" (unquote a))))) (native-inputs (quasiquote (("a*" (unquote a))))) (propagated-inputs (quasiquote (("a" (unquote a))))))) (c (dummy-package "c" (propagated-inputs (quasiquote (("b" (unquote b))))))) (d (dummy-package "d" (inputs (quasiquote (("a" (unquote a)) ("c" (unquote c))))))) (e (dummy-package "e" (inputs (quasiquote (("b" (unquote b)) ("c" (unquote c)))))))) (and (null? (package-transitive-inputs a)) (equal? (quasiquote (("a*" (unquote a)) ("a+" (unquote a)) ("a" (unquote a)))) (package-transitive-inputs b)) (equal? (quasiquote (("b" (unquote b)) ("a" (unquote a)))) (package-transitive-inputs c)) (equal? (quasiquote (("a" (unquote a)) ("c" (unquote c)) ("b" (unquote b)))) (package-transitive-inputs d)) (equal? (quasiquote (("b" (unquote b)) ("c" (unquote c)) ("a" (unquote a)))) (package-transitive-inputs e)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-transitive-supported-systems"
source-line: 338
source-form: (test-equal "package-transitive-supported-systems" (quote (("x" "y" "z") ("x" "y") ("y") ("y") ("y"))) (let* ((a (dummy-package "a" (build-system trivial-build-system) (supported-systems (quote ("x" "y" "z"))))) (b (dummy-package "b" (build-system trivial-build-system) (supported-systems (quote ("x" "y"))) (inputs (list a)))) (c (dummy-package "c" (build-system trivial-build-system) (supported-systems (quote ("y" "z"))) (inputs (list b)))) (d (dummy-package "d" (build-system trivial-build-system) (supported-systems (quote ("x" "y" "z"))) (inputs (list b c)))) (e (dummy-package "e" (build-system trivial-build-system) (supported-systems (quote ("x" "y" "z"))) (inputs (list d))))) (list (package-transitive-supported-systems a) (package-transitive-supported-systems b) (package-transitive-supported-systems c) (package-transitive-supported-systems d) (package-transitive-supported-systems e))))
Test end:
result-kind: pass
actual-value: (("x" "y" "z") ("x" "y") ("y") ("y") ("y"))
expected-value: (("x" "y" "z") ("x" "y") ("y") ("y") ("y"))
Test begin:
test-name: "package-transitive-supported-systems detects cycles"
source-line: 371
source-form: (test-equal "package-transitive-supported-systems detects cycles" (quote ("c" "a" "b" "c")) (letrec* ((a (dummy-package "a" (build-system trivial-build-system) (native-inputs (list c)))) (b (dummy-package "b" (build-system trivial-build-system) (inputs (list a)))) (c (dummy-package "c" (build-system trivial-build-system) (inputs (list b))))) (guard (c ((package-cyclic-dependency-error? c) (map package-name (cons (package-error-package c) (package-error-dependency-cycle c))))) (package-transitive-supported-systems c))))
Test end:
result-kind: pass
actual-value: ("c" "a" "b" "c")
expected-value: ("c" "a" "b" "c")
Test begin:
test-name: "package-development-inputs"
source-line: 388
source-form: (test-assert "package-development-inputs" (lset<= equal? (quasiquote (("source" (unquote (package-source hello))) (unquote-splicing (standard-packages)))) (package-development-inputs hello)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-development-inputs, cross-compilation"
source-line: 395
source-form: (test-assert "package-development-inputs, cross-compilation" (lset<= equal? (quasiquote (("source" (unquote (package-source hello))) (unquote-splicing (standard-cross-packages "mips64el-linux-gnu" (quote host))) (unquote-splicing (standard-cross-packages "mips64el-linux-gnu" (quote target))))) (package-development-inputs hello #:target "mips64el-linux-gnu")))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-closure"
source-line: 402
source-form: (test-assert "package-closure" (let-syntax ((dummy-package/no-implicit (syntax-rules () ((_ name rest ...) (package (inherit (dummy-package name rest ...)) (build-system trivial-build-system)))))) (let* ((a (dummy-package/no-implicit "a")) (b (dummy-package/no-implicit "b" (propagated-inputs (list a)))) (c (dummy-package/no-implicit "c" (inputs (list a)))) (d (dummy-package/no-implicit "d" (native-inputs (list b)))) (e (dummy-package/no-implicit "e" (inputs (list c d))))) (lset= eq? (list a b c d e) (package-closure (list e)) (package-closure (list e d)) (package-closure (list e c b))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "origin-actual-file-name"
source-line: 424
source-form: (test-equal "origin-actual-file-name" "foo-1.tar.gz" (let ((o (dummy-origin (uri "http://www.example.com/foo-1.tar.gz")))) (origin-actual-file-name o)))
Test end:
result-kind: pass
actual-value: "foo-1.tar.gz"
expected-value: "foo-1.tar.gz"
Test begin:
test-name: "origin-actual-file-name, file-name"
source-line: 429
source-form: (test-equal "origin-actual-file-name, file-name" "foo-1.tar.gz" (let ((o (dummy-origin (uri "http://www.example.com/tarball") (file-name "foo-1.tar.gz")))) (origin-actual-file-name o)))
Test end:
result-kind: pass
actual-value: "foo-1.tar.gz"
expected-value: "foo-1.tar.gz"
Test begin:
test-name: "package-direct-sources, no source"
source-line: 448
source-form: (test-assert "package-direct-sources, no source" (null? (package-direct-sources a)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-direct-sources, #f source"
source-line: 450
source-form: (test-equal "package-direct-sources, #f source" (list i) (package-direct-sources b))
Test end:
result-kind: pass
actual-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590780>)
expected-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590780>)
Test begin:
test-name: "package-direct-sources, not input source"
source-line: 453
source-form: (test-equal "package-direct-sources, not input source" (list u) (package-direct-sources d))
Test end:
result-kind: pass
actual-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590840>)
expected-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590840>)
Test begin:
test-name: "package-direct-sources"
source-line: 456
source-form: (test-assert "package-direct-sources" (let ((s (package-direct-sources c))) (and (= (length (pk (quote s-sources) s)) 2) (member o s) (member i s))))
Test end:
result-kind: pass
actual-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590780>)
Test begin:
test-name: "package-direct-sources, with patches"
source-line: 461
source-form: (test-assert "package-direct-sources, with patches" (let ((s (package-direct-sources e))) (and (= (length (pk (quote s-sources) s)) 2) (member o s) (member j s))))
Test end:
result-kind: pass
actual-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590900>) 7feecb590660> #<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590900>)
Test begin:
test-name: "package-direct-sources, with patches and inputs"
source-line: 466
source-form: (test-assert "package-direct-sources, with patches and inputs" (let ((s (package-direct-sources f))) (and (= (length (pk (quote s-sources) s)) 3) (member o s) (member j s) (member u s))))
Test end:
result-kind: pass
actual-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590840>)
Test begin:
test-name: "package-transitive-sources"
source-line: 472
source-form: (test-assert "package-transitive-sources" (let ((s (package-transitive-sources d))) (and (= (length (pk (quote d-sources) s)) 3) (member o s) (member i s) (member u s))))
Test end:
result-kind: pass
actual-value: (#<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590840> #<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590900> #<origin "http://www.example.com" #<content-hash sha256:1xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> () 7feecb590780>)
Test begin:
test-name: "transitive-input-references"
source-line: 479
source-form: (test-assert "transitive-input-references" (let* ((a (dummy-package "a")) (b (dummy-package "b")) (c (dummy-package "c" (inputs (quasiquote (("a" (unquote a))))) (propagated-inputs (quasiquote (("boo" (unquote b))))))) (d (dummy-package "d" (inputs (quasiquote (("c*" (unquote c))))))) (keys (map (match-lambda (((quote assoc-ref) (quote l) key) key)) (pk (quote refs) (transitive-input-references (quote l) (package-inputs d)))))) (and (= (length keys) 2) (member "c*" keys) (member "boo" keys))))
Test end:
result-kind: pass
actual-value: ("boo")
Test begin:
test-name: "package-transitive-supported-systems, implicit inputs"
source-line: 496
source-form: (test-equal "package-transitive-supported-systems, implicit inputs" (filter target-linux? %supported-systems) (let ((p (dummy-package "foo" (build-system gnu-build-system) (supported-systems (quasiquote ("does-not-exist" "foobar" (unquote-splicing %supported-systems))))))) (parameterize ((%current-system "armhf-linux")) (package-transitive-supported-systems p))))
Test end:
result-kind: pass
actual-value: ("x86_64-linux" "mips64el-linux" "aarch64-linux" "powerpc64le-linux" "riscv64-linux" "i686-linux" "armhf-linux" "powerpc-linux")
expected-value: ("x86_64-linux" "mips64el-linux" "aarch64-linux" "powerpc64le-linux" "riscv64-linux" "i686-linux" "armhf-linux" "powerpc-linux")
Test begin:
test-name: "package-transitive-supported-systems: reduced binary seed, implicit inputs"
source-line: 508
source-form: (test-equal "package-transitive-supported-systems: reduced binary seed, implicit inputs" (quote ("x86_64-linux" "i686-linux")) (let ((p (dummy-package "foo" (build-system gnu-build-system) (supported-systems (quasiquote ("does-not-exist" "foobar" (unquote-splicing %supported-systems))))))) (parameterize ((%current-system "x86_64-linux")) (package-transitive-supported-systems p))))
Test end:
result-kind: pass
actual-value: ("x86_64-linux" "i686-linux")
expected-value: ("x86_64-linux" "i686-linux")
Test begin:
test-name: "supported-package?"
source-line: 520
source-form: (test-assert "supported-package?" (let* ((d (dummy-package "dep" (build-system trivial-build-system) (supported-systems (quote ("x86_64-linux"))))) (p (dummy-package "foo" (build-system gnu-build-system) (inputs (list d)) (supported-systems (quote ("x86_64-linux" "armhf-linux")))))) (and (supported-package? p "x86_64-linux") (not (supported-package? p "i686-linux")) (not (supported-package? p "armhf-linux")))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "supported-package? vs. system-dependent graph"
source-line: 532
source-form: (test-assert "supported-package? vs. system-dependent graph" (let* ((p0a (dummy-package "foo-arm" (build-system trivial-build-system) (supported-systems (quote ("armhf-linux"))))) (p0b (dummy-package "foo-x86_64" (build-system trivial-build-system) (supported-systems (quote ("x86_64-linux"))))) (p (dummy-package "bar" (build-system trivial-build-system) (inputs (if (string=? (%current-system) "armhf-linux") (quasiquote (("foo" (unquote p0a)))) (quasiquote (("foo" (unquote p0b))))))))) (and (supported-package? p "x86_64-linux") (supported-package? p "armhf-linux"))))
Test end:
result-kind: pass
actual-value: ("armhf-linux")
Test begin:
test-name: "supported-package? vs. %current-target-system"
source-line: 552
source-form: (test-assert "supported-package? vs. %current-target-system" (parameterize ((%current-target-system "arm-linux-gnueabihf")) (let ((p (dummy-package "foo" (build-system gnu-build-system) (supported-systems (quote ("x86_64-linux" "armhf-linux")))))) (and (supported-package? p "x86_64-linux") (not (supported-package? p "i686-linux")) (supported-package? p "armhf-linux")))))
Test end:
result-kind: pass
actual-value: ("armhf-linux")
Test begin:
test-name: "package-source-derivation, file"
source-line: 564
source-form: (test-assert "package-source-derivation, file" (let* ((file (search-path %load-path "guix.scm")) (package (package (inherit (dummy-package "p")) (source file))) (source (package-source-derivation %store (package-source package)))) (and (store-path? source) (valid-path? %store source) (equal? (call-with-input-file source get-bytevector-all) (call-with-input-file file get-bytevector-all)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-source-derivation, store path"
source-line: 575
source-form: (test-assert "package-source-derivation, store path" (let* ((file (add-to-store %store "guix.scm" #t "sha256" (search-path %load-path "guix.scm"))) (package (package (inherit (dummy-package "p")) (source file))) (source (package-source-derivation %store (package-source package)))) (string=? file source)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-source-derivation, indirect store path"
source-line: 584
source-form: (test-assert "package-source-derivation, indirect store path" (let* ((dir (add-to-store %store "guix-build" #t "sha256" (dirname (search-path %load-path "guix/build/utils.scm")))) (package (package (inherit (dummy-package "p")) (source (string-append dir "/utils.scm")))) (source (package-source-derivation %store (package-source package)))) (and (direct-store-path? source) (string-suffix? "utils.scm" source))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-source-derivation, local-file"
source-line: 595
source-form: (test-assert "package-source-derivation, local-file" (let* ((file (local-file "../guix/base32.scm")) (package (package (inherit (dummy-package "p")) (source file))) (source (package-source-derivation %store (package-source package)))) (and (store-path? source) (string-suffix? "base32.scm" source) (valid-path? %store source) (equal? (call-with-input-file source get-bytevector-all) (call-with-input-file (search-path %load-path "guix/base32.scm") get-bytevector-all)))))
Test end:
result-kind: fail
actual-value: #f
actual-error: (system-error "canonicalize-path" "~A: ~S" ("No such file or directory" "../guix/base32.scm") (2))
Test begin:
test-name: "package-source-derivation, origin, sha512"
source-line: 609
source-form: (test-equal "package-source-derivation, origin, sha512" "hello" (let* ((bash (search-bootstrap-binary "bash" (%current-system))) (builder (add-text-to-store %store "my-fixed-builder.sh" "echo -n hello > $out" (quote ()))) (method (lambda* (url hash-algo hash #:optional name #:rest rest) (and (eq? hash-algo (quote sha512)) (raw-derivation name bash (list builder) #:sources (list builder) #:hash hash #:hash-algo hash-algo)))) (source (origin (method method) (uri "unused://") (file-name "origin-sha512") (hash (content-hash (gcrypt:bytevector-hash (string->utf8 "hello") (gcrypt:lookup-hash-algorithm (quote sha512))) sha512)))) (drv (package-source-derivation %store source)) (output (derivation->output-path drv))) (build-derivations %store (list drv)) (call-with-input-file output get-string-all)))
Test end:
result-kind: fail
actual-value: #f
actual-error: (%exception #<&store-protocol-error message: "build of `/gnu/store/km82fxzrhcc67hnsyrskwvlpgsy2fscz-origin-sha512.drv' failed" status: 1>)
expected-value: "hello"
Test begin:
test-name: "package-source-derivation, origin, sha3-512"
source-line: 635
source-form: (test-equal "package-source-derivation, origin, sha3-512" "hello, sha3" (let* ((bash (search-bootstrap-binary "bash" (%current-system))) (builder (add-text-to-store %store "my-fixed-builder.sh" "echo -n hello, sha3 > $out" (quote ()))) (method (lambda* (url hash-algo hash #:optional name #:rest rest) (and (eq? hash-algo (quote sha3-512)) (raw-derivation name bash (list builder) #:sources (list builder) #:hash hash #:hash-algo hash-algo)))) (source (origin (method method) (uri "unused://") (file-name "origin-sha3") (hash (content-hash (gcrypt:bytevector-hash (string->utf8 "hello, sha3") (gcrypt:lookup-hash-algorithm (quote sha3-512))) sha3-512)))) (drv (package-source-derivation %store source)) (output (derivation->output-path drv))) (build-derivations %store (list drv)) (call-with-input-file output get-string-all)))
Test end:
result-kind: fail
actual-value: #f
actual-error: (%exception #<&store-protocol-error message: "build of `/gnu/store/bcpj7ha0ipcc6nd1mqyj0ca50ldh7wjp-origin-sha3.drv' failed" status: 1>)
expected-value: "hello, sha3"
Test begin:
test-name: "package-upstream-name*"
source-line: 661
source-form: (test-equal "package-upstream-name*" (package-upstream-name* (specification->package "guile-gcrypt")) "gcrypt")
Test end:
result-kind: pass
actual-value: "gcrypt"
expected-value: "gcrypt"
Test begin:
test-name: "package-source-derivation, snippet"
source-line: 671
source-form: (test-equal "package-source-derivation, snippet" "OK" (let* ((source (bootstrap-origin (origin (inherit (bootstrap-guile-origin (%current-system))) (patch-inputs (quasiquote (("tar" (unquote %bootstrap-coreutils&co)) ("xz" (unquote %bootstrap-coreutils&co)) ("patch" (unquote %bootstrap-coreutils&co))))) (patch-guile %bootstrap-guile) (modules (quote ((guix build utils)))) (snippet (quote (begin (chmod "." 511) (symlink "guile" "guile-rocks") (copy-recursively "../share/guile/2.0/scripts" "scripts") (chmod ".." 511))))))) (package (package (inherit (dummy-package "with-snippet")) (source source) (build-system trivial-build-system) (inputs (quasiquote (("tar" (unquote (search-bootstrap-binary "tar" (%current-system)))) ("xz" (unquote (search-bootstrap-binary "xz" (%current-system))))))) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let ((tar (assoc-ref %build-inputs "tar")) (xz (assoc-ref %build-inputs "xz")) (source (assoc-ref %build-inputs "source"))) (invoke tar "xvf" source "--use-compress-program" xz) (unless (and (string=? "guile" (readlink "bin/guile-rocks")) (file-exists? "bin/scripts/compile.scm")) (error "the snippet apparently failed")) (let ((out (assoc-ref %outputs "out"))) (call-with-output-file out (lambda (p) (display "OK" p)))) #t))))))) (drv (package-derivation %store package)) (out (derivation->output-path drv))) (and (build-derivations %store (list (pk (quote snippet-drv) drv))) (call-with-input-file out get-string-all))))
Test end:
result-kind: pass
actual-value: "OK"
expected-value: "OK"
Test begin:
test-name: "origin->derivation, single file with snippet (compression: gzip)"
source-line: 736
source-form: (test-equal (string-append "origin->derivation, single file with snippet " "(compression: " (if comp comp "None") ")") "2 + 2 = 4" (let*-values (((name) "maths") ((compressed-name) (if comp (string-append name "." ext) name)) ((file hash) (test-file %store compressed-name "2 + 2 = 5")) ((source) (origin (method url-fetch) (uri (string-append "file://" file)) (file-name compressed-name) (patch-inputs (quasiquote (("tar" (unquote %bootstrap-coreutils&co)) ("xz" (unquote %bootstrap-coreutils&co)) ("bzip2" (unquote %bootstrap-coreutils&co)) ("gzip" (unquote %bootstrap-coreutils&co))))) (patch-guile %bootstrap-guile) (modules (quote ((guix build utils)))) (snippet (quasiquote (substitute* (unquote name) (("5") "4")))) (hash (content-hash hash)))) ((drv) (run-with-store %store (origin->derivation source))) ((out) (derivation->output-path drv))) (and (build-derivations %store (list drv)) (if (tarball? out) (let* ((bin (gexp (string-append (ungexp-native %bootstrap-coreutils&co) "/bin"))) (f (computed-file name (with-imported-modules (quote ((guix build utils))) (gexp (begin (use-modules (guix build utils)) (setenv "PATH" (ungexp-native bin)) (invoke "tar" "xvf" (ungexp-native out)) (copy-file (ungexp-native name) (ungexp output))))) #:guile %bootstrap-guile)) (drv (run-with-store %store (lower-object f))) (_ (build-derivations %store (list drv)))) (call-with-input-file (derivation->output-path drv) get-string-all)) (call-with-input-file out get-string-all)))))
Test end:
result-kind: pass
actual-value: "2 + 2 = 4"
expected-value: "2 + 2 = 4"
Test begin:
test-name: "origin->derivation, single file with snippet (compression: xz)"
source-line: 736
source-form: (test-equal (string-append "origin->derivation, single file with snippet " "(compression: " (if comp comp "None") ")") "2 + 2 = 4" (let*-values (((name) "maths") ((compressed-name) (if comp (string-append name "." ext) name)) ((file hash) (test-file %store compressed-name "2 + 2 = 5")) ((source) (origin (method url-fetch) (uri (string-append "file://" file)) (file-name compressed-name) (patch-inputs (quasiquote (("tar" (unquote %bootstrap-coreutils&co)) ("xz" (unquote %bootstrap-coreutils&co)) ("bzip2" (unquote %bootstrap-coreutils&co)) ("gzip" (unquote %bootstrap-coreutils&co))))) (patch-guile %bootstrap-guile) (modules (quote ((guix build utils)))) (snippet (quasiquote (substitute* (unquote name) (("5") "4")))) (hash (content-hash hash)))) ((drv) (run-with-store %store (origin->derivation source))) ((out) (derivation->output-path drv))) (and (build-derivations %store (list drv)) (if (tarball? out) (let* ((bin (gexp (string-append (ungexp-native %bootstrap-coreutils&co) "/bin"))) (f (computed-file name (with-imported-modules (quote ((guix build utils))) (gexp (begin (use-modules (guix build utils)) (setenv "PATH" (ungexp-native bin)) (invoke "tar" "xvf" (ungexp-native out)) (copy-file (ungexp-native name) (ungexp output))))) #:guile %bootstrap-guile)) (drv (run-with-store %store (lower-object f))) (_ (build-derivations %store (list drv)))) (call-with-input-file (derivation->output-path drv) get-string-all)) (call-with-input-file out get-string-all)))))
Test end:
result-kind: pass
actual-value: "2 + 2 = 4"
expected-value: "2 + 2 = 4"
Test begin:
test-name: "origin->derivation, single file with snippet (compression: bzip2)"
source-line: 736
source-form: (test-equal (string-append "origin->derivation, single file with snippet " "(compression: " (if comp comp "None") ")") "2 + 2 = 4" (let*-values (((name) "maths") ((compressed-name) (if comp (string-append name "." ext) name)) ((file hash) (test-file %store compressed-name "2 + 2 = 5")) ((source) (origin (method url-fetch) (uri (string-append "file://" file)) (file-name compressed-name) (patch-inputs (quasiquote (("tar" (unquote %bootstrap-coreutils&co)) ("xz" (unquote %bootstrap-coreutils&co)) ("bzip2" (unquote %bootstrap-coreutils&co)) ("gzip" (unquote %bootstrap-coreutils&co))))) (patch-guile %bootstrap-guile) (modules (quote ((guix build utils)))) (snippet (quasiquote (substitute* (unquote name) (("5") "4")))) (hash (content-hash hash)))) ((drv) (run-with-store %store (origin->derivation source))) ((out) (derivation->output-path drv))) (and (build-derivations %store (list drv)) (if (tarball? out) (let* ((bin (gexp (string-append (ungexp-native %bootstrap-coreutils&co) "/bin"))) (f (computed-file name (with-imported-modules (quote ((guix build utils))) (gexp (begin (use-modules (guix build utils)) (setenv "PATH" (ungexp-native bin)) (invoke "tar" "xvf" (ungexp-native out)) (copy-file (ungexp-native name) (ungexp output))))) #:guile %bootstrap-guile)) (drv (run-with-store %store (lower-object f))) (_ (build-derivations %store (list drv)))) (call-with-input-file (derivation->output-path drv) get-string-all)) (call-with-input-file out get-string-all)))))
Test end:
result-kind: pass
actual-value: "2 + 2 = 4"
expected-value: "2 + 2 = 4"
Test begin:
test-name: "origin->derivation, single file with snippet (compression: None)"
source-line: 736
source-form: (test-equal (string-append "origin->derivation, single file with snippet " "(compression: " (if comp comp "None") ")") "2 + 2 = 4" (let*-values (((name) "maths") ((compressed-name) (if comp (string-append name "." ext) name)) ((file hash) (test-file %store compressed-name "2 + 2 = 5")) ((source) (origin (method url-fetch) (uri (string-append "file://" file)) (file-name compressed-name) (patch-inputs (quasiquote (("tar" (unquote %bootstrap-coreutils&co)) ("xz" (unquote %bootstrap-coreutils&co)) ("bzip2" (unquote %bootstrap-coreutils&co)) ("gzip" (unquote %bootstrap-coreutils&co))))) (patch-guile %bootstrap-guile) (modules (quote ((guix build utils)))) (snippet (quasiquote (substitute* (unquote name) (("5") "4")))) (hash (content-hash hash)))) ((drv) (run-with-store %store (origin->derivation source))) ((out) (derivation->output-path drv))) (and (build-derivations %store (list drv)) (if (tarball? out) (let* ((bin (gexp (string-append (ungexp-native %bootstrap-coreutils&co) "/bin"))) (f (computed-file name (with-imported-modules (quote ((guix build utils))) (gexp (begin (use-modules (guix build utils)) (setenv "PATH" (ungexp-native bin)) (invoke "tar" "xvf" (ungexp-native out)) (copy-file (ungexp-native name) (ungexp output))))) #:guile %bootstrap-guile)) (drv (run-with-store %store (lower-object f))) (_ (build-derivations %store (list drv)))) (call-with-input-file (derivation->output-path drv) get-string-all)) (call-with-input-file out get-string-all)))))
Test end:
result-kind: pass
actual-value: "2 + 2 = 4"
expected-value: "2 + 2 = 4"
Test begin:
test-name: "return value"
source-line: 783
source-form: (test-assert "return value" (let ((drv (package-derivation %store (dummy-package "p")))) (and (derivation? drv) (file-exists? (derivation-file-name drv)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-derivation, inputs deduplicated"
source-line: 788
source-form: (test-assert "package-derivation, inputs deduplicated" (let* ((dep (dummy-package "dep")) (p0 (dummy-package "p" (inputs (list dep)))) (p1 (package (inherit p0) (inputs (quasiquote (("dep" (unquote (package (inherit dep)))) (unquote-splicing (package-inputs p0)))))))) (string=? (derivation-file-name (package-derivation %store p0)) (derivation-file-name (package-derivation %store p1)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-derivation, different system"
source-line: 801
source-form: (test-assert "package-derivation, different system" (let* ((system (if (string=? (%current-system) "x86_64-linux") "aarch64-linux" "x86_64-linux")) (drv (package-derivation %store (dummy-package "p") system #:graft? #f))) (define right-system? (mlambdaq (drv) (and (string=? (derivation-system drv) system) (every (compose right-system? derivation-input-derivation) (derivation-inputs drv))))) (right-system? drv)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-output"
source-line: 816
source-form: (test-assert "package-output" (let* ((package (dummy-package "p")) (drv (package-derivation %store package))) (and (derivation? drv) (string=? (derivation->output-path drv) (package-output %store package "out")))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "patch not found yields a run-time error"
source-line: 823
source-form: (test-equal "patch not found yields a run-time error" (quote ("~a: patch not found\n" "does-not-exist.patch")) (guard (c ((formatted-message? c) (cons (formatted-message-string c) (formatted-message-arguments c)))) (let ((p (package (inherit (dummy-package "p")) (source (origin (method (const #f)) (uri "http://whatever") (patches (list (search-patch "does-not-exist.patch"))) (sha256 (base32 "0amn0bbwqvsvvsh6drfwz20ydc2czk374lzw5kksbh6bf78k4ks4"))))))) (package-derivation %store p) #f)))
Test end:
result-kind: pass
actual-value: ("~a: patch not found\n" "does-not-exist.patch")
expected-value: ("~a: patch not found\n" "does-not-exist.patch")
Test begin:
test-name: "&package-input-error"
source-line: 842
source-form: (test-equal "&package-input-error" (list dummy (quasiquote ("x" (unquote (current-module))))) (guard (c ((package-input-error? c) (list (package-error-package c) (package-error-invalid-input c)))) (package-derivation %store dummy)))
Test end:
result-kind: pass
actual-value: (#<package foo@0 7feec5502580> ("x" #<directory (tests packages) 7feedcb7ca00>))
expected-value: (#<package foo@0 7feec5502580> ("x" #<directory (tests packages) 7feedcb7ca00>))
Test begin:
test-name: "reference to non-existent output"
source-line: 849
source-form: (test-assert "reference to non-existent output" (parameterize ((%graft? #f)) (let* ((dep (dummy-package "dep")) (p (dummy-package "p" (inputs (list (quasiquote ((unquote dep) "non-existent"))))))) (guard (c ((derivation-missing-output-error? c) (and (string=? (derivation-missing-output c) "non-existent") (equal? (package-derivation %store dep) (derivation-error-derivation c))))) (package-derivation %store p)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "trivial"
source-line: 861
source-form: (test-assert "trivial" (let* ((p (package (inherit (dummy-package "trivial")) (build-system trivial-build-system) (source #f) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (begin (mkdir %output) (call-with-output-file (string-append %output "/test") (lambda (p) (display (quote (hello guix)) p))) #t)))))) (d (package-derivation %store p))) (and (build-derivations %store (list d)) (let ((p (pk (quote drv) d (derivation->output-path d)))) (equal? (quote (hello guix)) (call-with-input-file (string-append p "/test") read))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "trivial with local file as input"
source-line: 880
source-form: (test-assert "trivial with local file as input" (let* ((i (search-path %load-path "ice-9/boot-9.scm")) (p (package (inherit (dummy-package "trivial-with-input-file")) (build-system trivial-build-system) (source #f) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (begin (copy-file (assoc-ref %build-inputs "input") %output) #t)))) (inputs (quasiquote (("input" (unquote i))))))) (d (package-derivation %store p))) (and (build-derivations %store (list d)) (let ((p (pk (quote drv) d (derivation->output-path d)))) (equal? (call-with-input-file p get-bytevector-all) (call-with-input-file i get-bytevector-all))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "trivial with source"
source-line: 898
source-form: (test-assert "trivial with source" (let* ((i (search-path %load-path "ice-9/boot-9.scm")) (p (package (inherit (dummy-package "trivial-with-source")) (build-system trivial-build-system) (source i) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (begin (copy-file (assoc-ref %build-inputs "source") %output) #t)))))) (d (package-derivation %store p))) (and (build-derivations %store (list d)) (let ((p (derivation->output-path d))) (equal? (call-with-input-file p get-bytevector-all) (call-with-input-file i get-bytevector-all))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "trivial with system-dependent input"
source-line: 915
source-form: (test-assert "trivial with system-dependent input" (let* ((p (package (inherit (dummy-package "trivial-system-dependent-input")) (build-system trivial-build-system) (source #f) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let ((out (assoc-ref %outputs "out")) (bash (assoc-ref %build-inputs "bash"))) (invoke bash "-c" (format #f "echo hello > ~a" out))))))) (inputs (quasiquote (("bash" (unquote (search-bootstrap-binary "bash" (%current-system))))))))) (d (package-derivation %store p))) (and (build-derivations %store (list d)) (let ((p (pk (quote drv) d (derivation->output-path d)))) (eq? (quote hello) (call-with-input-file p read))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "trivial with #:allowed-references"
source-line: 936
source-form: (test-assert "trivial with #:allowed-references" (let* ((p (package (inherit (dummy-package "trivial")) (build-system trivial-build-system) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:allowed-references ((unquote %bootstrap-guile)) #:builder (begin (mkdir %output) (symlink %output (string-append %output "/self")) #t)))))) (d (package-derivation %store p))) (guard (c ((store-protocol-error? c) #t)) (build-derivations %store (list d)) #f)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "trivial with #:allowed-references + grafts"
source-line: 955
source-form: (test-assert "trivial with #:allowed-references + grafts" (let* ((g (package (inherit %bootstrap-guile) (replacement (package (inherit %bootstrap-guile) (version "9.9"))))) (p (package (inherit (dummy-package "trivial")) (build-system trivial-build-system) (inputs (list g)) (arguments (quasiquote (#:guile (unquote g) #:allowed-references ((unquote g)) #:builder (mkdir %output)))))) (d0 (package-derivation %store p #:graft? #f)) (d1 (parameterize ((%graft? #t)) (package-derivation %store p #:graft? #t)))) (string=? (derivation-file-name d1) (derivation-file-name d0))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "search paths"
source-line: 977
source-form: (test-assert "search paths" (let* ((p (make-prompt-tag "return-search-paths")) (t (make-parameter "guile-0")) (s (build-system (name (quote raw)) (description "Raw build system with direct store access") (lower (lambda* (name #:key source inputs system target #:allow-other-keys) (bag (name name) (system system) (target target) (build-inputs inputs) (build (lambda* (name inputs #:key outputs system search-paths) (if (string=? name (t)) (abort-to-prompt p search-paths) (gexp->derivation name (gexp (mkdir (ungexp output)))))))))))) (x (list (search-path-specification (variable "GUILE_LOAD_PATH") (files (quote ("share/guile/site/2.0")))) (search-path-specification (variable "GUILE_LOAD_COMPILED_PATH") (files (quote ("share/guile/site/2.0")))))) (a (package (inherit (dummy-package "guile")) (build-system s) (native-search-paths x))) (b (package (inherit (dummy-package "guile-foo")) (build-system s) (inputs (quasiquote (("guile" (unquote a))))))) (c (package (inherit (dummy-package "guile-bar")) (build-system s) (inputs (quasiquote (("guile" (unquote a)) ("guile-foo" (unquote b)))))))) (let-syntax ((collect (syntax-rules () ((_ body ...) (call-with-prompt p (lambda () body ...) (lambda (k search-paths) search-paths)))))) (and (null? (collect (package-derivation %store a))) (parameterize ((t "guile-foo-0")) (equal? x (collect (package-derivation %store b)))) (parameterize ((t "guile-bar-0")) (equal? x (collect (package-derivation %store c))))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-transitive-native-search-paths"
source-line: 1025
source-form: (test-assert "package-transitive-native-search-paths" (let* ((sp (lambda (name) (list (search-path-specification (variable name) (files (quote ("foo/bar"))))))) (p0 (dummy-package "p0" (native-search-paths (sp "PATH0")))) (p1 (dummy-package "p1" (native-search-paths (sp "PATH1")))) (p2 (dummy-package "p2" (native-search-paths (sp "PATH2")) (inputs (list p0)) (propagated-inputs (list p1)))) (p3 (dummy-package "p3" (native-search-paths (sp "PATH3")) (native-inputs (list p0)) (propagated-inputs (list p2))))) (lset= string=? (quote ("PATH1" "PATH2" "PATH3")) (map search-path-specification-variable (package-transitive-native-search-paths p3)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-cross-derivation"
source-line: 1045
source-form: (test-assert "package-cross-derivation" (let ((drv (package-cross-derivation %store (dummy-package "p") "mips64el-linux-gnu"))) (and (derivation? drv) (file-exists? (derivation-file-name drv)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-cross-derivation, trivial-build-system"
source-line: 1051
source-form: (test-assert "package-cross-derivation, trivial-build-system" (let ((p (package (inherit (dummy-package "p")) (build-system trivial-build-system) (arguments (quote (#:builder (exit 1))))))) (let ((drv (package-cross-derivation %store p "mips64el-linux-gnu"))) (derivation? drv))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-cross-derivation, no cross builder"
source-line: 1058
source-form: (test-assert "package-cross-derivation, no cross builder" (let* ((b (build-system (inherit trivial-build-system) (lower (const #f)))) (p (package (inherit (dummy-package "p")) (build-system b)))) (guard (c ((package-cross-build-system-error? c) (eq? (package-error-package c) p))) (package-cross-derivation %store p "mips64el-linux-gnu") #f)))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-grafts, indirect grafts"
source-line: 1086
source-form: (test-assert "package-grafts, indirect grafts" (let* ((new (dummy-package "dep" (arguments (quote (#:implicit-inputs? #f))))) (dep (package (inherit new) (version "0.0"))) (dep* (package (inherit dep) (replacement new))) (dummy (dummy-package "dummy" (arguments (quote (#:implicit-inputs? #f))) (inputs (list dep*))))) (equal? (package-grafts %store dummy) (list (graft (origin (package-derivation %store dep)) (replacement (package-derivation %store new)))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-grafts, indirect grafts, propagated inputs"
source-line: 1119
source-form: (test-assert "package-grafts, indirect grafts, propagated inputs" (let* ((new (dummy-package "dep" (arguments (quote (#:implicit-inputs? #f))))) (dep (package (inherit new) (version "0.0"))) (dep* (package (inherit dep) (replacement new))) (prop (dummy-package "propagated" (propagated-inputs (list dep*)) (arguments (quote (#:implicit-inputs? #f))))) (dummy (dummy-package "dummy" (arguments (quote (#:implicit-inputs? #f))) (inputs (list prop))))) (equal? (package-grafts %store dummy) (list (graft (origin (package-derivation %store dep)) (replacement (package-derivation %store new)))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-grafts, same replacement twice"
source-line: 1135
source-form: (test-assert "package-grafts, same replacement twice" (let* ((new (dummy-package "dep" (version "1") (arguments (quote (#:implicit-inputs? #f))))) (dep (package (inherit new) (version "0") (replacement new))) (p1 (dummy-package "intermediate1" (arguments (quote (#:implicit-inputs? #f))) (inputs (list dep)))) (p2 (dummy-package "intermediate2" (arguments (quote (#:implicit-inputs? #f))) (inputs (list (package (inherit dep)))))) (p3 (dummy-package "final" (arguments (quote (#:implicit-inputs? #f))) (inputs (list p1 p2))))) (equal? (package-grafts %store p3) (list (graft (origin (package-derivation %store (package (inherit dep) (replacement #f)))) (replacement (package-derivation %store new)))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-grafts, dependency on several outputs"
source-line: 1159
source-form: (test-assert "package-grafts, dependency on several outputs" (letrec* ((p0 (dummy-package "p0" (version "1.0") (replacement p0*) (arguments (quote (#:implicit-inputs? #f))) (outputs (quote ("out" "lib"))))) (p0* (package (inherit p0) (version "1.1"))) (p1 (dummy-package "p1" (arguments (quote (#:implicit-inputs? #f))) (inputs (list p0 (quasiquote ((unquote p0) "lib"))))))) (lset= equal? (pk (package-grafts %store p1)) (list (graft (origin (package-derivation %store p0)) (origin-output "out") (replacement (package-derivation %store p0*)) (replacement-output "out")) (graft (origin (package-derivation %store p0)) (origin-output "lib") (replacement (package-derivation %store p0*)) (replacement-output "lib"))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "replacement also grafted"
source-line: 1182
source-form: (test-assert "replacement also grafted" (let* ((p1r (dummy-package "P1" (build-system trivial-build-system) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (let ((out (assoc-ref %outputs "out"))) (mkdir out) (call-with-output-file (string-append out "/replacement") (const #t)))))))) (p1 (package (inherit p1r) (name "p1") (replacement p1r) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (begin (mkdir (assoc-ref %outputs "out")) #t)))))) (p2r (dummy-package "P2" (build-system trivial-build-system) (inputs (list p1)) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (let ((out (assoc-ref %outputs "out"))) (mkdir out) (chdir out) (symlink (assoc-ref %build-inputs "p1") "p1") (call-with-output-file (string-append out "/replacement") (const #t)))))))) (p2 (package (inherit p2r) (name "p2") (replacement p2r) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (let ((out (assoc-ref %outputs "out"))) (mkdir out) (chdir out) (symlink (assoc-ref %build-inputs "p1") "p1") #t)))))) (p3 (dummy-package "p3" (build-system trivial-build-system) (inputs (list p2)) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (let ((out (assoc-ref %outputs "out"))) (mkdir out) (chdir out) (symlink (assoc-ref %build-inputs "p2") "p2") #t))))))) (lset= equal? (package-grafts %store p3) (list (graft (origin (package-derivation %store p1 #:graft? #f)) (replacement (package-derivation %store p1r))) (graft (origin (package-derivation %store p2 #:graft? #f)) (replacement (package-derivation %store p2r #:graft? #t)))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package->bag"
source-line: 1279
source-form: (test-equal "package->bag" (parameterize ((%current-system "foo86-hurd")) (quasiquote ("foo86-hurd" #f ((unquote (package-source gnu-make))) ((unquote (canonical-package glibc))) ((unquote (canonical-package coreutils)))))) (let ((bag (package->bag gnu-make "foo86-hurd"))) (list (bag-system bag) (bag-target bag) (assoc-ref (bag-build-inputs bag) "source") (assoc-ref (bag-build-inputs bag) "libc") (assoc-ref (bag-build-inputs bag) "coreutils"))))
Test end:
result-kind: pass
actual-value: ("foo86-hurd" #f (#<origin "mirror://gnu/make/make-4.4.1.tar.gz" #<content-hash sha256:1cwgcmwdn7gqn5da2ia91gkyiqs9birr10sy5ykpkaxzcwfzn5nx> ("/home/herman/git/guix/gnu/packages/patches/make-impure-dirs.patch") 7feecb10a000>) (#<package glibc@2.39 gnu/packages/commencement.scm:3103 7feec5502370>) (#<package coreutils@9.1 guix/build-system/gnu.scm:151 7feecb124210>))
expected-value: ("foo86-hurd" #f (#<origin "mirror://gnu/make/make-4.4.1.tar.gz" #<content-hash sha256:1cwgcmwdn7gqn5da2ia91gkyiqs9birr10sy5ykpkaxzcwfzn5nx> ("/home/herman/git/guix/gnu/packages/patches/make-impure-dirs.patch") 7feecb10a000>) (#<package glibc@2.39 gnu/packages/commencement.scm:3103 7feec5502370>) (#<package coreutils@9.1 guix/build-system/gnu.scm:151 7feecb124210>))
Test begin:
test-name: "package->bag, sensitivity to %current-target-system"
source-line: 1289
source-form: (test-assert "package->bag, sensitivity to %current-target-system" (let* ((lower (lambda* (name #:key system target inputs native-inputs #:allow-other-keys) (and (not target) (bag (name name) (system system) (target target) (build-inputs native-inputs) (host-inputs inputs) (build (lambda* (name inputs #:key system target #:allow-other-keys) (gexp->derivation "foo" (gexp (mkdir (ungexp output)))))))))) (bs (build-system (name (quote build-system-without-cross-compilation)) (description "Does not support cross compilation.") (lower lower))) (dep (dummy-package "dep" (build-system bs))) (pkg (dummy-package "example" (native-inputs (list dep)))) (do-not-build (lambda (continue store lst . _) lst))) (equal? (with-build-handler do-not-build (parameterize ((%current-target-system "powerpc64le-linux-gnu") (%graft? #t)) (package-cross-derivation %store pkg (%current-target-system) #:graft? #t))) (with-build-handler do-not-build (package-cross-derivation %store (package (inherit pkg)) "powerpc64le-linux-gnu" #:graft? #t)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package->bag, cross-compilation"
source-line: 1322
source-form: (test-equal "package->bag, cross-compilation" (quasiquote ((unquote (%current-system)) "foo86-hurd" ((unquote (package-source gnu-make))) ((unquote (canonical-package glibc))) ((unquote (canonical-package coreutils))))) (let ((bag (package->bag gnu-make (%current-system) "foo86-hurd"))) (list (bag-system bag) (bag-target bag) (assoc-ref (bag-build-inputs bag) "source") (assoc-ref (bag-build-inputs bag) "libc") (assoc-ref (bag-build-inputs bag) "coreutils"))))
Test end:
result-kind: pass
actual-value: ("x86_64-linux" "foo86-hurd" (#<origin "mirror://gnu/make/make-4.4.1.tar.gz" #<content-hash sha256:1cwgcmwdn7gqn5da2ia91gkyiqs9birr10sy5ykpkaxzcwfzn5nx> ("/home/herman/git/guix/gnu/packages/patches/make-impure-dirs.patch") 7feecb10a000>) (#<package glibc@2.39 gnu/packages/commencement.scm:3103 7feecb126840>) (#<package coreutils@9.1 guix/build-system/gnu.scm:151 7feecb124210>))
expected-value: ("x86_64-linux" "foo86-hurd" (#<origin "mirror://gnu/make/make-4.4.1.tar.gz" #<content-hash sha256:1cwgcmwdn7gqn5da2ia91gkyiqs9birr10sy5ykpkaxzcwfzn5nx> ("/home/herman/git/guix/gnu/packages/patches/make-impure-dirs.patch") 7feecb10a000>) (#<package glibc@2.39 gnu/packages/commencement.scm:3103 7feecb126840>) (#<package coreutils@9.1 guix/build-system/gnu.scm:151 7feecb124210>))
Test begin:
test-name: "package->bag, propagated inputs"
source-line: 1332
source-form: (test-assert "package->bag, propagated inputs" (let* ((dep (dummy-package "dep")) (prop (dummy-package "prop" (propagated-inputs (list dep)))) (dummy (dummy-package "dummy" (inputs (list prop)))) (inputs (bag-transitive-inputs (package->bag dummy #:graft? #f)))) (match (assoc "dep" inputs) (("dep" package) (eq? package dep)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package->bag, sensitivity to %current-system"
source-line: 1343
source-form: (test-assert "package->bag, sensitivity to %current-system" (let* ((dep (dummy-package "dep" (propagated-inputs (if (string=? (%current-system) "i586-gnu") (quasiquote (("libxml2" (unquote libxml2)))) (quote ()))))) (pkg (dummy-package "foo" (native-inputs (list dep)))) (bag (package->bag pkg (%current-system) "i586-gnu"))) (equal? (parameterize ((%current-system "x86_64-linux")) (bag-transitive-inputs bag)) (parameterize ((%current-system "i586-gnu")) (bag-transitive-inputs bag)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package->bag, sensitivity to %current-target-system"
source-line: 1357
source-form: (test-assert "package->bag, sensitivity to %current-target-system" (let* ((dep (dummy-package "dep" (propagated-inputs (if (%current-target-system) (quasiquote (("libxml2" (unquote libxml2)))) (quote ()))))) (pkg (dummy-package "foo" (native-inputs (list dep)))) (bag (package->bag pkg (%current-system) "foo86-hurd"))) (equal? (parameterize ((%current-target-system "foo64-gnu")) (bag-transitive-inputs bag)) (parameterize ((%current-target-system #f)) (bag-transitive-inputs bag)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "bag->derivation"
source-line: 1370
source-form: (test-assert "bag->derivation" (let ((store (open-connection-for-tests))) (dynamic-wind (const #t) (lambda () (run-with-store store (parameterize ((%graft? #f)) (let ((bag (package->bag gnu-make)) (drv (package-derivation %store gnu-make))) (parameterize ((%current-system "foox86-hurd")) (mlet %store-monad ((bag-drv (bag->derivation bag))) (return (equal? drv bag-drv)))))) #:guile-for-build (%guile-for-build))) (lambda () (close-connection store)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "bag->derivation, cross-compilation"
source-line: 1378
source-form: (test-assert "bag->derivation, cross-compilation" (parameterize ((%graft? #f)) (let* ((target "mips64el-linux-gnu") (bag (package->bag gnu-make (%current-system) target)) (drv (package-cross-derivation %store gnu-make target))) (parameterize ((%current-system "foox86-hurd") (%current-target-system "foo64-linux-gnu")) (mlet %store-monad ((bag-drv (bag->derivation bag))) (return (equal? drv bag-drv)))))))
Test end:
result-kind: pass
actual-value: #<procedure 7feec8625680 at <unknown port>:1385:8 (state)>
Test begin:
test-name: "GNU Make, bootstrap"
source-line: 1390
source-form: (test-assert "GNU Make, bootstrap" (let ((gnu-make gnu-make-for-tests)) (and (package? gnu-make) (or (location? (package-location gnu-make)) (not (package-location gnu-make))) (let* ((drv (package-derivation %store gnu-make)) (out (derivation->output-path drv))) (and (build-derivations %store (list drv)) (file-exists? (string-append out "/bin/make")))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-mapping"
source-line: 1402
source-form: (test-equal "package-mapping" 42 (let* ((dep (dummy-package "chbouib" (native-inputs (quasiquote (("x" (unquote grep))))))) (p0 (dummy-package "example" (source 77) (inputs (quasiquote (("foo" (unquote coreutils)) ("bar" (unquote grep)) ("baz" (unquote dep))))))) (transform (lambda (p) (package (inherit p) (source 42)))) (rewrite (package-mapping transform)) (p1 (rewrite p0)) (bag0 (package->bag p0)) (bag1 (package->bag p1))) (and (eq? p1 (rewrite p0)) (eqv? 42 (package-source p1)) (equal? (drop (bag-direct-inputs bag0) 4) (drop (bag-direct-inputs bag1) 4)) (match (package-inputs p1) ((("foo" dep1) ("bar" dep2) ("baz" dep3)) (and (eq? dep1 (rewrite coreutils)) (eq? dep2 (rewrite grep)) (eq? dep3 (rewrite dep)) (eqv? 42 (package-source dep1) (package-source dep2) (package-source dep3)) (match (package-native-inputs dep3) ((("x" dep)) (and (eq? dep (rewrite grep)) (package-source dep))))))))))
Test end:
result-kind: pass
actual-value: 42
expected-value: 42
Test begin:
test-name: "package-mapping, deep"
source-line: 1438
source-form: (test-equal "package-mapping, deep" (quote (42)) (let* ((p0 (dummy-package "example" (inputs (quasiquote (("foo" (unquote coreutils)) ("bar" (unquote grep))))))) (transform (lambda (p) (package (inherit p) (source 42)))) (rewrite (package-mapping transform #:deep? #t)) (p1 (rewrite p0)) (bag (package->bag p1))) (and (eq? p1 (rewrite p0)) (match (bag-direct-inputs bag) ((("source" 42) ("foo" dep1) ("bar" dep2) rest ..1) (and (eq? dep1 (rewrite coreutils)) (eq? dep2 (rewrite grep)) (= 42 (package-source dep1)) (= 42 (package-source dep2)) (delete-duplicates (map (match-lambda ((_ package . _) (package-source package))) rest))))))))
Test end:
result-kind: pass
actual-value: (42)
expected-value: (42)
Test begin:
test-name: "package-input-rewriting"
source-line: 1463
source-form: (test-assert "package-input-rewriting" (let* ((dep (dummy-package "chbouib" (native-inputs (quasiquote (("x" (unquote grep))))))) (p0 (dummy-package "example" (inputs (quasiquote (("foo" (unquote coreutils)) ("bar" (unquote grep)) ("baz" (unquote dep))))))) (rewrite (package-input-rewriting (quasiquote (((unquote coreutils) unquote sed) ((unquote grep) unquote findutils))) (cut string-append "r-" <>) #:deep? #f)) (p1 (rewrite p0)) (p2 (rewrite p0))) (and (not (eq? p1 p0)) (eq? p1 p2) (string=? "r-example" (package-name p1)) (match (package-inputs p1) ((("foo" dep1) ("bar" dep2) ("baz" dep3)) (and (eq? dep1 sed) (eq? dep2 findutils) (string=? (package-name dep3) "r-chbouib") (eq? dep3 (rewrite dep)) (match (package-native-inputs dep3) ((("x" dep)) (eq? dep findutils)))))) (equal? (drop (bag-direct-inputs (package->bag p1)) 3) (drop (bag-direct-inputs (package->bag p0)) 3)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting, deep"
source-line: 1493
source-form: (test-eq "package-input-rewriting, deep" (derivation-file-name (package-derivation %store sed)) (let* ((p0 (dummy-package "chbouib" (build-system python-build-system) (arguments (quasiquote (#:python (unquote python)))))) (rewrite (package-input-rewriting (quasiquote (((unquote python) unquote sed))))) (p1 (rewrite p0))) (match (bag-direct-inputs (package->bag p1)) ((("python" python) _ ...) (derivation-file-name (package-derivation %store python))))))
Test end:
result-kind: pass
actual-value: "/gnu/store/dvxkd0p86wqcyzvws7lcams6bbbq6gli-sed-4.8.drv"
expected-value: "/gnu/store/dvxkd0p86wqcyzvws7lcams6bbbq6gli-sed-4.8.drv"
Test begin:
test-name: "package-input-rewriting, recursive"
source-line: 1504
source-form: (test-assert "package-input-rewriting, recursive" (let* ((dep (dummy-package "dep" (native-inputs (list grep)))) (p0 (dummy-package "example1" (inputs (list dep grep)))) (p1 (dummy-package "example2" (inputs (list dep grep)))) (replacements (quasiquote (((unquote grep) unquote findutils) ((unquote p0) unquote p1)))) (rewrite (package-input-rewriting replacements)) (rewrite/recursive (package-input-rewriting replacements #:recursive? #t)) (p2 (rewrite p0)) (p3 (rewrite/recursive p0))) (and (string=? (package-name p2) "example2") (match (package-inputs p2) ((("dep" dep1) ("grep" dep2)) (and (match (package-native-inputs dep1) ((("grep" x)) (eq? x grep))) (eq? dep2 grep)))) (string=? (package-name p3) "example2") (match (package-inputs p3) ((("dep" dep1) ("grep" dep2)) (and (match (package-native-inputs dep1) ((("grep" x)) (string=? (package-full-name x) (package-full-name findutils)))) (string=? (package-full-name dep2) (package-full-name findutils))))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec"
source-line: 1534
source-form: (test-assert "package-input-rewriting/spec" (let* ((dep (dummy-package "chbouib" (native-inputs (quasiquote (("x" (unquote grep))))))) (p0 (dummy-package "example" (inputs (quasiquote (("foo" (unquote coreutils)) ("bar" (unquote grep)) ("baz" (unquote dep))))))) (rewrite (package-input-rewriting/spec (quasiquote (("coreutils" unquote (const sed)) ("grep" unquote (const findutils)))) #:deep? #f)) (p1 (rewrite p0)) (p2 (rewrite p0))) (and (not (eq? p1 p0)) (eq? p1 p2) (string=? "example" (package-name p1)) (match (package-inputs p1) ((("foo" dep1) ("bar" dep2) ("baz" dep3)) (and (string=? (package-full-name dep1) (package-full-name sed)) (string=? (package-full-name dep2) (package-full-name findutils)) (string=? (package-name dep3) "chbouib") (eq? dep3 (rewrite dep)) (match (package-native-inputs dep3) ((("x" dep)) (string=? (package-full-name dep) (package-full-name findutils))))))) (equal? (drop (bag-direct-inputs (package->bag p1)) 3) (drop (bag-direct-inputs (package->bag p0)) 3)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec, partial match"
source-line: 1567
source-form: (test-assert "package-input-rewriting/spec, partial match" (let* ((dep (dummy-package "chbouib" (version "1") (native-inputs (quasiquote (("x" (unquote grep))))))) (p0 (dummy-package "example" (inputs (quasiquote (("foo" (unquote coreutils)) ("bar" (unquote dep))))))) (rewrite (package-input-rewriting/spec (quasiquote (("chbouib@123" unquote (const sed)) ("grep" unquote (const findutils)))) #:deep? #f)) (p1 (rewrite p0))) (and (not (eq? p1 p0)) (string=? "example" (package-name p1)) (match (package-inputs p1) ((("foo" dep1) ("bar" dep2)) (and (string=? (package-full-name dep1) (package-full-name coreutils)) (eq? dep2 (rewrite dep)) (match (package-native-inputs dep2) ((("x" dep)) (string=? (package-full-name dep) (package-full-name findutils))))))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec, deep"
source-line: 1591
source-form: (test-assert "package-input-rewriting/spec, deep" (let* ((dep (dummy-package "chbouib")) (p0 (dummy-package "example" (build-system gnu-build-system) (inputs (quasiquote (("dep" (unquote dep))))))) (rewrite (package-input-rewriting/spec (quasiquote (("tar" unquote (const sed)) ("gzip" unquote (const findutils)))))) (p1 (rewrite p0)) (p2 (rewrite p0))) (and (not (eq? p1 p0)) (eq? p1 p2) (string=? "example" (package-name p1)) (match (package-inputs p1) ((("dep" dep1)) (and (string=? (package-full-name dep1) (package-full-name dep)) (eq? dep1 (rewrite dep))))) (match (bag-direct-inputs (package->bag p1)) ((("dep" dep1) ("tar" tar) ("gzip" gzip) _ ...) (and (eq? dep1 (rewrite dep)) (string=? (package-full-name tar) (package-full-name sed)) (string=? (package-full-name gzip) (package-full-name findutils))))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec, no duplicates"
source-line: 1619
source-form: (test-assert "package-input-rewriting/spec, no duplicates" (let* ((dep0 (dummy-package "dep0" (build-system trivial-build-system) (propagated-inputs (quasiquote (("python" (unquote python))))))) (p0 (dummy-package "chbouib" (build-system python-build-system) (arguments (quasiquote (#:python (unquote python)))) (inputs (quasiquote (("dep0" (unquote dep0))))))) (rewrite (package-input-rewriting/spec (quote ()) #:deep? #t)) (p1 (rewrite p0)) (bag1 (package->bag p1)) (pythons (filter-map (match-lambda (("python" python) python) (_ #f)) (bag-transitive-inputs bag1)))) (match (delete-duplicates pythons eq?) ((p) (eq? p (rewrite python))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec, hidden package"
source-line: 1643
source-form: (test-assert "package-input-rewriting/spec, hidden package" (let* ((python (hidden-package python)) (p0 (dummy-package "chbouib" (build-system trivial-build-system) (inputs (list python)))) (rewrite (package-input-rewriting/spec (quasiquote (("python" unquote (const sed)))) #:deep? #t)) (p1 (rewrite p0)) (bag1 (package->bag p1)) (pythons (filter-map (match-lambda (("python" python) python) (_ #f)) (bag-transitive-inputs bag1)))) (match (delete-duplicates pythons eq?) ((p) (eq? p python)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec, replace hidden package"
source-line: 1661
source-form: (test-assert "package-input-rewriting/spec, replace hidden package" (let* ((python (hidden-package python)) (p0 (dummy-package "chbouib" (build-system trivial-build-system) (inputs (list python)))) (rewrite (package-input-rewriting/spec (quasiquote (("python" unquote (const sed)))) #:replace-hidden? #t)) (p1 (rewrite p0))) (match (package-inputs p1) ((("python" python)) (and (string=? (package-full-name python) (package-full-name sed)))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec, graft"
source-line: 1676
source-form: (test-equal "package-input-rewriting/spec, graft" (derivation-file-name (package-derivation %store sed)) (let* ((dep0 (dummy-package "dep" (version "1") (build-system trivial-build-system) (inputs (quasiquote (("coreutils" (unquote coreutils))))))) (dep1 (dummy-package "dep" (version "0") (build-system trivial-build-system) (replacement dep0))) (p0 (dummy-package "p" (build-system trivial-build-system) (inputs (quasiquote (("dep" (unquote dep1))))))) (rewrite (package-input-rewriting/spec (quasiquote (("coreutils" unquote (const sed)))))) (p1 (rewrite p0))) (match (package-inputs p1) ((("dep" dep)) (match (package-inputs (package-replacement dep)) ((("coreutils" coreutils)) (derivation-file-name (package-derivation %store coreutils))))))))
Test end:
result-kind: pass
actual-value: "/gnu/store/dvxkd0p86wqcyzvws7lcams6bbbq6gli-sed-4.8.drv"
expected-value: "/gnu/store/dvxkd0p86wqcyzvws7lcams6bbbq6gli-sed-4.8.drv"
Test begin:
test-name: "package-with-c-toolchain"
source-line: 1703
source-form: (test-assert "package-with-c-toolchain" (let* ((dep (dummy-package "chbouib" (build-system gnu-build-system) (native-inputs (quasiquote (("x" (unquote grep))))))) (p0 (dummy-package "thingie" (build-system gnu-build-system) (inputs (quasiquote (("foo" (unquote grep)) ("bar" (unquote dep))))))) (tc (dummy-package "my-toolchain")) (p1 (package-with-c-toolchain p0 (quasiquote (("toolchain" (unquote tc))))))) (define toolchain-packages (quote ("gcc" "binutils" "glibc" "ld-wrapper"))) (match (bag-build-inputs (package->bag p1)) ((("foo" foo) ("bar" bar) (_ (= package-name packages) . _) ...) (and (not (any (cut member <> packages) toolchain-packages)) (member "my-toolchain" packages) (eq? foo grep) (eq? bar dep))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting/spec, identity"
source-line: 1723
source-form: (test-assert "package-input-rewriting/spec, identity" (let* ((libffi (dummy-package "libffi" (build-system trivial-build-system))) (glib (dummy-package "glib" (build-system trivial-build-system) (propagated-inputs (list libffi)))) (gobject (dummy-package "gobject-introspection" (build-system trivial-build-system) (inputs (list glib)) (propagated-inputs (list libffi)))) (rewrite (package-input-rewriting/spec (quasiquote (("glib" unquote identity)))))) (and (= (length (package-transitive-inputs gobject)) (length (package-transitive-inputs (rewrite gobject)))) (string=? (derivation-file-name (package-derivation %store (rewrite gobject))) (derivation-file-name (package-derivation %store gobject))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-input-rewriting, identity"
source-line: 1746
source-form: (test-assert "package-input-rewriting, identity" (let* ((libffi (dummy-package "libffi" (build-system trivial-build-system))) (glib (dummy-package "glib" (build-system trivial-build-system) (propagated-inputs (list libffi)))) (gobject (dummy-package "gobject-introspection" (build-system trivial-build-system) (inputs (list glib)) (propagated-inputs (list libffi)))) (rewrite (package-input-rewriting (quasiquote (((unquote glib) unquote glib)))))) (and (= (length (package-transitive-inputs gobject)) (length (package-transitive-inputs (rewrite gobject)))) (string=? (derivation-file-name (package-derivation %store (rewrite gobject))) (derivation-file-name (package-derivation %store gobject))))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "package-patched-vulnerabilities"
source-line: 1766
source-form: (test-equal "package-patched-vulnerabilities" (quote (("CVE-2015-1234") ("CVE-2016-1234" "CVE-2018-4567") ())) (let ((p1 (dummy-package "pi" (source (dummy-origin (patches (list "/a/b/pi-CVE-2015-1234.patch")))))) (p2 (dummy-package "pi" (source (dummy-origin (patches (list "/a/b/pi-CVE-2016-1234-CVE-2018-4567.patch")))))) (p3 (dummy-package "pi" (source (dummy-origin))))) (map package-patched-vulnerabilities (list p1 p2 p3))))
Test end:
result-kind: pass
actual-value: (("CVE-2015-1234") ("CVE-2016-1234" "CVE-2018-4567") ())
expected-value: (("CVE-2015-1234") ("CVE-2016-1234" "CVE-2018-4567") ())
Test begin:
test-name: "fold-packages"
source-line: 1781
source-form: (test-eq "fold-packages" hello (fold-packages (lambda (p r) (if (string=? (package-name p) "hello") p r)) #f))
Test end:
result-kind: pass
actual-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
expected-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
Test begin:
test-name: "fold-packages, hidden package"
source-line: 1788
source-form: (test-assert "fold-packages, hidden package" (match (fold-packages (lambda (p r) (if (and (string=? (package-name p) "guile") (string-prefix? "2.0" (package-version p))) (cons p r) r)) (quote ())) ((one) (eq? one guile-2.0))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "fold-available-packages with/without cache"
source-line: 1802
source-form: (test-assert "fold-available-packages with/without cache" (let () (define no-cache (fold-available-packages (lambda* (name version result #:rest rest) (cons (cons* name version rest) result)) (quote ()))) (define from-cache (call-with-temporary-directory (lambda (cache) (generate-package-cache cache) (mock ((guix describe) current-profile (const cache)) (mock ((gnu packages) cache-is-authoritative? (const #t)) (fold-available-packages (lambda* (name version result #:rest rest) (cons (cons* name version rest) result)) (quote ()))))))) (define (list->set* lst) (let loop ((lst lst) (duplicates (quote ())) (seen (set))) (match lst (() (values seen duplicates)) ((head . tail) (if (set-contains? seen head) (loop tail (cons head duplicates) seen) (loop tail duplicates (set-insert head seen))))))) (let ((set1 duplicates1 (list->set* from-cache)) (set2 duplicates2 (list->set* no-cache))) (pk (quote from-cache-duplicates:) duplicates1) (pk (quote no-cache-duplicates:) duplicates2) (and (null? duplicates1) (null? duplicates2) (every (cut set-contains? set1 <>) no-cache) (every (cut set-contains? set2 <>) from-cache)))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "find-packages-by-name"
source-line: 1847
source-form: (test-assert "find-packages-by-name" (match (find-packages-by-name "hello") (((? (cut eq? hello <>))) #t) (wrong (pk (quote find-packages-by-name) wrong #f))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "find-packages-by-name with version"
source-line: 1852
source-form: (test-assert "find-packages-by-name with version" (match (find-packages-by-name "hello" (package-version hello)) (((? (cut eq? hello <>))) #t) (wrong (pk (quote find-packages-by-name) wrong #f))))
Test end:
result-kind: pass
actual-value: #t
Test begin:
test-name: "find-packages-by-name with cache"
source-line: 1857
source-form: (test-equal "find-packages-by-name with cache" (find-packages-by-name "guile") (call-with-temporary-directory (lambda (cache) (generate-package-cache cache) (mock ((guix describe) current-profile (const cache)) (mock ((gnu packages) cache-is-authoritative? (const #t)) (find-packages-by-name "guile"))))))
Test end:
result-kind: pass
actual-value: (#<package guile@3.0.9 gnu/packages/guile.scm:351 7feed5f8a840> #<package guile@2.2.7 gnu/packages/guile.scm:287 7feed5f8a9a0> #<package guile@2.2.4 gnu/packages/guile.scm:338 7feed5f8a8f0> #<package guile@2.0.14 gnu/packages/guile.scm:160 7feed5f8aa50> #<package guile@1.8.8 gnu/packages/guile.scm:77 7feed5f8ab00>)
expected-value: (#<package guile@3.0.9 gnu/packages/guile.scm:351 7feed5f8a840> #<package guile@2.2.7 gnu/packages/guile.scm:287 7feed5f8a9a0> #<package guile@2.2.4 gnu/packages/guile.scm:338 7feed5f8a8f0> #<package guile@2.0.14 gnu/packages/guile.scm:160 7feed5f8aa50> #<package guile@1.8.8 gnu/packages/guile.scm:77 7feed5f8ab00>)
Test begin:
test-name: "find-packages-by-name + version, with cache"
source-line: 1866
source-form: (test-equal "find-packages-by-name + version, with cache" (find-packages-by-name "guile" "2") (call-with-temporary-directory (lambda (cache) (generate-package-cache cache) (mock ((guix describe) current-profile (const cache)) (mock ((gnu packages) cache-is-authoritative? (const #t)) (find-packages-by-name "guile" "2"))))))
Test end:
result-kind: pass
actual-value: (#<package guile@2.2.7 gnu/packages/guile.scm:287 7feed5f8a9a0> #<package guile@2.2.4 gnu/packages/guile.scm:338 7feed5f8a8f0> #<package guile@2.0.14 gnu/packages/guile.scm:160 7feed5f8aa50>)
expected-value: (#<package guile@2.2.7 gnu/packages/guile.scm:287 7feed5f8a9a0> #<package guile@2.2.4 gnu/packages/guile.scm:338 7feed5f8a8f0> #<package guile@2.0.14 gnu/packages/guile.scm:160 7feed5f8aa50>)
Test begin:
test-name: "--search-paths with pattern"
source-line: 1875
source-form: (test-assert "--search-paths with pattern" (let* ((p1 (package (name "foo") (version "0") (source #f) (build-system trivial-build-system) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let ((out (assoc-ref %outputs "out"))) (mkdir-p (string-append out "/xml/bar/baz")) (call-with-output-file (string-append out "/xml/bar/baz/catalog.xml") (lambda (port) (display "xml? wat?!" port))) #t))))) (synopsis #f) (description #f) (home-page #f) (license #f))) (p2 (package (name "libxml2") (version "0.0.0") (source #f) (build-system trivial-build-system) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (begin (mkdir (assoc-ref %outputs "out")) #t)))) (native-search-paths (package-native-search-paths libxml2)) (synopsis #f) (description #f) (home-page #f) (license #f))) (prof (run-with-store %store (profile-derivation (manifest (map package->manifest-entry (list p1 p2))) #:hooks (quote ()) #:locales? #f) #:guile-for-build (%guile-for-build)))) (build-derivations %store (list prof)) (string-match (format #f "^export XML_CATALOG_FILES=\"~a/xml/+bar/baz/catalog\\.xml\"\n" (regexp-quote (derivation->output-path prof))) (with-output-to-string (lambda () (guix-package "-p" (derivation->output-path prof) "--search-paths"))))))
Test end:
result-kind: pass
actual-value: #("export XML_CATALOG_FILES=\"/gnu/store/0ravyqivkx4iyxl0glwa3lnfars68gg3-profile/xml/bar/baz/catalog.xml\"\n" (0 . 103))
Test begin:
test-name: "--search-paths with single-item search path"
source-line: 1926
source-form: (test-assert "--search-paths with single-item search path" (let* ((p1 (dummy-package "foo" (build-system trivial-build-system) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:modules ((guix build utils)) #:builder (begin (use-modules (guix build utils)) (let ((out (assoc-ref %outputs "out"))) (mkdir-p (string-append out "/etc/ssl/certs")) (call-with-output-file (string-append out "/etc/ssl/certs/ca-certificates.crt") (const #t))))))))) (p2 (package (inherit p1) (name "bar"))) (p3 (dummy-package "git" (build-system trivial-build-system) (arguments (quasiquote (#:guile (unquote %bootstrap-guile) #:builder (begin (mkdir (assoc-ref %outputs "out")) #t)))) (native-search-paths (package-native-search-paths git)))) (prof1 (run-with-store %store (profile-derivation (packages->manifest (list p1 p3)) #:hooks (quote ()) #:locales? #f) #:guile-for-build (%guile-for-build))) (prof2 (run-with-store %store (profile-derivation (packages->manifest (list p2 p3)) #:hooks (quote ()) #:locales? #f) #:guile-for-build (%guile-for-build)))) (build-derivations %store (list prof1 prof2)) (string-match (format #f "^export GIT_SSL_CAINFO=\"~a/etc/ssl/certs/ca-certificates.crt" (regexp-quote (derivation->output-path prof1))) (with-output-to-string (lambda () (guix-package "-p" (derivation->output-path prof1) "-p" (derivation->output-path prof2) "--search-paths"))))))
Test end:
result-kind: pass
actual-value: #("export GIT_SSL_CAINFO=\"/gnu/store/lw9p4a0vaah1q2bxwzbdw8cm1g5dx2lq-profile/etc/ssl/certs/ca-certificates.crt\"\n" (0 . 108))
Test begin:
test-name: "specification->package when not found"
source-line: 1974
source-form: (test-equal "specification->package when not found" (quote quit) (catch (quote quit) (lambda () (specification->package "this-package-does-not-exist")) (lambda (key . args) key)))
Test end:
result-kind: pass
actual-value: quit
expected-value: quit
Test begin:
test-name: "specification->package+output"
source-line: 1983
source-form: (test-equal "specification->package+output" (quasiquote (((unquote coreutils) "out") ((unquote coreutils) "debug"))) (list (call-with-values (lambda () (specification->package+output "coreutils")) list) (call-with-values (lambda () (specification->package+output "coreutils:debug")) list)))
Test end:
result-kind: pass
actual-value: ((#<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160> "out") (#<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160> "debug"))
expected-value: ((#<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160> "out") (#<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160> "debug"))
Test begin:
test-name: "specification->package+output invalid output"
source-line: 1992
source-form: (test-equal "specification->package+output invalid output" (quote error) (catch (quote quit) (lambda () (specification->package+output "coreutils:does-not-exist")) (lambda _ (quote error))))
Test end:
result-kind: pass
actual-value: error
expected-value: error
Test begin:
test-name: "specification->package+output no default output"
source-line: 2000
source-form: (test-equal "specification->package+output no default output" (quasiquote ((unquote coreutils) #f)) (call-with-values (lambda () (specification->package+output "coreutils" #f)) list))
Test end:
result-kind: pass
actual-value: (#<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160> #f)
expected-value: (#<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160> #f)
Test begin:
test-name: "specification->package+output invalid output, no default"
source-line: 2007
source-form: (test-equal "specification->package+output invalid output, no default" (quote error) (catch (quote quit) (lambda () (specification->package+output "coreutils:does-not-exist" #f)) (lambda _ (quote error))))
Test end:
result-kind: pass
actual-value: error
expected-value: error
Test begin:
test-name: "find-package-locations"
source-line: 2015
source-form: (test-equal "find-package-locations" (map (lambda (package) (cons (package-version package) (package-location package))) (find-packages-by-name "guile")) (find-package-locations "guile"))
Test end:
result-kind: pass
actual-value: (("3.0.9" . #<<location> file: "gnu/packages/guile.scm" line: 351 column: 2>) ("2.2.7" . #<<location> file: "gnu/packages/guile.scm" line: 287 column: 2>) ("2.2.4" . #<<location> file: "gnu/packages/guile.scm" line: 338 column: 2>) ("2.0.14" . #<<location> file: "gnu/packages/guile.scm" line: 160 column: 2>) ("1.8.8" . #<<location> file: "gnu/packages/guile.scm" line: 77 column: 2>))
expected-value: (("3.0.9" . #<<location> file: "gnu/packages/guile.scm" line: 351 column: 2>) ("2.2.7" . #<<location> file: "gnu/packages/guile.scm" line: 287 column: 2>) ("2.2.4" . #<<location> file: "gnu/packages/guile.scm" line: 338 column: 2>) ("2.0.14" . #<<location> file: "gnu/packages/guile.scm" line: 160 column: 2>) ("1.8.8" . #<<location> file: "gnu/packages/guile.scm" line: 77 column: 2>))
Test begin:
test-name: "find-package-locations with cache"
source-line: 2022
source-form: (test-equal "find-package-locations with cache" (map (lambda (package) (cons (package-version package) (package-location package))) (find-packages-by-name "guile")) (call-with-temporary-directory (lambda (cache) (generate-package-cache cache) (mock ((guix describe) current-profile (const cache)) (mock ((gnu packages) cache-is-authoritative? (const #t)) (find-package-locations "guile"))))))
Test end:
result-kind: pass
actual-value: (("3.0.9" . #<<location> file: "gnu/packages/guile.scm" line: 351 column: 2>) ("2.2.7" . #<<location> file: "gnu/packages/guile.scm" line: 287 column: 2>) ("2.2.4" . #<<location> file: "gnu/packages/guile.scm" line: 338 column: 2>) ("2.0.14" . #<<location> file: "gnu/packages/guile.scm" line: 160 column: 2>) ("1.8.8" . #<<location> file: "gnu/packages/guile.scm" line: 77 column: 2>))
expected-value: (("3.0.9" . #<<location> file: "gnu/packages/guile.scm" line: 351 column: 2>) ("2.2.7" . #<<location> file: "gnu/packages/guile.scm" line: 287 column: 2>) ("2.2.4" . #<<location> file: "gnu/packages/guile.scm" line: 338 column: 2>) ("2.0.14" . #<<location> file: "gnu/packages/guile.scm" line: 160 column: 2>) ("1.8.8" . #<<location> file: "gnu/packages/guile.scm" line: 77 column: 2>))
Test begin:
test-name: "specification->location"
source-line: 2034
source-form: (test-equal "specification->location" (package-location (specification->package "guile@2")) (specification->location "guile@2"))
Test end:
result-kind: pass
actual-value: #<<location> file: "gnu/packages/guile.scm" line: 287 column: 2>
expected-value: #<<location> file: "gnu/packages/guile.scm" line: 287 column: 2>
Test begin:
test-name: "package-unique-version-prefix, gcc@8"
source-line: 2038
source-form: (test-equal "package-unique-version-prefix, gcc@8" "8" (let ((gcc (specification->package "gcc-toolchain@8"))) (package-unique-version-prefix (package-name gcc) (package-version gcc))))
Test end:
result-kind: pass
actual-value: "8"
expected-value: "8"
Test begin:
test-name: "package-unique-version-prefix, grep"
source-line: 2044
source-form: (test-equal "package-unique-version-prefix, grep" "" (let ((grep (specification->package "grep"))) (package-unique-version-prefix (package-name grep) (package-version grep))))
Test end:
result-kind: pass
actual-value: ""
expected-value: ""
Test begin:
test-name: "this-package-input, exists"
source-line: 2051
source-form: (test-eq "this-package-input, exists" hello (package-arguments (dummy-package "a" (inputs (quasiquote (("hello" (unquote hello))))) (arguments (this-package-input "hello")))))
Test end:
result-kind: pass
actual-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
expected-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
Test begin:
test-name: "this-package-input, exists in propagated-inputs"
source-line: 2058
source-form: (test-eq "this-package-input, exists in propagated-inputs" hello (package-arguments (dummy-package "a" (propagated-inputs (quasiquote (("hello" (unquote hello))))) (arguments (this-package-input "hello")))))
Test end:
result-kind: pass
actual-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
expected-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
Test begin:
test-name: "this-package-input, does not exist"
source-line: 2065
source-form: (test-eq "this-package-input, does not exist" #f (package-arguments (dummy-package "a" (arguments (this-package-input "hello")))))
Test end:
result-kind: pass
actual-value: #f
expected-value: #f
Test begin:
test-name: "this-package-native-input, exists"
source-line: 2071
source-form: (test-eq "this-package-native-input, exists" hello (package-arguments (dummy-package "a" (native-inputs (quasiquote (("hello" (unquote hello))))) (arguments (this-package-native-input "hello")))))
Test end:
result-kind: pass
actual-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
expected-value: #<package hello@2.12.1 gnu/packages/base.scm:100 7feecb10e790>
Test begin:
test-name: "this-package-native-input, does not exists"
source-line: 2078
source-form: (test-eq "this-package-native-input, does not exists" #f (package-arguments (dummy-package "a" (arguments (this-package-native-input "hello")))))
Test end:
result-kind: pass
actual-value: #f
expected-value: #f
Test begin:
test-name: "this-package-input, origin"
source-line: 2084
source-form: (test-equal "this-package-input, origin" "http://example.org/foo.tar.gz" (origin-uri (package-arguments (dummy-package "a" (inputs (list (dummy-origin (uri "http://example.org/foo.tar.gz")))) (arguments (this-package-input "foo.tar.gz"))))))
Test end:
result-kind: pass
actual-value: "http://example.org/foo.tar.gz"
expected-value: "http://example.org/foo.tar.gz"
Test begin:
test-name: "modify-inputs, replace"
source-line: 2092
source-form: (test-eq "modify-inputs, replace" coreutils (let* ((p1 (dummy-package "p" (inputs (list hello)))) (p2 (package (inherit p1) (version "1") (inputs (modify-inputs (package-inputs p1) (replace "hello" coreutils)))))) (lookup-package-input p2 "hello")))
Test end:
result-kind: pass
actual-value: #<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160>
expected-value: #<package coreutils@9.1 gnu/packages/base.scm:474 7feecb10e160>
Test begin:
test-name: "modify-inputs, replace, change output"
source-line: 2104
source-form: (test-eq "modify-inputs, replace, change output" guile-3.0 (let* ((p1 (dummy-package "p" (inputs (list (quasiquote ((unquote coreutils) "debug")))))) (p2 (package (inherit p1) (version "1") (inputs (modify-inputs (package-inputs p1) (replace "coreutils" (quasiquote ((unquote guile-3.0) "out")))))))) (match (package-inputs p2) ((("coreutils" input "out")) input))))
Test end:
result-kind: pass
actual-value: #<package guile@3.0.9 gnu/packages/guile.scm:351 7feed5f8a840>
expected-value: #<package guile@3.0.9 gnu/packages/guile.scm:351 7feed5f8a840>
Test begin:
test-name: "modify-inputs, replace, extra output"
source-line: 2118
source-form: (test-eq "modify-inputs, replace, extra output" guile-3.0 (let* ((p1 (dummy-package "p" (inputs (list (quasiquote ((unquote coreutils) "debug")))))) (p2 (package (inherit p1) (version "1") (inputs (modify-inputs (package-inputs p1) (replace "coreutils" guile-3.0)))))) (match (package-inputs p2) ((("coreutils" input "debug")) input))))
Test end:
result-kind: pass
actual-value: #<package guile@3.0.9 gnu/packages/guile.scm:351 7feed5f8a840>
expected-value: #<package guile@3.0.9 gnu/packages/guile.scm:351 7feed5f8a840>
Group end: packages
# of expected passes 122
# of unexpected failures 3
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#75302] [PATCH] packages: Match renamed origin fields.
2025-01-06 18:48 ` Herman Rimm via Guix-patches via
@ 2025-01-08 10:06 ` Ludovic Courtès
0 siblings, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2025-01-08 10:06 UTC (permalink / raw)
To: Herman Rimm; +Cc: 75302
Hi,
Herman Rimm <herman@rimm.ee> skribis:
> On Sat, Jan 04, 2025 at 09:59:13PM +0100, Ludovic Courtès wrote:
>> The patch LGTM but, (1) fields haven’t been renamed recently, and…
>
> I misunderstood how (match _ (($ _) _)) works. Can you amend the commit
> to start like: 'packages: Replace match with match-record.', instead?
OK.
> In a checkout at b8858d8b1344525d0d7ac78d8fb9dc1a577b85d3 with this
> patch applied, running:
>
> guix shell -CPWN
> ./pre-inst-env guix repl < tests/packages.scm
If you really wanted to do this, try:
./pre-inst-env guile --no-auto-compile tests/packages.scm
I recommend sticking to the documented procedure though.
> I get the three errors mentioned, see attached log. I run the tests
> like this because running:
>
> guix shell -CPWN
> make check TESTS="tests/packages.scm"
>
> returns:
[...]
> [ 77%] LOAD gnu.scm
> ice-9/eval.scm:293:34: error: diff: unbound variable
> hint: Did you forget a `use-modules' form?
> make[2]: *** [Makefile:7518: make-system-go] Error 1
Well, it definitely builds here. Could it be that you have local
changes in your tree? Or perhaps you need ‘make clean-go’ first?
> source-form: (test-assert "package-source-derivation, local-file" (let* ((file (local-file "../guix/base32.scm")) (package (package (inherit (dummy-package "p")) (source file))) (source (package-source-derivation %store (package-source package)))) (and (store-path? source) (string-suffix? "base32.scm" source) (valid-path? %store source) (equal? (call-with-input-file source get-bytevector-all) (call-with-input-file (search-path %load-path "guix/base32.scm") get-bytevector-all)))))
> Test end:
> result-kind: fail
> actual-value: #f
> actual-error: (system-error "canonicalize-path" "~A: ~S" ("No such file or directory" "../guix/base32.scm") (2))
Probably has to do with running the test through standard input ‘guix
repl’: in that case it cannot correctly determine what the current file
name is, and so relative file name resolution fails.
Ludo’.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-01-08 10:07 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-02 21:03 [bug#75302] [PATCH] packages: Match renamed origin fields Herman Rimm via Guix-patches via
2025-01-04 20:59 ` Ludovic Courtès
2025-01-06 18:48 ` Herman Rimm via Guix-patches via
2025-01-08 10:06 ` Ludovic Courtès
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).