2015-01-08 21:51:13 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
2016-07-02 20:06:02 +02:00
|
|
|
;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
|
2015-01-08 21:51:13 +01:00
|
|
|
;;;
|
|
|
|
;;; 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-cpan)
|
|
|
|
#:use-module (guix import cpan)
|
|
|
|
#:use-module (guix base32)
|
|
|
|
#:use-module (guix hash)
|
|
|
|
#:use-module (guix tests)
|
2016-03-06 21:53:28 +01:00
|
|
|
#:use-module (guix grafts)
|
2015-01-08 21:51:13 +01:00
|
|
|
#:use-module (srfi srfi-64)
|
|
|
|
#:use-module (ice-9 match))
|
|
|
|
|
2016-03-06 21:53:28 +01:00
|
|
|
;; Globally disable grafts because they can trigger early builds.
|
|
|
|
(%graft? #f)
|
|
|
|
|
2015-01-08 21:51:13 +01:00
|
|
|
(define test-json
|
|
|
|
"{
|
|
|
|
\"metadata\" : {
|
|
|
|
\"prereqs\" : {
|
|
|
|
\"runtime\" : {
|
|
|
|
\"requires\" : {
|
|
|
|
\"Test::Script\" : \"1.05\",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
\"name\" : \"Foo-Bar\",
|
|
|
|
\"version\" : \"0.1\"
|
|
|
|
}
|
|
|
|
\"name\" : \"Foo-Bar-0.1\",
|
|
|
|
\"distribution\" : \"Foo-Bar\",
|
|
|
|
\"license\" : [
|
|
|
|
\"perl_5\"
|
|
|
|
],
|
|
|
|
\"abstract\" : \"Fizzle Fuzz\",
|
|
|
|
\"download_url\" : \"http://example.com/Foo-Bar-0.1.tar.gz\",
|
2016-03-06 21:53:28 +01:00
|
|
|
\"author\" : \"Guix\",
|
2015-01-08 21:51:13 +01:00
|
|
|
\"version\" : \"0.1\"
|
|
|
|
}")
|
|
|
|
|
|
|
|
(define test-source
|
|
|
|
"foobar")
|
|
|
|
|
|
|
|
(test-begin "cpan")
|
|
|
|
|
|
|
|
(test-assert "cpan->guix-package"
|
|
|
|
;; Replace network resources with sample data.
|
|
|
|
(mock ((guix build download) url-fetch
|
2016-11-10 11:58:43 +01:00
|
|
|
(lambda* (url file-name
|
|
|
|
#:key
|
|
|
|
(mirrors '()) verify-certificate?)
|
2015-01-08 21:51:13 +01:00
|
|
|
(with-output-to-file file-name
|
|
|
|
(lambda ()
|
|
|
|
(display
|
|
|
|
(match url
|
|
|
|
("http://example.com/Foo-Bar-0.1.tar.gz"
|
|
|
|
test-source)
|
|
|
|
(_ (error "Unexpected URL: " url))))))))
|
2016-12-18 13:38:01 +01:00
|
|
|
(mock ((guix http-client) http-fetch
|
2017-02-13 16:04:09 +01:00
|
|
|
(lambda (url . rest)
|
2016-12-18 13:38:01 +01:00
|
|
|
(match url
|
2017-06-03 20:37:54 +02:00
|
|
|
("https://fastapi.metacpan.org/v1/release/Foo-Bar"
|
2016-12-18 13:38:01 +01:00
|
|
|
(values (open-input-string test-json)
|
|
|
|
(string-length test-json)))
|
2017-06-03 20:37:54 +02:00
|
|
|
("https://fastapi.metacpan.org/v1/module/Test::Script?fields=distribution"
|
2016-12-18 13:38:01 +01:00
|
|
|
(let ((result "{ \"distribution\" : \"Test-Script\" }"))
|
|
|
|
(values (open-input-string result)
|
|
|
|
(string-length result))))
|
|
|
|
(_ (error "Unexpected URL: " url)))))
|
|
|
|
(match (cpan->guix-package "Foo::Bar")
|
|
|
|
(('package
|
|
|
|
('name "perl-foo-bar")
|
|
|
|
('version "0.1")
|
|
|
|
('source ('origin
|
|
|
|
('method 'url-fetch)
|
|
|
|
('uri ('string-append "http://example.com/Foo-Bar-"
|
|
|
|
'version ".tar.gz"))
|
|
|
|
('sha256
|
|
|
|
('base32
|
|
|
|
(? string? hash)))))
|
|
|
|
('build-system 'perl-build-system)
|
2017-10-29 01:13:08 +02:00
|
|
|
('propagated-inputs
|
2016-12-18 13:38:01 +01:00
|
|
|
('quasiquote
|
|
|
|
(("perl-test-script" ('unquote 'perl-test-script)))))
|
2017-10-30 13:28:10 +01:00
|
|
|
('home-page "http://search.cpan.org/dist/Foo-Bar/")
|
2016-12-18 13:38:01 +01:00
|
|
|
('synopsis "Fizzle Fuzz")
|
|
|
|
('description 'fill-in-yourself!)
|
2017-09-13 23:33:07 +02:00
|
|
|
('license 'perl-license))
|
2016-12-18 13:38:01 +01:00
|
|
|
(string=? (bytevector->nix-base32-string
|
|
|
|
(call-with-input-string test-source port-sha256))
|
|
|
|
hash))
|
|
|
|
(x
|
|
|
|
(pk 'fail x #f))))))
|
2015-01-08 21:51:13 +01:00
|
|
|
|
2016-07-02 20:06:02 +02:00
|
|
|
(test-equal "source-url-http"
|
2016-12-18 13:35:21 +01:00
|
|
|
((@@ (guix import cpan) cpan-source-url)
|
|
|
|
`(("download_url" .
|
|
|
|
"http://cpan.metacpan.org/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz")))
|
2016-07-02 20:06:02 +02:00
|
|
|
"mirror://cpan/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz")
|
|
|
|
|
|
|
|
(test-equal "source-url-https"
|
2016-12-18 13:35:21 +01:00
|
|
|
((@@ (guix import cpan) cpan-source-url)
|
|
|
|
`(("download_url" .
|
|
|
|
"https://cpan.metacpan.org/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz")))
|
2016-07-02 20:06:02 +02:00
|
|
|
"mirror://cpan/authors/id/T/TE/TEST/Foo-Bar-0.1.tar.gz")
|
|
|
|
|
2015-01-08 21:51:13 +01:00
|
|
|
(test-end "cpan")
|