123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464 |
- ;;; GNU Guix --- Functional package management for GNU
- ;;; Copyright © 2014 David Thompson <davet@gnu.org>
- ;;; Copyright © 2016 David Craven <david@craven.ch>
- ;;; Copyright © 2019 Ludovic Courtès <ludo@gnu.org>
- ;;;
- ;;; This file is part of GNU Guix.
- ;;;
- ;;; GNU Guix is free software; you can redistribute it and/or modify it
- ;;; under the terms of the GNU General Public License as published by
- ;;; the Free Software Foundation; either version 3 of the License, or (at
- ;;; your option) any later version.
- ;;;
- ;;; GNU Guix is distributed in the hope that it will be useful, but
- ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
- ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ;;; GNU General Public License for more details.
- ;;;
- ;;; You should have received a copy of the GNU General Public License
- ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
- (define-module (test-crate)
- #:use-module (guix import crate)
- #:use-module (guix base32)
- #:use-module (guix build-system cargo)
- #:use-module (gcrypt hash)
- #:use-module (guix tests)
- #:use-module (ice-9 iconv)
- #:use-module (ice-9 match)
- #:use-module (srfi srfi-64))
- (define test-foo-crate
- "{
- \"crate\": {
- \"max_version\": \"1.0.0\",
- \"name\": \"foo\",
- \"description\": \"summary\",
- \"homepage\": \"http://example.com\",
- \"repository\": \"http://example.com\",
- \"keywords\": [\"dummy\" \"test\"],
- \"categories\": [\"test\"]
- \"actual_versions\": [
- { \"id\": \"foo\",
- \"num\": \"1.0.0\",
- \"license\": \"MIT OR Apache-2.0\",
- \"links\": {
- \"dependencies\": \"/api/v1/crates/foo/1.0.0/dependencies\"
- }
- }
- ]
- }
- }")
- (define test-foo-dependencies
- "{
- \"dependencies\": [
- {
- \"crate_id\": \"bar\",
- \"kind\": \"normal\",
- }
- ]
- }")
- (define test-root-crate
- "{
- \"crate\": {
- \"max_version\": \"1.0.0\",
- \"name\": \"root\",
- \"description\": \"summary\",
- \"homepage\": \"http://example.com\",
- \"repository\": \"http://example.com\",
- \"keywords\": [\"dummy\" \"test\"],
- \"categories\": [\"test\"]
- \"actual_versions\": [
- { \"id\": \"foo\",
- \"num\": \"1.0.0\",
- \"license\": \"MIT OR Apache-2.0\",
- \"links\": {
- \"dependencies\": \"/api/v1/crates/root/1.0.0/dependencies\"
- }
- }
- ]
- }
- }")
- (define test-root-dependencies
- "{
- \"dependencies\": [
- {
- \"crate_id\": \"intermediate-1\",
- \"kind\": \"normal\",
- },
- {
- \"crate_id\": \"intermediate-2\",
- \"kind\": \"normal\",
- }
- {
- \"crate_id\": \"leaf-alice\",
- \"kind\": \"normal\",
- },
- {
- \"crate_id\": \"leaf-bob\",
- \"kind\": \"normal\",
- },
- ]
- }")
- (define test-intermediate-1-crate
- "{
- \"crate\": {
- \"max_version\": \"1.0.0\",
- \"name\": \"intermediate-1\",
- \"description\": \"summary\",
- \"homepage\": \"http://example.com\",
- \"repository\": \"http://example.com\",
- \"keywords\": [\"dummy\" \"test\"],
- \"categories\": [\"test\"]
- \"actual_versions\": [
- { \"id\": \"intermediate-1\",
- \"num\": \"1.0.0\",
- \"license\": \"MIT OR Apache-2.0\",
- \"links\": {
- \"dependencies\": \"/api/v1/crates/intermediate-1/1.0.0/dependencies\"
- }
- }
- ]
- }
- }")
- (define test-intermediate-1-dependencies
- "{
- \"dependencies\": [
- {
- \"crate_id\": \"intermediate-2\",
- \"kind\": \"normal\",
- },
- {
- \"crate_id\": \"leaf-alice\",
- \"kind\": \"normal\",
- },
- {
- \"crate_id\": \"leaf-bob\",
- \"kind\": \"normal\",
- }
- ]
- }")
- (define test-intermediate-2-crate
- "{
- \"crate\": {
- \"max_version\": \"1.0.0\",
- \"name\": \"intermediate-2\",
- \"description\": \"summary\",
- \"homepage\": \"http://example.com\",
- \"repository\": \"http://example.com\",
- \"keywords\": [\"dummy\" \"test\"],
- \"categories\": [\"test\"]
- \"actual_versions\": [
- { \"id\": \"intermediate-2\",
- \"num\": \"1.0.0\",
- \"license\": \"MIT OR Apache-2.0\",
- \"links\": {
- \"dependencies\": \"/api/v1/crates/intermediate-2/1.0.0/dependencies\"
- }
- }
- ]
- }
- }")
- (define test-intermediate-2-dependencies
- "{
- \"dependencies\": [
- {
- \"crate_id\": \"leaf-bob\",
- \"kind\": \"normal\",
- },
- ]
- }")
- (define test-leaf-alice-crate
- "{
- \"crate\": {
- \"max_version\": \"1.0.0\",
- \"name\": \"leaf-alice\",
- \"description\": \"summary\",
- \"homepage\": \"http://example.com\",
- \"repository\": \"http://example.com\",
- \"keywords\": [\"dummy\" \"test\"],
- \"categories\": [\"test\"]
- \"actual_versions\": [
- { \"id\": \"leaf-alice\",
- \"num\": \"1.0.0\",
- \"license\": \"MIT OR Apache-2.0\",
- \"links\": {
- \"dependencies\": \"/api/v1/crates/leaf-alice/1.0.0/dependencies\"
- }
- }
- ]
- }
- }")
- (define test-leaf-alice-dependencies
- "{
- \"dependencies\": []
- }")
- (define test-leaf-bob-crate
- "{
- \"crate\": {
- \"max_version\": \"1.0.0\",
- \"name\": \"leaf-bob\",
- \"description\": \"summary\",
- \"homepage\": \"http://example.com\",
- \"repository\": \"http://example.com\",
- \"keywords\": [\"dummy\" \"test\"],
- \"categories\": [\"test\"]
- \"actual_versions\": [
- { \"id\": \"leaf-bob\",
- \"num\": \"1.0.0\",
- \"license\": \"MIT OR Apache-2.0\",
- \"links\": {
- \"dependencies\": \"/api/v1/crates/leaf-bob/1.0.0/dependencies\"
- }
- }
- ]
- }
- }")
- (define test-leaf-bob-dependencies
- "{
- \"dependencies\": []
- }")
- (define test-source-hash
- "")
- (define string->license
- (@@ (guix import crate) string->license))
- (test-begin "crate")
- (test-equal "guix-package->crate-name"
- "rustc-serialize"
- (guix-package->crate-name
- (dummy-package
- "rust-rustc-serialize"
- (source (dummy-origin
- (uri (crate-uri "rustc-serialize" "1.0")))))))
- (test-assert "crate->guix-package"
- ;; Replace network resources with sample data.
- (mock ((guix http-client) http-fetch
- (lambda (url . rest)
- (match url
- ("https://crates.io/api/v1/crates/foo"
- (open-input-string test-foo-crate))
- ("https://crates.io/api/v1/crates/foo/1.0.0/download"
- (set! test-source-hash
- (bytevector->nix-base32-string
- (sha256 (string->bytevector "empty file\n" "utf-8"))))
- (open-input-string "empty file\n"))
- ("https://crates.io/api/v1/crates/foo/1.0.0/dependencies"
- (open-input-string test-foo-dependencies))
- (_ (error "Unexpected URL: " url)))))
- (match (crate->guix-package "foo")
- (('package
- ('name "rust-foo")
- ('version "1.0.0")
- ('source ('origin
- ('method 'url-fetch)
- ('uri ('crate-uri "foo" 'version))
- ('file-name ('string-append 'name "-" 'version ".tar.gz"))
- ('sha256
- ('base32
- (? string? hash)))))
- ('build-system 'cargo-build-system)
- ('arguments
- ('quasiquote
- ('#:cargo-inputs (("rust-bar" ('unquote rust-bar))))))
- ('home-page "http://example.com")
- ('synopsis "summary")
- ('description "summary")
- ('license ('list 'license:expat 'license:asl2.0)))
- (string=? test-source-hash hash))
- (x
- (pk 'fail x #f)))))
- (test-assert "cargo-recursive-import"
- ;; Replace network resources with sample data.
- (mock ((guix http-client) http-fetch
- (lambda (url . rest)
- (match url
- ("https://crates.io/api/v1/crates/root"
- (open-input-string test-root-crate))
- ("https://crates.io/api/v1/crates/root/1.0.0/download"
- (set! test-source-hash
- (bytevector->nix-base32-string
- (sha256 (string->bytevector "empty file\n" "utf-8"))))
- (open-input-string "empty file\n"))
- ("https://crates.io/api/v1/crates/root/1.0.0/dependencies"
- (open-input-string test-root-dependencies))
- ("https://crates.io/api/v1/crates/intermediate-1"
- (open-input-string test-intermediate-1-crate))
- ("https://crates.io/api/v1/crates/intermediate-1/1.0.0/download"
- (set! test-source-hash
- (bytevector->nix-base32-string
- (sha256 (string->bytevector "empty file\n" "utf-8"))))
- (open-input-string "empty file\n"))
- ("https://crates.io/api/v1/crates/intermediate-1/1.0.0/dependencies"
- (open-input-string test-intermediate-1-dependencies))
- ("https://crates.io/api/v1/crates/intermediate-2"
- (open-input-string test-intermediate-2-crate))
- ("https://crates.io/api/v1/crates/intermediate-2/1.0.0/download"
- (set! test-source-hash
- (bytevector->nix-base32-string
- (sha256 (string->bytevector "empty file\n" "utf-8"))))
- (open-input-string "empty file\n"))
- ("https://crates.io/api/v1/crates/intermediate-2/1.0.0/dependencies"
- (open-input-string test-intermediate-2-dependencies))
- ("https://crates.io/api/v1/crates/leaf-alice"
- (open-input-string test-leaf-alice-crate))
- ("https://crates.io/api/v1/crates/leaf-alice/1.0.0/download"
- (set! test-source-hash
- (bytevector->nix-base32-string
- (sha256 (string->bytevector "empty file\n" "utf-8"))))
- (open-input-string "empty file\n"))
- ("https://crates.io/api/v1/crates/leaf-alice/1.0.0/dependencies"
- (open-input-string test-leaf-alice-dependencies))
- ("https://crates.io/api/v1/crates/leaf-bob"
- (open-input-string test-leaf-bob-crate))
- ("https://crates.io/api/v1/crates/leaf-bob/1.0.0/download"
- (set! test-source-hash
- (bytevector->nix-base32-string
- (sha256 (string->bytevector "empty file\n" "utf-8"))))
- (open-input-string "empty file\n"))
- ("https://crates.io/api/v1/crates/leaf-bob/1.0.0/dependencies"
- (open-input-string test-leaf-bob-dependencies))
- (_ (error "Unexpected URL: " url)))))
- (match (crate-recursive-import "root")
- ;; rust-intermediate-2 has no dependency on the rust-leaf-alice package, so this is a valid ordering
- ((('package
- ('name "rust-leaf-alice")
- ('version (? string? ver))
- ('source
- ('origin
- ('method 'url-fetch)
- ('uri ('crate-uri "leaf-alice" 'version))
- ('file-name
- ('string-append 'name "-" 'version ".tar.gz"))
- ('sha256
- ('base32
- (? string? hash)))))
- ('build-system 'cargo-build-system)
- ('home-page "http://example.com")
- ('synopsis "summary")
- ('description "summary")
- ('license ('list 'license:expat 'license:asl2.0)))
- ('package
- ('name "rust-leaf-bob")
- ('version (? string? ver))
- ('source
- ('origin
- ('method 'url-fetch)
- ('uri ('crate-uri "leaf-bob" 'version))
- ('file-name
- ('string-append 'name "-" 'version ".tar.gz"))
- ('sha256
- ('base32
- (? string? hash)))))
- ('build-system 'cargo-build-system)
- ('home-page "http://example.com")
- ('synopsis "summary")
- ('description "summary")
- ('license ('list 'license:expat 'license:asl2.0)))
- ('package
- ('name "rust-intermediate-2")
- ('version (? string? ver))
- ('source
- ('origin
- ('method 'url-fetch)
- ('uri ('crate-uri "intermediate-2" 'version))
- ('file-name
- ('string-append 'name "-" 'version ".tar.gz"))
- ('sha256
- ('base32
- (? string? hash)))))
- ('build-system 'cargo-build-system)
- ('arguments
- ('quasiquote
- ('#:cargo-inputs (("rust-leaf-bob" ('unquote rust-leaf-bob))))))
- ('home-page "http://example.com")
- ('synopsis "summary")
- ('description "summary")
- ('license ('list 'license:expat 'license:asl2.0)))
- ('package
- ('name "rust-intermediate-1")
- ('version (? string? ver))
- ('source
- ('origin
- ('method 'url-fetch)
- ('uri ('crate-uri "intermediate-1" 'version))
- ('file-name
- ('string-append 'name "-" 'version ".tar.gz"))
- ('sha256
- ('base32
- (? string? hash)))))
- ('build-system 'cargo-build-system)
- ('arguments
- ('quasiquote
- ('#:cargo-inputs (("rust-intermediate-2" ('unquote rust-intermediate-2))
- ("rust-leaf-alice" ('unquote rust-leaf-alice))
- ("rust-leaf-bob" ('unquote rust-leaf-bob))))))
- ('home-page "http://example.com")
- ('synopsis "summary")
- ('description "summary")
- ('license ('list 'license:expat 'license:asl2.0)))
- ('package
- ('name "rust-root")
- ('version (? string? ver))
- ('source
- ('origin
- ('method 'url-fetch)
- ('uri ('crate-uri "root" 'version))
- ('file-name
- ('string-append 'name "-" 'version ".tar.gz"))
- ('sha256
- ('base32
- (? string? hash)))))
- ('build-system 'cargo-build-system)
- ('arguments
- ('quasiquote
- ('#:cargo-inputs (("rust-intermediate-1" ('unquote rust-intermediate-1))
- ("rust-intermediate-2" ('unquote rust-intermediate-2))
- ("rust-leaf-alice" ('unquote rust-leaf-alice))
- ("rust-leaf-bob" ('unquote rust-leaf-bob))))))
- ('home-page "http://example.com")
- ('synopsis "summary")
- ('description "summary")
- ('license ('list 'license:expat 'license:asl2.0))))
- #t)
- (x
- (pk 'fail x #f)))))
- (test-equal "licenses: MIT OR Apache-2.0"
- '(license:expat license:asl2.0)
- (string->license "MIT OR Apache-2.0"))
- (test-equal "licenses: Apache-2.0 / MIT"
- '(license:asl2.0 license:expat)
- (string->license "Apache-2.0 / MIT"))
- (test-equal "licenses: Apache-2.0 WITH LLVM-exception"
- '(license:asl2.0 unknown-license!)
- (string->license "Apache-2.0 WITH LLVM-exception"))
- (test-equal "licenses: MIT/Apache-2.0 AND BSD-2-Clause"
- '(license:expat license:asl2.0 unknown-license!)
- (string->license "MIT/Apache-2.0 AND BSD-2-Clause"))
- (test-equal "licenses: MIT/Apache-2.0"
- '(license:expat license:asl2.0)
- (string->license "MIT/Apache-2.0"))
- (test-end "crate")
|