gnu: komikku: Update to 0.20.0.
[jackhill/guix/guix.git] / tests / cpan.scm
CommitLineData
d45dc6da
EB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
5b8e564c 3;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
69f13255 4;;; Copyright © 2020 Ludovic Courtès <ludo@gnu.org>
d45dc6da
EB
5;;;
6;;; This file is part of GNU Guix.
7;;;
8;;; GNU Guix is free software; you can redistribute it and/or modify it
9;;; under the terms of the GNU General Public License as published by
10;;; the Free Software Foundation; either version 3 of the License, or (at
11;;; your option) any later version.
12;;;
13;;; GNU Guix is distributed in the hope that it will be useful, but
14;;; WITHOUT ANY WARRANTY; without even the implied warranty of
15;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16;;; GNU General Public License for more details.
17;;;
18;;; You should have received a copy of the GNU General Public License
19;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
20
21(define-module (test-cpan)
22 #:use-module (guix import cpan)
23 #:use-module (guix base32)
ca719424 24 #:use-module (gcrypt hash)
4aea90b1 25 #:use-module (guix tests http)
ef8de985 26 #:use-module (guix grafts)
d45dc6da 27 #:use-module (srfi srfi-64)
4aea90b1 28 #:use-module (web client)
d020821c 29 #:use-module (ice-9 match))
d45dc6da 30
ef8de985
LC
31;; Globally disable grafts because they can trigger early builds.
32(%graft? #f)
33
d45dc6da
EB
34(define test-json
35 "{
36 \"metadata\" : {
d45dc6da
EB
37 \"name\" : \"Foo-Bar\",
38 \"version\" : \"0.1\"
39 }
40 \"name\" : \"Foo-Bar-0.1\",
41 \"distribution\" : \"Foo-Bar\",
42 \"license\" : [
43 \"perl_5\"
44 ],
69f13255
LC
45 \"dependency\": [
46 { \"relationship\": \"requires\",
47 \"phase\": \"runtime\",
48 \"version\": \"1.05\",
49 \"module\": \"Test::Script\"
50 }
51 ],
d45dc6da
EB
52 \"abstract\" : \"Fizzle Fuzz\",
53 \"download_url\" : \"http://example.com/Foo-Bar-0.1.tar.gz\",
ef8de985 54 \"author\" : \"Guix\",
d45dc6da
EB
55 \"version\" : \"0.1\"
56}")
57
58(define test-source
59 "foobar")
60
4aea90b1
LC
61;; Avoid collisions with other tests.
62(%http-server-port 10400)
63
d45dc6da
EB
64(test-begin "cpan")
65
66(test-assert "cpan->guix-package"
67 ;; Replace network resources with sample data.
4aea90b1
LC
68 (with-http-server `((200 ,test-json)
69 (200 ,test-source)
70 (200 "{ \"distribution\" : \"Test-Script\" }"))
71 (parameterize ((%metacpan-base-url (%local-url))
72 (current-http-proxy (%local-url)))
73 (match (cpan->guix-package "Foo::Bar")
74 (('package
75 ('name "perl-foo-bar")
76 ('version "0.1")
77 ('source ('origin
78 ('method 'url-fetch)
79 ('uri ('string-append "http://example.com/Foo-Bar-"
80 'version ".tar.gz"))
81 ('sha256
82 ('base32
83 (? string? hash)))))
84 ('build-system 'perl-build-system)
85 ('propagated-inputs
86 ('quasiquote
87 (("perl-test-script" ('unquote 'perl-test-script)))))
88 ('home-page "https://metacpan.org/release/Foo-Bar")
89 ('synopsis "Fizzle Fuzz")
90 ('description 'fill-in-yourself!)
91 ('license 'perl-license))
92 (string=? (bytevector->nix-base32-string
93 (call-with-input-string test-source port-sha256))
94 hash))
95 (x
96 (pk 'fail x #f))))))
d45dc6da 97
69f13255
LC
98(test-equal "metacpan-url->mirror-url, http"
99 "mirror://cpan/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz"
100 (metacpan-url->mirror-url
101 "http://cpan.metacpan.org/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz"))
5b8e564c 102
69f13255
LC
103(test-equal "metacpan-url->mirror-url, https"
104 "mirror://cpan/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz"
105 (metacpan-url->mirror-url
106 "https://cpan.metacpan.org/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz"))
5b8e564c 107
d45dc6da 108(test-end "cpan")