gnu: icecat: Enable Stylo CSS engine.
[guix.git] / tests / store-deduplication.scm
blobe438aa84c69a8ed2ffeed33f6fadb9ac907fbd54
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
3 ;;;
4 ;;; This file is part of GNU Guix.
5 ;;;
6 ;;; GNU Guix is free software; you can redistribute it and/or modify it
7 ;;; under the terms of the GNU General Public License as published by
8 ;;; the Free Software Foundation; either version 3 of the License, or (at
9 ;;; your option) any later version.
10 ;;;
11 ;;; GNU Guix is distributed in the hope that it will be useful, but
12 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ;;; GNU General Public License for more details.
15 ;;;
16 ;;; You should have received a copy of the GNU General Public License
17 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
19 (define-module (test-store-deduplication)
20   #:use-module (guix tests)
21   #:use-module (guix store deduplication)
22   #:use-module (gcrypt hash)
23   #:use-module ((guix utils) #:select (call-with-temporary-directory))
24   #:use-module (guix build utils)
25   #:use-module (rnrs bytevectors)
26   #:use-module (ice-9 binary-ports)
27   #:use-module (srfi srfi-1)
28   #:use-module (srfi srfi-64))
30 (test-begin "store-deduplication")
32 (test-equal "deduplicate"
33   (cons* #t #f                                    ;inode comparisons
34          2 (make-list 5 6))                       ;'nlink' values
36   (call-with-temporary-directory
37    (lambda (store)
38      (let ((data      (string->utf8 "Hello, world!"))
39            (identical (map (lambda (n)
40                              (string-append store "/" (number->string n)
41                                             "/a/b/c"))
42                            (iota 5)))
43            (unique    (string-append store "/unique")))
44        (for-each (lambda (file)
45                    (mkdir-p (dirname file))
46                    (call-with-output-file file
47                      (lambda (port)
48                        (put-bytevector port data))))
49                  identical)
50        ;; Make the parent of IDENTICAL read-only.  This should not prevent
51        ;; deduplication for inserting its hard link.
52        (chmod (dirname (second identical)) #o544)
54        (call-with-output-file unique
55          (lambda (port)
56            (put-bytevector port (string->utf8 "This is unique."))))
58        (deduplicate store (nar-sha256 store) #:store store)
60        ;; (system (string-append "ls -lRia " store))
61        (cons* (apply = (map (compose stat:ino stat) identical))
62               (= (stat:ino (stat unique))
63                  (stat:ino (stat (car identical))))
64               (stat:nlink (stat unique))
65               (map (compose stat:nlink stat) identical))))))
67 (test-end "store-deduplication")