summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorSantiago Torres <santiago@nyu.edu>2017-01-17 23:37:23 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-01-18 19:27:56 (GMT)
commit4fea72f4f76addb6b49ca4f5b97f66a6bda46985 (patch)
treec155f830f708fbf2e376e1f46b3238abfb9e1bd8 /t
parent02c5433e1620e49daa48c7ca0b30b80a39ec08ad (diff)
downloadgit-4fea72f4f76addb6b49ca4f5b97f66a6bda46985.zip
git-4fea72f4f76addb6b49ca4f5b97f66a6bda46985.tar.gz
git-4fea72f4f76addb6b49ca4f5b97f66a6bda46985.tar.bz2
t/t7004-tag: Add --format specifier tests
tag -v now supports --format specifiers to inspect the contents of a tag upon verification. Add two tests to ensure this behavior is respected in future changes. Signed-off-by: Santiago Torres <santiago@nyu.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t7004-tag.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh
index 8b0f71a..b53a2e5 100755
--- a/t/t7004-tag.sh
+++ b/t/t7004-tag.sh
@@ -847,6 +847,22 @@ test_expect_success GPG 'verifying a forged tag should fail' '
test_must_fail git tag -v forged-tag
'
+test_expect_success 'verifying a proper tag with --format pass and format accordingly' '
+ cat >expect <<-\EOF
+ tagname : signed-tag
+ EOF &&
+ git tag -v --format="tagname : %(tag)" "signed-tag" >actual &&
+ test_cmp expect actual
+'
+
+test_expect_success 'verifying a forged tag with --format fail and format accordingly' '
+ cat >expect <<-\EOF
+ tagname : forged-tag
+ EOF &&
+ test_must_fail git tag -v --format="tagname : %(tag)" "forged-tag" >actual &&
+ test_cmp expect actual
+'
+
# blank and empty messages for signed tags:
get_tag_header empty-signed-tag $commit commit $time >expect