summaryrefslogtreecommitdiff
path: root/t/t7030-verify-tag.sh
diff options
context:
space:
mode:
authorSantiago Torres <santiago@nyu.edu>2016-04-17 22:26:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-04-18 20:06:15 (GMT)
commit3e1e7454cc6737ceff0311451eba7a698da9d8c9 (patch)
tree2fdf831be3e57b1c1a84f7606880984ce726faaa /t/t7030-verify-tag.sh
parentd281b45d754477e79a8e0228c8f5ce4195079238 (diff)
downloadgit-3e1e7454cc6737ceff0311451eba7a698da9d8c9.zip
git-3e1e7454cc6737ceff0311451eba7a698da9d8c9.tar.gz
git-3e1e7454cc6737ceff0311451eba7a698da9d8c9.tar.bz2
t7030: test verifying multiple tags
The verify-tag command supports multiple tag names to verify, but existing tests only test for invocation with a single tag. Add a test invoking it with multiple tags. Helped-by: Jeff King <peff@peff.net> Signed-off-by: Santiago Torres <santiago@nyu.edu> Reviewed-by: Eric Sunshine <sunshine@sunshineco.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7030-verify-tag.sh')
-rwxr-xr-xt/t7030-verify-tag.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t7030-verify-tag.sh b/t/t7030-verify-tag.sh
index 4608e71..07079a4 100755
--- a/t/t7030-verify-tag.sh
+++ b/t/t7030-verify-tag.sh
@@ -112,4 +112,17 @@ test_expect_success GPG 'verify signatures with --raw' '
)
'
+test_expect_success GPG 'verify multiple tags' '
+ tags="fourth-signed sixth-signed seventh-signed" &&
+ for i in $tags
+ do
+ git verify-tag -v --raw $i || return 1
+ done >expect.stdout 2>expect.stderr.1 &&
+ grep "^.GNUPG:." <expect.stderr.1 >expect.stderr &&
+ git verify-tag -v --raw $tags >actual.stdout 2>actual.stderr.1 &&
+ grep "^.GNUPG:." <actual.stderr.1 >actual.stderr &&
+ test_cmp expect.stdout actual.stdout &&
+ test_cmp expect.stderr actual.stderr
+'
+
test_done