From: Santiago Torres Date: Tue, 17 Jan 2017 23:37:23 +0000 (-0500) Subject: t/t7004-tag: Add --format specifier tests X-Git-Tag: v2.12.0-rc0~36^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/4fea72f4f76addb6b49ca4f5b97f66a6bda46985?hp=--cc 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 Signed-off-by: Junio C Hamano --- 4fea72f4f76addb6b49ca4f5b97f66a6bda46985 diff --git a/t/t7004-tag.sh b/t/t7004-tag.sh index 8b0f71a2ac..b53a2e5e41 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