gnu: gdm: Fix config file path.
[guix.git] / tests / guix-archive.sh
blobfdaeb98ad2be639f48e7d33e5b5ec517a8abb36a
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
4 # This file is part of GNU Guix.
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.
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.
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/>.
20 # Test the 'guix archive' command-line utility.
23 guix archive --version
25 archive="t-archive-$$"
26 archive_alt="t-archive-alt-$$"
27 tmpdir="t-archive-dir-$$"
28 rm -f "$archive" "$archive_alt"
29 rm -rf "$tmpdir"
31 trap 'rm -f "$archive" "$archive_alt"; rm -rf "$tmpdir"' EXIT
33 guix archive --export guile-bootstrap > "$archive"
34 guix archive --export guile-bootstrap:out > "$archive_alt"
35 cmp "$archive" "$archive_alt"
37 guix archive --export \
38 -e '(@ (gnu packages bootstrap) %bootstrap-guile)' > "$archive_alt"
39 cmp "$archive" "$archive_alt"
41 guix archive --export `guix build guile-bootstrap` > "$archive_alt"
42 cmp "$archive" "$archive_alt"
44 # Check the exit value upon import.
45 guix archive --import < "$archive"
47 if guix archive something-that-does-not-exist
48 then false; else true; fi
50 # This one must not be listed as missing.
51 guix build guile-bootstrap > "$archive"
52 guix archive --missing < "$archive"
53 test "`guix archive --missing < "$archive"`" = ""
55 # Two out of three should be listed as missing.
56 echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" >> "$archive"
57 echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive"
58 guix archive --missing < "$archive" > "$archive_alt"
59 echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-foo" > "$archive"
60 echo "$NIX_STORE_DIR/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-bar" >> "$archive"
61 cmp "$archive" "$archive_alt"
63 # This is not a valid store file name, so an error.
64 echo something invalid > "$archive"
65 if guix archive --missing < "$archive"
66 then false; else true; fi
68 # Check '--extract'.
69 guile -c "(use-modules (guix serialization))
70 (call-with-output-file \"$archive\"
71 (lambda (port)
72 (write-file \"$(guix build guile-bootstrap)\" port)))"
73 guix archive -x "$tmpdir" < "$archive"
74 test -x "$tmpdir/bin/guile"
75 test -d "$tmpdir/lib/guile"
77 if echo foo | guix archive --authorize
78 then false; else true; fi