aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorSantiago Torres <santiago@nyu.edu>2017-01-17 18:37:22 -0500
committerJunio C Hamano <gitster@pobox.com>2017-01-18 11:27:56 -0800
commit02c5433e1620e49daa48c7ca0b30b80a39ec08ad (patch)
treeafae555341a825b2ae4684681e69293186c72b33 /t
parent07d347cf9ac13c3d1746ae368f6e72afbe82dc15 (diff)
downloadgit-02c5433e1620e49daa48c7ca0b30b80a39ec08ad.tar.gz
git-02c5433e1620e49daa48c7ca0b30b80a39ec08ad.tar.xz
t/t7030-verify-tag: Add --format specifier tests
Verify-tag now provides --format specifiers to inspect and ensure the contents of the tag are proper. We add two tests to ensure this functionality works as expected: the return value should indicate if verification passed, and the format specifiers must be respected. Signed-off-by: Santiago Torres <santiago@nyu.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t7030-verify-tag.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/t7030-verify-tag.sh b/t/t7030-verify-tag.sh
index 07079a41c..d62ccbb98 100755
--- a/t/t7030-verify-tag.sh
+++ b/t/t7030-verify-tag.sh
@@ -125,4 +125,20 @@ test_expect_success GPG 'verify multiple tags' '
test_cmp expect.stderr actual.stderr
'
+test_expect_success 'verifying tag with --format' '
+ cat >expect <<-\EOF
+ tagname : fourth-signed
+ EOF &&
+ git verify-tag --format="tagname : %(tag)" "fourth-signed" >actual &&
+ test_cmp expect actual
+'
+
+test_expect_success 'verifying a forged tag with --format fail and format accordingly' '
+ cat >expect <<-\EOF
+ tagname : 7th forged-signed
+ EOF &&
+ test_must_fail git verify-tag --format="tagname : %(tag)" $(cat forged1.tag) >actual-forged &&
+ test_cmp expect actual-forged
+'
+
test_done