diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2020-07-05 23:40:29 +0200 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2020-07-11 12:33:01 +0200 |
| commit | a98712785e0b042a290420fd74e5a4a5da4fc68f (patch) | |
| tree | e2bf598486e5847c7c8c36c1ef711a9410cd587e /tests/guix-git-authenticate.sh | |
| parent | 69db2993b58579e7b0990f5c35f9a289844f22e5 (diff) | |
Add 'guix git authenticate'.
* guix/scripts/git.scm, guix/scripts/git/authenticate.scm,
tests/guix-git-authenticate.sh: New files.
* Makefile.am (MODULES): Add the *.scm files.
(SH_TESTS): Add 'tests/guix-git-authenticate.sh'.
* doc/guix.texi (Channels)[Specifying Channel Authorizations]: Mention
'guix git authenticate'.
(Invoking guix git authenticate): New node.
* po/guix/POTFILES.in: Add 'guix/scripts/git.scm' and
'guix/scripts/git/authenticate.scm'.
Diffstat (limited to 'tests/guix-git-authenticate.sh')
| -rw-r--r-- | tests/guix-git-authenticate.sh | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/guix-git-authenticate.sh b/tests/guix-git-authenticate.sh new file mode 100644 index 00000000000..1c76e240b54 --- /dev/null +++ b/tests/guix-git-authenticate.sh | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | # GNU Guix --- Functional package management for GNU | ||
| 2 | # Copyright © 2020 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 git authenticate' command-line utility. | ||
| 21 | # | ||
| 22 | |||
| 23 | # Skip if we're not in a Git checkout. | ||
| 24 | [ -d "$abs_top_srcdir/.git" ] || exit 77 | ||
| 25 | |||
| 26 | # Skip if there's no 'keyring' branch. | ||
| 27 | guile -c '(use-modules (git)) | ||
| 28 | (member "refs/heads/keyring" (branch-list (repository-open ".")))' || \ | ||
| 29 | exit 77 | ||
| 30 | |||
| 31 | # Keep in sync with '%default-channels' in (guix channels)! | ||
| 32 | intro_commit="9edb3f66fd807b096b48283debdcddccfea34bad" | ||
| 33 | intro_signer="BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA" | ||
| 34 | |||
| 35 | cache_key="test-$$" | ||
| 36 | |||
| 37 | guix git authenticate "$intro_commit" "$intro_signer" \ | ||
| 38 | --cache-key="$cache_key" --stats \ | ||
| 39 | --end=9549f0283a78fe36f2d4ff2a04ef8ad6b0c02604 | ||
| 40 | |||
| 41 | rm "$XDG_CACHE_HOME/guix/authentication/$cache_key" | ||
| 42 | |||
| 43 | # Commit and signer of the 'v1.0.0' tag. | ||
| 44 | v1_0_0_commit="6298c3ffd9654d3231a6f25390b056483e8f407c" | ||
| 45 | v1_0_0_signer="3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5" # civodul | ||
| 46 | v1_0_1_commit="d68de958b60426798ed62797ff7c96c327a672ac" | ||
| 47 | |||
| 48 | # This should fail because these commits lack '.guix-authorizations'. | ||
| 49 | if guix git authenticate "$v1_0_0_commit" "$v1_0_0_signer" \ | ||
| 50 | --cache-key="$cache_key" --end="$v1_0_1_commit"; | ||
| 51 | then false; else true; fi | ||
| 52 | |||
| 53 | # This should work thanks to '--historical-authorizations'. | ||
| 54 | guix git authenticate "$v1_0_0_commit" "$v1_0_0_signer" \ | ||
| 55 | --cache-key="$cache_key" --end="$v1_0_1_commit" --stats \ | ||
| 56 | --historical-authorizations="$abs_top_srcdir/etc/historical-authorizations" | ||
