daemon: Simplify interface with 'guix authenticate'.
[jackhill/guix/guix.git] / tests / guix-authenticate.sh
CommitLineData
0820098d 1# GNU Guix --- Functional package management for GNU
6dd8ffc5 2# Copyright © 2013, 2014, 2020 Ludovic Courtès <ludo@gnu.org>
0820098d
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 authenticate' command-line utility.
21#
22
23guix authenticate --version
24
25sig="t-signature-$$"
26hash="t-hash-$$"
27rm -f "$sig" "$hash"
28
29trap 'rm -f "$sig" "$hash"' EXIT
30
31# A hexadecimal string as long as a sha256 hash.
6dd8ffc5 32hash="2749f0ea9f26c6c7be746a9cff8fa4c2f2a02b000070dba78429e9a11f87c6eb"
0820098d 33
6dd8ffc5
LC
34guix authenticate sign \
35 "$abs_top_srcdir/tests/signing-key.sec" \
36 "$hash" > "$sig"
0820098d
LC
37test -f "$sig"
38
6dd8ffc5
LC
39hash2="`guix authenticate verify "$sig"`"
40test "$hash2" = "$hash"
9b0a2233 41
0820098d 42# Detect corrupt signatures.
6dd8ffc5 43if guix authenticate verify /dev/null
0820098d
LC
44then false
45else true
46fi
47
48# Detect invalid signatures.
49# The signature has (payload (data ... (hash sha256 #...#))). We proceed by
50# modifying this hash.
51sed -i "$sig" \
52 -e's|#[A-Z0-9]\{64\}#|#0000000000000000000000000000000000000000000000000000000000000000#|g'
6dd8ffc5 53if guix authenticate verify "$sig"
0820098d
LC
54then false
55else true
56fi
6f695885
LC
57
58
59# Test for <http://bugs.gnu.org/17312>: make sure 'guix authenticate' produces
60# valid signatures when run in the C locale.
6dd8ffc5 61hash="5eff0b55c9c5f5e87b4e34cd60a2d5654ca1eb78c7b3c67c3179fed1cff07b4c"
6f695885
LC
62
63LC_ALL=C
64export LC_ALL
65
6dd8ffc5
LC
66guix authenticate sign "$abs_top_srcdir/tests/signing-key.sec" "$hash" \
67 > "$sig"
6f695885 68
6dd8ffc5
LC
69guix authenticate verify "$sig"
70hash2="`guix authenticate verify "$sig"`"
71test "$hash2" = "$hash"