serialization: Adjust the permissive UTF-8 decoder to Guile 2.0.12ish.
[jackhill/guix/guix.git] / tests / guix-hash.sh
CommitLineData
ccbce848 1# GNU Guix --- Functional package management for GNU
3140f2df 2# Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
ccbce848
LC
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/>.
18
19#
20# Test the `guix hash' command-line utility.
21#
22
23guix hash --version
24
3140f2df
LC
25tmpdir="guix-hash-$$"
26trap 'rm -rf "$tmpdir"' EXIT
27
ccbce848
LC
28test `guix hash /dev/null` = 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
29test `guix hash -f nix-base32 /dev/null` = 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
30test `guix hash -f hex /dev/null` = e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
31test `guix hash -f base32 /dev/null` = 4oymiquy7qobjgx36tejs35zeqt24qpemsnzgtfeswmrw6csxbkq
3140f2df
LC
32
33mkdir "$tmpdir"
34echo -n executable > "$tmpdir/exe"
35chmod +x "$tmpdir/exe"
36( cd "$tmpdir" ; ln -s exe symlink )
37mkdir "$tmpdir/subdir"
38
39test `guix hash -r "$tmpdir"` = 10k1lw41wyrjf9mxydi0is5nkpynlsvgslinics4ppir13g7d74p
40
41# Without '-r', this should fail.
42if guix hash "$tmpdir"
43then false; else true; fi
44
45# This should fail because /dev/null is a character device, which
46# the archive format doesn't support.
47if guix hash -r /dev/null
48then false; else true; fi