2014-08-31 20:13:21 -04:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
|
;;; Copyright © 2012, 2013 Cyril Roelandt <tipecaml@gmail.com>
|
2016-08-23 03:08:02 -04:00
|
|
|
|
;;; Copyright © 2014, 2015, 2016 Eric Bavier <bavier@member.fsf.org>
|
2016-01-21 17:45:52 -05:00
|
|
|
|
;;; Copyright © 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
|
2016-01-24 10:28:51 -05:00
|
|
|
|
;;; Copyright © 2015, 2016 Mathieu Lirzin <mthl@gnu.org>
|
2016-09-28 05:36:35 -04:00
|
|
|
|
;;; Copyright © 2016 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
2017-03-20 06:41:41 -04:00
|
|
|
|
;;; Copyright © 2017 Alex Kost <alezost@gmail.com>
|
2014-08-31 20:13:21 -04: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/>.
|
|
|
|
|
|
2016-01-21 17:45:52 -05:00
|
|
|
|
;; Avoid interference.
|
|
|
|
|
(unsetenv "http_proxy")
|
|
|
|
|
|
2015-03-31 15:59:05 -04:00
|
|
|
|
(define-module (test-lint)
|
2014-12-29 13:11:09 -05:00
|
|
|
|
#:use-module (guix tests)
|
2016-11-16 10:34:17 -05:00
|
|
|
|
#:use-module (guix tests http)
|
2015-03-05 16:15:11 -05:00
|
|
|
|
#:use-module (guix download)
|
2015-09-10 16:34:58 -04:00
|
|
|
|
#:use-module (guix git-download)
|
2014-08-31 20:13:21 -04:00
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
|
#:use-module (guix packages)
|
|
|
|
|
#:use-module (guix scripts lint)
|
|
|
|
|
#:use-module (guix ui)
|
|
|
|
|
#:use-module (gnu packages)
|
2016-07-22 13:50:54 -04:00
|
|
|
|
#:use-module (gnu packages glib)
|
2014-08-31 20:13:21 -04:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2016-09-28 05:36:35 -04:00
|
|
|
|
#:use-module (gnu packages python)
|
2014-12-29 14:39:58 -05:00
|
|
|
|
#:use-module (web server)
|
|
|
|
|
#:use-module (web server http)
|
|
|
|
|
#:use-module (web response)
|
2016-10-03 17:30:49 -04:00
|
|
|
|
#:use-module (ice-9 match)
|
2014-12-29 14:39:58 -05:00
|
|
|
|
#:use-module (srfi srfi-9 gnu)
|
2014-08-31 20:13:21 -04:00
|
|
|
|
#:use-module (srfi srfi-64))
|
|
|
|
|
|
|
|
|
|
;; Test the linter.
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
;; Avoid collisions with other tests.
|
|
|
|
|
(%http-server-port 9999)
|
2014-12-29 14:39:58 -05:00
|
|
|
|
|
2015-03-05 16:16:01 -05:00
|
|
|
|
(define %null-sha256
|
|
|
|
|
;; SHA256 of the empty string.
|
|
|
|
|
(base32
|
|
|
|
|
"0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73"))
|
|
|
|
|
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(define %long-string
|
|
|
|
|
(make-string 2000 #\a))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
|
2014-08-31 20:13:21 -04:00
|
|
|
|
|
|
|
|
|
(test-begin "lint")
|
|
|
|
|
|
|
|
|
|
(define (call-with-warnings thunk)
|
2014-09-03 03:01:28 -04:00
|
|
|
|
(let ((port (open-output-string)))
|
|
|
|
|
(parameterize ((guix-warning-port port))
|
|
|
|
|
(thunk))
|
|
|
|
|
(get-output-string port)))
|
2014-08-31 20:13:21 -04:00
|
|
|
|
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(define-syntax-rule (with-warnings body ...)
|
|
|
|
|
(call-with-warnings (lambda () body ...)))
|
|
|
|
|
|
2016-04-27 04:05:45 -04:00
|
|
|
|
(test-assert "description: not a string"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description 'foobar))))
|
|
|
|
|
(check-description-style pkg)))
|
|
|
|
|
"invalid description")))
|
|
|
|
|
|
2014-10-22 14:48:55 -04:00
|
|
|
|
(test-assert "description: not empty"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description ""))))
|
|
|
|
|
(check-description-style pkg)))
|
2014-10-22 14:48:55 -04:00
|
|
|
|
"description should not be empty")))
|
|
|
|
|
|
2015-09-15 11:38:56 -04:00
|
|
|
|
(test-assert "description: valid Texinfo markup"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-description-style (dummy-package "x" (description "f{oo}b@r"))))
|
|
|
|
|
"Texinfo markup in description is invalid")))
|
|
|
|
|
|
2014-09-27 17:00:44 -04:00
|
|
|
|
(test-assert "description: does not start with an upper-case letter"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description "bad description."))))
|
|
|
|
|
(check-description-style pkg)))
|
2014-09-27 17:00:44 -04:00
|
|
|
|
"description should start with an upper-case letter")))
|
|
|
|
|
|
2014-10-25 12:29:34 -04:00
|
|
|
|
(test-assert "description: may start with a digit"
|
2014-11-07 08:04:02 -05:00
|
|
|
|
(string-null?
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description "2-component library."))))
|
|
|
|
|
(check-description-style pkg)))))
|
2014-10-25 12:29:34 -04:00
|
|
|
|
|
2014-10-26 13:36:42 -04:00
|
|
|
|
(test-assert "description: may start with lower-case package name"
|
2014-11-07 08:04:02 -05:00
|
|
|
|
(string-null?
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description "x is a dummy package."))))
|
|
|
|
|
(check-description-style pkg)))))
|
2014-10-26 13:36:42 -04:00
|
|
|
|
|
2014-10-22 14:47:01 -04:00
|
|
|
|
(test-assert "description: two spaces after end of sentence"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description "Bad. Quite bad."))))
|
|
|
|
|
(check-description-style pkg)))
|
2014-10-22 14:47:01 -04:00
|
|
|
|
"sentences in description should be followed by two spaces")))
|
|
|
|
|
|
|
|
|
|
(test-assert "description: end-of-sentence detection with abbreviations"
|
2014-11-07 08:04:02 -05:00
|
|
|
|
(string-null?
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description
|
|
|
|
|
"E.g. Foo, i.e. Bar resp. Baz (a.k.a. DVD)."))))
|
|
|
|
|
(check-description-style pkg)))))
|
2014-10-22 14:47:01 -04:00
|
|
|
|
|
2016-08-23 03:08:02 -04:00
|
|
|
|
(test-assert "description: may not contain trademark signs"
|
|
|
|
|
(and (->bool
|
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description "Does The Right Thing™"))))
|
|
|
|
|
(check-description-style pkg)))
|
|
|
|
|
"should not contain trademark sign"))
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description "Works with Format®"))))
|
|
|
|
|
(check-description-style pkg)))
|
|
|
|
|
"should not contain trademark sign"))))
|
|
|
|
|
|
2016-10-19 07:55:25 -04:00
|
|
|
|
(test-assert "description: suggest ornament instead of quotes"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(description "This is a 'quoted' thing."))))
|
|
|
|
|
(check-description-style pkg)))
|
|
|
|
|
"use @code")))
|
|
|
|
|
|
2016-04-27 04:05:45 -04:00
|
|
|
|
(test-assert "synopsis: not a string"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis #f))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
|
|
|
|
"invalid synopsis")))
|
|
|
|
|
|
2014-10-22 14:47:01 -04:00
|
|
|
|
(test-assert "synopsis: not empty"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis ""))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-10-22 14:47:01 -04:00
|
|
|
|
"synopsis should not be empty")))
|
|
|
|
|
|
2017-03-20 06:41:41 -04:00
|
|
|
|
(test-assert "synopsis: valid Texinfo markup"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-synopsis-style (dummy-package "x" (synopsis "Bad $@ texinfo"))))
|
|
|
|
|
"Texinfo markup in synopsis is invalid")))
|
|
|
|
|
|
2014-09-27 17:00:44 -04:00
|
|
|
|
(test-assert "synopsis: does not start with an upper-case letter"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "bad synopsis."))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-09-27 17:00:44 -04:00
|
|
|
|
"synopsis should start with an upper-case letter")))
|
|
|
|
|
|
2014-10-25 12:29:34 -04:00
|
|
|
|
(test-assert "synopsis: may start with a digit"
|
2014-11-07 08:04:02 -05:00
|
|
|
|
(string-null?
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "5-dimensional frobnicator"))))
|
|
|
|
|
(check-synopsis-style pkg)))))
|
2014-10-25 12:29:34 -04:00
|
|
|
|
|
2014-08-31 20:13:21 -04:00
|
|
|
|
(test-assert "synopsis: ends with a period"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "Bad synopsis."))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-08-31 20:13:21 -04:00
|
|
|
|
"no period allowed at the end of the synopsis")))
|
|
|
|
|
|
|
|
|
|
(test-assert "synopsis: ends with 'etc.'"
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-null? (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "Foo, bar, etc."))))
|
|
|
|
|
(check-synopsis-style pkg)))))
|
2014-08-31 20:13:21 -04:00
|
|
|
|
|
|
|
|
|
(test-assert "synopsis: starts with 'A'"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "A bad synopŝis"))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-08-31 20:13:21 -04:00
|
|
|
|
"no article allowed at the beginning of the synopsis")))
|
|
|
|
|
|
|
|
|
|
(test-assert "synopsis: starts with 'An'"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "An awful synopsis"))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-08-31 20:13:21 -04:00
|
|
|
|
"no article allowed at the beginning of the synopsis")))
|
|
|
|
|
|
2014-09-27 17:04:46 -04:00
|
|
|
|
(test-assert "synopsis: starts with 'a'"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "a bad synopsis"))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-09-27 17:04:46 -04:00
|
|
|
|
"no article allowed at the beginning of the synopsis")))
|
|
|
|
|
|
|
|
|
|
(test-assert "synopsis: starts with 'an'"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis "an awful synopsis"))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-09-27 17:04:46 -04:00
|
|
|
|
"no article allowed at the beginning of the synopsis")))
|
|
|
|
|
|
2014-09-27 15:39:19 -04:00
|
|
|
|
(test-assert "synopsis: too long"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(synopsis (make-string 80 #\x)))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-09-27 15:39:19 -04:00
|
|
|
|
"synopsis should be less than 80 characters long")))
|
|
|
|
|
|
2014-09-27 17:24:12 -04:00
|
|
|
|
(test-assert "synopsis: start with package name"
|
|
|
|
|
(->bool
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(string-contains (with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(name "foo")
|
|
|
|
|
(synopsis "foo, a nice package"))))
|
|
|
|
|
(check-synopsis-style pkg)))
|
2014-09-27 17:24:12 -04:00
|
|
|
|
"synopsis should not start with the package name")))
|
|
|
|
|
|
2014-11-07 08:09:19 -05:00
|
|
|
|
(test-assert "synopsis: start with package name prefix"
|
|
|
|
|
(string-null?
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "arb"
|
|
|
|
|
(synopsis "Arbitrary precision"))))
|
|
|
|
|
(check-synopsis-style pkg)))))
|
2014-11-07 08:09:19 -05:00
|
|
|
|
|
2014-11-07 11:44:30 -05:00
|
|
|
|
(test-assert "synopsis: start with abbreviation"
|
|
|
|
|
(string-null?
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "uucp"
|
|
|
|
|
;; Same problem with "APL interpreter", etc.
|
|
|
|
|
(synopsis "UUCP implementation")
|
|
|
|
|
(description "Imagine this is Taylor UUCP."))))
|
|
|
|
|
(check-synopsis-style pkg)))))
|
2014-11-07 11:44:30 -05:00
|
|
|
|
|
2014-08-31 20:13:21 -04:00
|
|
|
|
(test-assert "inputs: pkg-config is probably a native input"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(inputs `(("pkg-config" ,pkg-config))))))
|
|
|
|
|
(check-inputs-should-be-native pkg)))
|
2016-07-22 13:50:54 -04:00
|
|
|
|
"'pkg-config' should probably be a native input")))
|
|
|
|
|
|
|
|
|
|
(test-assert "inputs: glib:bin is probably a native input"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(inputs `(("glib" ,glib "bin"))))))
|
|
|
|
|
(check-inputs-should-be-native pkg)))
|
|
|
|
|
"'glib:bin' should probably be a native input")))
|
2014-08-31 20:13:21 -04:00
|
|
|
|
|
2016-09-28 05:36:35 -04:00
|
|
|
|
(test-assert
|
|
|
|
|
"inputs: python-setuptools should not be an input at all (input)"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(inputs `(("python-setuptools" ,python-setuptools))))))
|
|
|
|
|
(check-inputs-should-not-be-an-input-at-all pkg)))
|
|
|
|
|
"'python-setuptools' should probably not be an input at all")))
|
|
|
|
|
|
|
|
|
|
(test-assert
|
|
|
|
|
"inputs: python-setuptools should not be an input at all (native-input)"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-setuptools" ,python-setuptools))))))
|
|
|
|
|
(check-inputs-should-not-be-an-input-at-all pkg)))
|
|
|
|
|
"'python-setuptools' should probably not be an input at all")))
|
|
|
|
|
|
|
|
|
|
(test-assert
|
|
|
|
|
"inputs: python-setuptools should not be an input at all (propagated-input)"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("python-setuptools" ,python-setuptools))))))
|
|
|
|
|
(check-inputs-should-not-be-an-input-at-all pkg)))
|
|
|
|
|
"'python-setuptools' should probably not be an input at all")))
|
|
|
|
|
|
2014-08-31 20:13:21 -04:00
|
|
|
|
(test-assert "patches: file names"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(source
|
2016-01-24 10:28:51 -05:00
|
|
|
|
(dummy-origin
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(patches (list "/path/to/y.patch")))))))
|
2015-04-10 04:08:49 -04:00
|
|
|
|
(check-patch-file-names pkg)))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
"file names of patches should start with the package name")))
|
|
|
|
|
|
2015-04-10 04:27:26 -04:00
|
|
|
|
(test-assert "patches: not found"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(source
|
2016-01-24 10:28:51 -05:00
|
|
|
|
(dummy-origin
|
2015-04-10 04:27:26 -04:00
|
|
|
|
(patches
|
|
|
|
|
(list (search-patch "this-patch-does-not-exist!"))))))))
|
|
|
|
|
(check-patch-file-names pkg)))
|
|
|
|
|
"patch not found")))
|
|
|
|
|
|
2015-04-12 17:14:19 -04:00
|
|
|
|
(test-assert "derivation: invalid arguments"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:imported-modules (invalid-module))))))
|
|
|
|
|
(check-derivation pkg)))
|
|
|
|
|
"failed to create derivation")))
|
|
|
|
|
|
2015-09-06 04:54:51 -04:00
|
|
|
|
(test-assert "license: invalid license"
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-license (dummy-package "x" (license #f))))
|
|
|
|
|
"invalid license"))
|
|
|
|
|
|
2014-12-29 14:39:58 -05:00
|
|
|
|
(test-assert "home-page: wrong home-page"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
|
|
|
|
(home-page #f))))
|
|
|
|
|
(check-home-page pkg)))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
"invalid")))
|
|
|
|
|
|
|
|
|
|
(test-assert "home-page: invalid URI"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
|
|
|
|
(home-page "foobar"))))
|
|
|
|
|
(check-home-page pkg)))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
"invalid home page URL")))
|
|
|
|
|
|
|
|
|
|
(test-assert "home-page: host not found"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
|
|
|
|
(home-page "http://does-not-exist"))))
|
|
|
|
|
(check-home-page pkg)))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
"domain not found")))
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(test-skip (if (force %http-server-socket) 0 1))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
(test-assert "home-page: Connection refused"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(home-page (%local-url)))))
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(check-home-page pkg)))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
"Connection refused")))
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(test-skip (if (force %http-server-socket) 0 1))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
(test-equal "home-page: 200"
|
|
|
|
|
""
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(with-http-server 200 %long-string
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(home-page (%local-url)))))
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(check-home-page pkg)))))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(test-skip (if (force %http-server-socket) 0 1))
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(test-assert "home-page: 200 but short length"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(with-http-server 200 "This is too small."
|
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(home-page (%local-url)))))
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(check-home-page pkg))))
|
|
|
|
|
"suspiciously small")))
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(test-skip (if (force %http-server-socket) 0 1))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
(test-assert "home-page: 404"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(with-warnings
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(with-http-server 404 %long-string
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(home-page (%local-url)))))
|
2014-12-29 14:44:10 -05:00
|
|
|
|
(check-home-page pkg))))
|
2014-12-29 14:39:58 -05:00
|
|
|
|
"not reachable: 404")))
|
2014-08-31 20:13:21 -04:00
|
|
|
|
|
2015-09-10 16:34:58 -04:00
|
|
|
|
(test-assert "source-file-name"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(version "3.2.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri "http://www.example.com/3.2.1.tar.gz")
|
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source-file-name pkg)))
|
|
|
|
|
"file name should contain the package name")))
|
|
|
|
|
|
|
|
|
|
(test-assert "source-file-name: v prefix"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(version "3.2.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri "http://www.example.com/v3.2.1.tar.gz")
|
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source-file-name pkg)))
|
|
|
|
|
"file name should contain the package name")))
|
|
|
|
|
|
|
|
|
|
(test-assert "source-file-name: bad checkout"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(version "3.2.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "http://www.example.com/x.git")
|
|
|
|
|
(commit "0")))
|
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source-file-name pkg)))
|
|
|
|
|
"file name should contain the package name")))
|
|
|
|
|
|
|
|
|
|
(test-assert "source-file-name: good checkout"
|
|
|
|
|
(not
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(version "3.2.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "http://git.example.com/x.git")
|
|
|
|
|
(commit "0")))
|
|
|
|
|
(file-name (string-append "x-" version))
|
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source-file-name pkg)))
|
|
|
|
|
"file name should contain the package name"))))
|
|
|
|
|
|
|
|
|
|
(test-assert "source-file-name: valid"
|
|
|
|
|
(not
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((pkg (dummy-package "x"
|
|
|
|
|
(version "3.2.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri "http://www.example.com/x-3.2.1.tar.gz")
|
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source-file-name pkg)))
|
|
|
|
|
"file name should contain the package name"))))
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(test-skip (if (force %http-server-socket) 0 1))
|
2015-03-05 16:16:01 -05:00
|
|
|
|
(test-equal "source: 200"
|
|
|
|
|
""
|
|
|
|
|
(with-warnings
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(with-http-server 200 %long-string
|
2015-03-05 16:16:01 -05:00
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(uri (%local-url))
|
2015-03-05 16:16:01 -05:00
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source pkg)))))
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(test-skip (if (force %http-server-socket) 0 1))
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(test-assert "source: 200 but short length"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(with-http-server 200 "This is too small."
|
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(uri (%local-url))
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source pkg))))
|
|
|
|
|
"suspiciously small")))
|
|
|
|
|
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(test-skip (if (force %http-server-socket) 0 1))
|
2015-03-05 16:16:01 -05:00
|
|
|
|
(test-assert "source: 404"
|
|
|
|
|
(->bool
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
2016-07-12 18:50:05 -04:00
|
|
|
|
(with-http-server 404 %long-string
|
2015-03-05 16:16:01 -05:00
|
|
|
|
(let ((pkg (package
|
|
|
|
|
(inherit (dummy-package "x"))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2016-11-16 10:34:17 -05:00
|
|
|
|
(uri (%local-url))
|
2015-03-05 16:16:01 -05:00
|
|
|
|
(sha256 %null-sha256))))))
|
|
|
|
|
(check-source pkg))))
|
|
|
|
|
"not reachable: 404")))
|
|
|
|
|
|
2016-11-19 12:06:46 -05:00
|
|
|
|
(test-assert "mirror-url"
|
|
|
|
|
(string-null?
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri "http://example.org/foo/bar.tar.gz")
|
|
|
|
|
(sha256 %null-sha256))))
|
|
|
|
|
(check-mirror-url (dummy-package "x" (source source)))))))
|
|
|
|
|
|
|
|
|
|
(test-assert "mirror-url: one suggestion"
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(let ((source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri "http://ftp.gnu.org/pub/gnu/foo/foo.tar.gz")
|
|
|
|
|
(sha256 %null-sha256))))
|
|
|
|
|
(check-mirror-url (dummy-package "x" (source source)))))
|
|
|
|
|
"mirror://gnu/foo/foo.tar.gz"))
|
|
|
|
|
|
2015-11-26 16:59:06 -05:00
|
|
|
|
(test-assert "cve"
|
|
|
|
|
(mock ((guix scripts lint) package-vulnerabilities (const '()))
|
|
|
|
|
(string-null?
|
|
|
|
|
(with-warnings (check-vulnerabilities (dummy-package "x"))))))
|
|
|
|
|
|
|
|
|
|
(test-assert "cve: one vulnerability"
|
|
|
|
|
(mock ((guix scripts lint) package-vulnerabilities
|
|
|
|
|
(lambda (package)
|
|
|
|
|
(list (make-struct (@@ (guix cve) <vulnerability>) 0
|
|
|
|
|
"CVE-2015-1234"
|
|
|
|
|
(list (cons (package-name package)
|
|
|
|
|
(package-version package)))))))
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-vulnerabilities (dummy-package "pi" (version "3.14"))))
|
|
|
|
|
"vulnerable to CVE-2015-1234")))
|
|
|
|
|
|
2015-11-28 10:15:31 -05:00
|
|
|
|
(test-assert "cve: one patched vulnerability"
|
|
|
|
|
(mock ((guix scripts lint) package-vulnerabilities
|
|
|
|
|
(lambda (package)
|
|
|
|
|
(list (make-struct (@@ (guix cve) <vulnerability>) 0
|
|
|
|
|
"CVE-2015-1234"
|
|
|
|
|
(list (cons (package-name package)
|
|
|
|
|
(package-version package)))))))
|
|
|
|
|
(string-null?
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-vulnerabilities
|
|
|
|
|
(dummy-package "pi"
|
|
|
|
|
(version "3.14")
|
|
|
|
|
(source
|
|
|
|
|
(dummy-origin
|
|
|
|
|
(patches
|
|
|
|
|
(list "/a/b/pi-CVE-2015-1234.patch"))))))))))
|
|
|
|
|
|
2016-10-03 17:30:49 -04:00
|
|
|
|
(test-assert "cve: vulnerability fixed in replacement version"
|
|
|
|
|
(mock ((guix scripts lint) package-vulnerabilities
|
|
|
|
|
(lambda (package)
|
|
|
|
|
(match (package-version package)
|
|
|
|
|
("0"
|
|
|
|
|
(list (make-struct (@@ (guix cve) <vulnerability>) 0
|
|
|
|
|
"CVE-2015-1234"
|
|
|
|
|
(list (cons (package-name package)
|
|
|
|
|
(package-version package))))))
|
|
|
|
|
("1"
|
|
|
|
|
'()))))
|
|
|
|
|
(and (not (string-null?
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-vulnerabilities
|
|
|
|
|
(dummy-package "foo" (version "0"))))))
|
|
|
|
|
(string-null?
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-vulnerabilities
|
|
|
|
|
(dummy-package
|
|
|
|
|
"foo" (version "0")
|
|
|
|
|
(replacement (dummy-package "foo" (version "1"))))))))))
|
|
|
|
|
|
2016-04-28 11:48:47 -04:00
|
|
|
|
(test-assert "cve: patched vulnerability in replacement"
|
|
|
|
|
(mock ((guix scripts lint) package-vulnerabilities
|
|
|
|
|
(lambda (package)
|
|
|
|
|
(list (make-struct (@@ (guix cve) <vulnerability>) 0
|
|
|
|
|
"CVE-2015-1234"
|
|
|
|
|
(list (cons (package-name package)
|
|
|
|
|
(package-version package)))))))
|
|
|
|
|
(string-null?
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-vulnerabilities
|
|
|
|
|
(dummy-package
|
|
|
|
|
"pi" (version "3.14") (source (dummy-origin))
|
|
|
|
|
(replacement (dummy-package
|
|
|
|
|
"pi" (version "3.14")
|
|
|
|
|
(source
|
|
|
|
|
(dummy-origin
|
|
|
|
|
(patches
|
|
|
|
|
(list "/a/b/pi-CVE-2015-1234.patch"))))))))))))
|
|
|
|
|
|
2015-09-18 15:49:51 -04:00
|
|
|
|
(test-assert "formatting: lonely parentheses"
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-formatting
|
|
|
|
|
(
|
|
|
|
|
dummy-package "ugly as hell!"
|
|
|
|
|
)
|
|
|
|
|
))
|
|
|
|
|
"lonely"))
|
|
|
|
|
|
2015-08-19 05:22:07 -04:00
|
|
|
|
(test-assert "formatting: tabulation"
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-formatting (dummy-package "leave the tab here: ")))
|
|
|
|
|
"tabulation"))
|
|
|
|
|
|
|
|
|
|
(test-assert "formatting: trailing white space"
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
;; Leave the trailing white space on the next line!
|
|
|
|
|
(check-formatting (dummy-package "x")))
|
|
|
|
|
"trailing white space"))
|
|
|
|
|
|
|
|
|
|
(test-assert "formatting: long line"
|
|
|
|
|
(string-contains
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-formatting
|
|
|
|
|
(dummy-package "x" ;here is a stupid comment just to make a long line
|
|
|
|
|
)))
|
|
|
|
|
"too long"))
|
|
|
|
|
|
|
|
|
|
(test-assert "formatting: alright"
|
|
|
|
|
(string-null?
|
|
|
|
|
(with-warnings
|
|
|
|
|
(check-formatting (dummy-package "x")))))
|
|
|
|
|
|
2014-08-31 20:13:21 -04:00
|
|
|
|
(test-end "lint")
|
|
|
|
|
|
2014-12-29 14:39:58 -05:00
|
|
|
|
;; Local Variables:
|
2016-07-12 18:50:05 -04:00
|
|
|
|
;; eval: (put 'with-http-server 'scheme-indent-function 2)
|
2014-12-29 14:44:10 -05:00
|
|
|
|
;; eval: (put 'with-warnings 'scheme-indent-function 0)
|
2014-12-29 14:39:58 -05:00
|
|
|
|
;; End:
|