all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob f95071ce075b57fc751bf82cca0c8b3fba77fa01 3968 bytes (raw)
name: tests/import-repology.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
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2022 Xinglu Chen <public@yoctocell.xyz>
;;;
;;; 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-repology)
  #:use-module (guix download)
  #:use-module (guix git-download)
  #:use-module (guix import repology)
  #:use-module (guix packages)
  #:use-module (guix tests)
  #:use-module (guix upstream)
  #:use-module (json)
  #:use-module (srfi srfi-64))

(test-begin "repology")

(define package-using-git-repository
  (dummy-package
   "foo"
   (version "1.0")
   (source
    (origin
      (method git-fetch)
      (uri (git-reference
            (url "https://git.example.org/foo")
            (commit "1.0")))
      (sha256 #f)))))

(define package-using-tarball
  (dummy-package
   "foo"
   (version "1.0")
   (source
    (origin
      (method git-fetch)
      (uri (string-append "https://example.org/foo-" version ".tar.gz"))
      (sha256 #f)))))

(define package-using-tarball-multiple-urls
  (dummy-package
   "foo"
   (version "1.0")
   (source
    (origin
      (method git-fetch)
      (uri (list (string-append "https://example.org/foo-"
                                version ".tar.gz")
                 (string-append "https://mirror.example.org/foo-"
                                version ".tar.gz")))
      (sha256 #f)))))

(define %test-json
"[
  {
    \"repo\": \"aur\",
    \"srcname\": \"foo\",
    \"binname\": \"foo\",
    \"visiblename\": \"foo\",
    \"version\": \"1.0.r25.gb86405a\",
    \"maintainers\": [
      \"bob@aur\"
    ],
    \"licenses\": [
      \"LGPL3+\"
    ],
    \"summary\": \"foo bar\"
    \"status\": \"rolling\",
    \"origversion\": \"1.0.r25.gb86405a-1\"
  },
  {
    \"repo\": \"gnuguix\",
    \"srcname\": \"foo\",
    \"binname\": \"foo\",
    \"visiblename\": \"foo\",
    \"version\": \"1.0\",
    \"summary\": \"foo bar\",
    \"status\": \"outdated\",
    \"origversion\": null
  },
  {
    \"repo\": \"nix_unstable\",
    \"name\": \"foo\",
    \"visiblename\": \"foo\",
    \"version\": \"2.0\",
    \"maintainers\": [
      \"bob@example.org\"
    ],
    \"licenses\": [
      \"LGPL-3.0-or-later\"
    ],
    \"summary\": \"foo bar\",
    \"status\": \"newest\",
    \"origversion\": null
  }
]")

(define (latest-release package)
  (mock ((guix import json) json-fetch
         (lambda (url)
           (json-string->scm %test-json)))
        (repology-latest-release package)))

(test-equal "package using Git repo: version"
  "2.0"
  (upstream-source-version
   (latest-release package-using-git-repository)))

(test-equal "package using Git repo: git-reference"
  (list (git-reference
         (url "https://git.example.org/foo")
         (commit "2.0")))
  (upstream-source-urls
   (latest-release package-using-git-repository)))

(test-equal "package using tarball: version"
  "2.0"
  (upstream-source-version
   (latest-release package-using-tarball)))

(test-equal "package using tarball: URL"
  (list "https://example.org/foo-2.0.tar.gz")
  (upstream-source-urls
   (latest-release package-using-tarball)))

(test-equal "package using tarball: multiple URLs"
  (list "https://example.org/foo-2.0.tar.gz"
        "https://mirror.example.org/foo-2.0.tar.gz")
  (upstream-source-urls
   (latest-release package-using-tarball-multiple-urls)))

(test-end "repology")

debug log:

solving f95071ce07 ...
found f95071ce07 in https://yhetil.org/guix/88f866aff65c0ec9611b6cc0ee9d680ba711df38.1644147246.git.public@yoctocell.xyz/

applying [1/1] https://yhetil.org/guix/88f866aff65c0ec9611b6cc0ee9d680ba711df38.1644147246.git.public@yoctocell.xyz/
diff --git a/tests/import-repology.scm b/tests/import-repology.scm
new file mode 100644
index 0000000000..f95071ce07

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

index at:
100644 f95071ce075b57fc751bf82cca0c8b3fba77fa01	tests/import-repology.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 external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.