unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 4ed3a5e1daec28a310305da8af32ca6f36a86252 11056 bytes (raw)
name: tests/import-utils.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2015, 2017 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
;;; Copyright © 2016 Martin Becze <mjbecze@riseup.net>
;;;
;;; 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-import-utils)
  #:use-module (guix tests)
  #:use-module (guix import utils)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix build-system)
  #:use-module (gnu packages)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-9)
  #:use-module (srfi srfi-41)
  #:use-module (srfi srfi-64))

(test-begin "import-utils")

(test-equal "beautify-description: use double spacing"
  "This is a package.  It is great.  Trust me Mr.  Hendrix."
  (beautify-description
   "This is a package. It is great. Trust me Mr. Hendrix."))

(test-equal "beautify-description: transform fragment into sentence"
  "This package provides a function to establish world peace"
  (beautify-description "A function to establish world peace"))

(test-equal "license->symbol"
  'license:lgpl2.0
  (license->symbol license:lgpl2.0))

(test-assert "alist->package with simple source"
  (let* ((meta '(("name" . "hello")
                 ("version" . "2.10")
                 ("source" .
                  ;; Use a 'file://' URI so that we don't cause a download.
                  ,(string-append "file://"
                                  (search-path %load-path "guix.scm")))
                 ("build-system" . "gnu")
                 ("home-page" . "https://gnu.org")
                 ("synopsis" . "Say hi")
                 ("description" . "This package says hi.")
                 ("license" . "GPL-3.0+")))
         (pkg (alist->package meta)))
    (and (package? pkg)
         (license:license? (package-license pkg))
         (build-system? (package-build-system pkg))
         (origin? (package-source pkg)))))

(test-assert "alist->package with explicit source"
  (let* ((meta '(("name" . "hello")
                 ("version" . "2.10")
                 ("source" . (("method" . "url-fetch")
                              ("uri"    . "mirror://gnu/hello/hello-2.10.tar.gz")
                              ("sha256" .
                               (("base32" .
                                 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i")))))
                 ("build-system" . "gnu")
                 ("home-page" . "https://gnu.org")
                 ("synopsis" . "Say hi")
                 ("description" . "This package says hi.")
                 ("license" . "GPL-3.0+")))
         (pkg (alist->package meta)))
    (and (package? pkg)
         (license:license? (package-license pkg))
         (build-system? (package-build-system pkg))
         (origin? (package-source pkg))
         (equal? (origin-sha256 (package-source pkg))
                 (base32 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i")))))

(test-equal "alist->package with false license"  ;<https://bugs.gnu.org/30470>
  'license-is-false
  (let* ((meta '(("name" . "hello")
                 ("version" . "2.10")
                 ("source" . (("method" . "url-fetch")
                              ("uri"    . "mirror://gnu/hello/hello-2.10.tar.gz")
                              ("sha256" .
                               (("base32" .
                                 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i")))))
                 ("build-system" . "gnu")
                 ("home-page" . "https://gnu.org")
                 ("synopsis" . "Say hi")
                 ("description" . "This package says hi.")
                 ("license" . #f))))
    ;; Note: Use 'or' because comparing with #f otherwise succeeds when
    ;; there's an exception instead of an actual #f.
    (or (package-license (alist->package meta))
        'license-is-false)))

(test-equal "alist->package with dependencies"
  `(("gettext" ,(specification->package "gettext")))
  (let* ((meta '(("name" . "hello")
                 ("version" . "2.10")
                 ("source" . (("method" . "url-fetch")
                              ("uri"    . "mirror://gnu/hello/hello-2.10.tar.gz")
                              ("sha256" .
                               (("base32" .
                                 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i")))))
                 ("build-system" . "gnu")
                 ("home-page" . "https://gnu.org")
                 ("synopsis" . "Say hi")
                 ("description" . "This package says hi.")
                                                  ;
                 ;; Note: As with Guile-JSON 3.x, JSON arrays are represented
                 ;; by vectors.
                 ("native-inputs" . #("gettext"))

                 ("license" . #f))))
    (package-native-inputs (alist->package meta))))

(define-record-type <metadata>
  (make-metadata name versions)
  metadata?
  (name metadata-name)
  (versions  metadata-versions))

(define-record-type <package>
  (make-package version dependencies)
  package?
  (version package-version)
  (dependencies package-dependencies))

(define-record-type <dependency>
  (make-dependency name range)
  dependency?
  (name dependency-name)
  (range dependency-range))

(define (metadata-semver-versions metadata)
  (map (lambda (p)
         (package-version p))
       (metadata-versions metadata)))

(define (metadata->package metadata version)
  (find
   (lambda (package)
     (equal? (package-version package) version))
   (metadata-versions metadata)))

(define (make-sexp metadata package dependencies)
  `(package
    (name ,(guix-name (metadata-name metadata)))
    (version ,(package-version package))
    (dependcies ,(map
                  (match-lambda ((public-name dep)
                                 (list (guix-name (dependency-name dep)) public-name)))
                  dependencies))))

(define (guix-name name)
  (string-append "test-" name))

(define packages
  `(("no-deps" . (("1.0.0" . ()) ("0.1.0" . ())))
    ("one-dep" . (("1.0.0" . (("no-deps" "^1.0")))
                  ("0.1.0" . (("no-deps" "^0.1.0")))))
    ("shared-dep" . (("1.0.0" . (("one-dep" "^0.1.0")
                                 ("no-deps" "*")))))
    ("recursive" . (("1.0.0" . (("recursive" "=1.0.0")))))
    ("already-packaged" . (("1.0.0" . (("rust" "~1.28")))))))

(define (name->metadata name)
  (let ((versions (assoc-ref packages name)))
    (make-metadata name
                   (map
                    (match-lambda
                      ((version . deps)
                       (make-package version
                                     (map
                                      (lambda (name-range)
                                        (apply make-dependency name-range))
                                      deps))))
                    versions))))

(define* (test-recursive-importer name version #:optional (guix-name guix-name))
  (recursive-import-semver #:name name
                           #:version version
                           #:name->metadata name->metadata
                           #:metadata->package metadata->package
                           #:metadata-versions metadata-semver-versions
                           #:package-dependencies package-dependencies
                           #:dependency-name dependency-name
                           #:dependency-range dependency-range
                           #:guix-name guix-name
                           #:make-sexp make-sexp))

(test-equal "recursive import test with no dependencies"
  `((define-public test-no-deps
      (package
        (name "test-no-deps")
        (version "1.0.0")
        (dependcies ()))))
  (stream->list (test-recursive-importer "no-deps" "1.0.0")))

(test-equal "recursive import test with one dependencies"
  `((define-public test-one-dep
      (package
        (name "test-one-dep")
        (version "1.0.0")
        (dependcies (("test-no-deps" "test-no-deps")))))
    (define-public test-no-deps
      (package
        (name "test-no-deps")
        (version "1.0.0")
        (dependcies ()))))
  (stream->list (test-recursive-importer "one-dep" "1.0.0")))

(test-equal "recursive import test with recursuve dependencies"
  `((define-public test-recursive
      (package
        (name "test-recursive")
        (version "1.0.0")
        (dependcies (("test-recursive" "test-recursive"))))))
  (stream->list (test-recursive-importer "recursive" "1.0.0")))

(test-equal "recursive import test with no dependencies using an old version"
  `((define-public test-no-deps-0.1.0
      (package
        (name "test-no-deps")
        (version "0.1.0")
        (dependcies ()))))
  (stream->list (test-recursive-importer "no-deps" "0.1.0")))

(test-equal "recursive import test with one dependencies unsing an old version"
  `((define-public test-one-dep-0.1.0
      (package
        (name "test-one-dep")
        (version "0.1.0")
        (dependcies (("test-no-deps" "test-no-deps-0.1.0")))))
    (define-public test-no-deps-0.1.0
      (package
        (name "test-no-deps")
        (version "0.1.0")
        (dependcies ()))))
  (stream->list (test-recursive-importer "one-dep" "0.1.0")))

(test-equal "recursive import test with with dependency that is already in the repo"
  `((define-public test-already-packaged
      (package (name "test-already-packaged")
               (version "1.0.0")
               (dependcies
                (("test-rust" "rust-1.28"))))))
  (stream->list (test-recursive-importer "already-packaged" "1.0.0" identity)))

(test-equal "shared dependencies"
  `((define-public test-shared-dep
      (package
        (name "test-shared-dep")
        (version "1.0.0")
        (dependcies (("test-one-dep" "test-one-dep-0.1.0")
                     ("test-no-deps" "test-no-deps")))))
    (define-public test-one-dep-0.1.0
      (package
        (name "test-one-dep")
        (version "0.1.0")
        (dependcies (("test-no-deps" "test-no-deps-0.1.0")))))
    (define-public test-no-deps
      (package
        (name "test-no-deps")
        (version "1.0.0")
        (dependcies ())))
    (define-public test-no-deps-0.1.0
      (package
        (name "test-no-deps")
        (version "0.1.0")
        (dependcies()))))
  (stream->list (test-recursive-importer "shared-dep" "1.0.0")))

(test-end "import-utils")

debug log:

solving 4ed3a5e1da ...
found 4ed3a5e1da in https://yhetil.org/guix-patches/18d8555e374e1d7682c5f7231be25dd572dacbf0.1575656092.git.mjbecze@riseup.net/ ||
	https://yhetil.org/guix-patches/18d8555e374e1d7682c5f7231be25dd572dacbf0.1575575779.git.mjbecze@riseup.net/ ||
	https://yhetil.org/guix-patches/5b82d5ab2c9d579d279db055b8f12509587234fa.1576005195.git.mjbecze@riseup.net/ ||
	https://yhetil.org/guix-patches/0b124a8a41c3488d3cda265d363eab49de7aca62.1574897905.git.mjbecze@riseup.net/
found c3ab25d788 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 c3ab25d78833ea11aef942543e2c173516aff1c2	tests/import-utils.scm

applying [1/1] https://yhetil.org/guix-patches/18d8555e374e1d7682c5f7231be25dd572dacbf0.1575656092.git.mjbecze@riseup.net/
diff --git a/tests/import-utils.scm b/tests/import-utils.scm
index c3ab25d788..4ed3a5e1da 100644

Checking patch tests/import-utils.scm...
Applied patch tests/import-utils.scm cleanly.

skipping https://yhetil.org/guix-patches/18d8555e374e1d7682c5f7231be25dd572dacbf0.1575575779.git.mjbecze@riseup.net/ for 4ed3a5e1da
skipping https://yhetil.org/guix-patches/5b82d5ab2c9d579d279db055b8f12509587234fa.1576005195.git.mjbecze@riseup.net/ for 4ed3a5e1da
skipping https://yhetil.org/guix-patches/0b124a8a41c3488d3cda265d363eab49de7aca62.1574897905.git.mjbecze@riseup.net/ for 4ed3a5e1da
index at:
100644 4ed3a5e1daec28a310305da8af32ca6f36a86252	tests/import-utils.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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).