aboutsummaryrefslogtreecommitdiff
path: root/tests/model-git-repository.scm
blob: ee72f2472d1c6f9a55d75ed7213a8c568d265387 (plain)
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
(define-module (test-model-git-repository)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-64)
  #:use-module (guix-data-service database)
  #:use-module (guix-data-service model git-repository))

(test-begin "test-model-git-repository")

(with-postgresql-connection
 "test-model-git-repository"
 (lambda (conn)
   (test-assert "returns an id for a non existent URL"
     (with-postgresql-transaction
      conn
      (lambda (conn)
        (match (git-repository-url->git-repository-id
                conn
                "test-non-existent-url")
          ((? number? x)
           #t)))
      #:always-rollback? #t))

   (let* ((url "test-url")
          (id (git-repository-url->git-repository-id conn url)))
     (with-postgresql-transaction
      conn
      (lambda (conn)
        (test-equal "returns the right id for an existing URL"
          id
          (git-repository-url->git-repository-id conn url)))
      #:always-rollback? #t))))

(test-end)