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
|
;;; Guile-Git --- GNU Guile bindings of libgit2
;;; Copyright © 2019 Marius Bakke <marius@devup.no>
;;;
;;; This file is part of Guile-Git.
;;;
;;; Guile-Git 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.
;;;
;;; Guile-Git 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 Guile-Git. If not, see <http://www.gnu.org/licenses/>.
(define-module (tests describe)
#:use-module (srfi srfi-64))
(use-modules (tests helpers))
(use-modules (git))
(test-begin "tag")
(libgit2-init!)
(with-repository "simple" directory
(test-assert "lightweight tag"
(let* ((repository (repository-open directory))
(name "root")
(target (revparse-single repository "HEAD~2")))
(tag-create-lightweight repository name target)))
(test-assert "tag is identical to root commit"
(let* ((repository (repository-open directory))
(oid (reference-name->oid repository "refs/tags/root"))
(root (string->oid "354bcdf85d661533f28dae0e78ce0be99a9dfb9d")))
(oid=? oid root)))
(test-equal "create lightweight tag, invalid specification"
(list GIT_EINVALIDSPEC GITERR_REFERENCE)
(let* ((repository (repository-open directory))
(name "root/")
(target (revparse-single repository "HEAD")))
(catch 'git-error
(lambda ()
(clear-git-error!)
(tag-create-lightweight repository name target))
(lambda (key err)
(list (git-error-code err) (git-error-class err))))))
(test-equal "create lightweight tag, name already exists"
(list GIT_EEXISTS GITERR_TAG)
(let* ((repository (repository-open directory))
(name "root")
(target (revparse-single repository "HEAD")))
(catch 'git-error
(lambda ()
(clear-git-error!)
(tag-create-lightweight repository name target))
(lambda (key err)
(list (git-error-code err) (git-error-class err))))))
(test-equal "overwrite lightweight tag"
"3f848a1a52416ac99a5c5bf2e6bd55eb7b99d55b"
(let* ((repository (repository-open directory))
(name "root")
(target (revparse-single repository "HEAD")))
(oid->string (tag-create-lightweight! repository name target))))
(test-assert "create annotated tag"
(let* ((repository (repository-open directory))
(name "1.0")
(target (revparse-single repository "HEAD"))
(tagger (signature-new "Test Tag" "test@localhost" 0 0))
(message "This tag is annotated!"))
(tag-create repository name target tagger message)))
(test-equal "tag-message"
"This tag is annotated!"
(let* ((repository (repository-open directory))
(oid (reference-name->oid repository "refs/tags/1.0")))
(tag-message (tag-lookup repository oid))))
(test-equal "tag foreach"
2
(let* ((repository (repository-open directory))
(count 0))
(tag-foreach repository (lambda (name oid) (set! count (+ count 1)) 0))
count))
(test-equal "tag fold"
2
(let ((repository (repository-open directory)))
(tag-fold (lambda (name oid count) (+ count 1)) 0 repository)))
)
(libgit2-shutdown!)
(test-end)
|