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