aboutsummaryrefslogtreecommitdiff
path: root/tests/store-roots.scm
blob: bf30b1dff6117d1a62914d660116392bd946659b (about) (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
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
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2019, 2023 Ludovic Courtès <ludo@gnu.org>
;;;
;;; 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-store-deduplication)
  #:use-module (guix tests)
  #:use-module (guix store)
  #:use-module (guix store roots)
  #:use-module ((guix utils) #:select (call-with-temporary-directory))
  #:use-module ((guix build utils) #:select (delete-file-recursively))
  #:use-module ((guix config) #:select (%state-directory))
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-64))

(define %store #f)

(test-begin "store-roots")

;; The 'open-connection' call below gets guix-daemon to create
;; %STATE-DIRECTORY/profiles.
(set! %store (open-connection))

(test-assert "gc-roots, regular root"
  (let* ((item (add-text-to-store %store "something"
                                  (random-text)))
         (root (string-append %gc-roots-directory "/test-gc-root")))
    (symlink item root)
    (let ((result (member root (gc-roots))))
      (delete-file root)
      result)))

(test-assert "gc-roots, indirect root"
  (call-with-temporary-directory
   (lambda (directory)
     (let* ((item (add-text-to-store %store "something"
                                     (random-text)))
            (root (string-append directory "/gc-root")))
       (symlink item root)
       (add-indirect-root %store root)
       (let ((result (member root (gc-roots))))
         (delete-file root)
         result)))))

(test-end "store-roots")
ge-Id: Ia302df6a3dd626bfd81c4559120734133db2a813 Efraim Flashner 2024-11-28gnu: Add rust-sequoia-keystore-softkeys-0.6....* gnu/packages/sequoia.scm (rust-sequoia-keystore-softkeys-0.6): New variable. (rust-sequoia-keystore-softkeys-0.2): Remove variable. Change-Id: I2095a4a14bc2ed0283eaefdc1ffbc03cf1770f84 Efraim Flashner 2024-11-28gnu: Add rust-openpgp-card-0.5....* gnu/packages/sequoia.scm (rust-openpgp-card-0.5): New variable. Change-Id: Ic6ef6a27493129dd65355197d0930ebcdf0fadfe Efraim Flashner 2024-11-28gnu: Add rust-card-backend-0.2....* gnu/packages/sequoia.scm (rust-card-backend-0.2): New variable. Change-Id: I94904d28d594aea0c24d31eaf44f5beab1d86132 Efraim Flashner 2024-11-28gnu: Add rust-card-backend-pcsc-0.5....* gnu/packages/sequoia.scm (rust-card-backend-pcsc-0.5): New variable. Change-Id: I1b8939285a750a58dbdb8b092d09909fd3ac3669 Efraim Flashner 2024-11-28gnu: Add rust-sequoia-directories-0.1....* gnu/packages/sequoia.scm (rust-sequoia-directories-0.1): New variable. Change-Id: I197d76a7f8ab95d4118abdded116511f9f86ab77 Efraim Flashner 2024-11-28gnu: Add rust-sequoia-gpg-agent-0.4....* gnu/packages/sequoia.scm (rust-sequoia-gpg-agent-0.4): New variable. Change-Id: I217c8e9f72baadb6687e1fb338f6f46c72ea6b5f Efraim Flashner 2024-11-28gnu: Add rust-sequoia-ipc-0.35....* gnu/packages/sequoia.scm (rust-sequoia-ipc-0.35): New variable. (rust-sequoia-ipc-0.33): Remove variable. Change-Id: I602ba896ef584f9072247ec1886d8ad6eb235d0d Efraim Flashner 2024-11-28gnu: Add rust-sequoia-cert-store-0.6....* gnu/packages/sequoia.scm (rust-sequoia-cert-store-0.6): New variable. (rust-sequoia-cert-store-0.5): Remove variable. Change-Id: Iea2fd64f2cc16ff31026b09add793d9503e0830b Efraim Flashner 2024-11-28gnu: Add rust-sequoia-keystore-0.6....* gnu/packages/sequoia.scm (rust-sequoia-keystore-0.6): New variable. (rust-sequoia-keystore-0.2): Remove variable. Change-Id: I8ec2457bebef04f8498c1b5e87e98e852539e77f Efraim Flashner 2024-11-28gnu: Add rust-sequoia-keystore-backend-0.6....* gnu/packages/sequoia.scm (rust-sequoia-keystore-backend-0.6): New variable. (rust-sequoia-keystore-backend-0.2): Remove variable. Change-Id: Ic07a82a4b86baf240e441201a9e549a83fe8c9b8 Efraim Flashner 2024-11-28gnu: rust-openpgp-cert-d-0.3: Update to 0.3.3....* gnu/packages/sequoia.scm (rust-openpgp-cert-d-0.3): Update to 0.3.3. Change-Id: I6fd73c0d2fb0e8501d26e327b9f0a3b9922f3012 Efraim Flashner