mingw: handle GITPERLLIB in t0021 in a Windows-compatible way
[git.git] / t / t7030-verify-tag.sh
blobb4b49eeb08313df8d260a17414a19e7ac2fdc901
1 #!/bin/sh
3 test_description='signed tag tests'
4 . ./test-lib.sh
5 . "$TEST_DIRECTORY/lib-gpg.sh"
7 test_expect_success GPG 'create signed tags' '
8 echo 1 >file && git add file &&
9 test_tick && git commit -m initial &&
10 git tag -s -m initial initial &&
11 git branch side &&
13 echo 2 >file && test_tick && git commit -a -m second &&
14 git tag -s -m second second &&
16 git checkout side &&
17 echo 3 >elif && git add elif &&
18 test_tick && git commit -m "third on side" &&
20 git checkout master &&
21 test_tick && git merge -S side &&
22 git tag -s -m merge merge &&
24 echo 4 >file && test_tick && git commit -a -S -m "fourth unsigned" &&
25 git tag -a -m fourth-unsigned fourth-unsigned &&
27 test_tick && git commit --amend -S -m "fourth signed" &&
28 git tag -s -m fourth fourth-signed &&
30 echo 5 >file && test_tick && git commit -a -m "fifth" &&
31 git tag fifth-unsigned &&
33 git config commit.gpgsign true &&
34 echo 6 >file && test_tick && git commit -a -m "sixth" &&
35 git tag -a -m sixth sixth-unsigned &&
37 test_tick && git rebase -f HEAD^^ && git tag -s -m 6th sixth-signed HEAD^ &&
38 git tag -m seventh -s seventh-signed &&
40 echo 8 >file && test_tick && git commit -a -m eighth &&
41 git tag -uB7227189 -m eighth eighth-signed-alt
44 test_expect_success GPG 'verify and show signatures' '
46 for tag in initial second merge fourth-signed sixth-signed seventh-signed
48 git verify-tag $tag 2>actual &&
49 grep "Good signature from" actual &&
50 ! grep "BAD signature from" actual &&
51 echo $tag OK || exit 1
52 done
53 ) &&
55 for tag in fourth-unsigned fifth-unsigned sixth-unsigned
57 test_must_fail git verify-tag $tag 2>actual &&
58 ! grep "Good signature from" actual &&
59 ! grep "BAD signature from" actual &&
60 echo $tag OK || exit 1
61 done
62 ) &&
64 for tag in eighth-signed-alt
66 git verify-tag $tag 2>actual &&
67 grep "Good signature from" actual &&
68 ! grep "BAD signature from" actual &&
69 grep "not certified" actual &&
70 echo $tag OK || exit 1
71 done
75 test_expect_success GPG 'detect fudged signature' '
76 git cat-file tag seventh-signed >raw &&
77 sed -e "s/seventh/7th forged/" raw >forged1 &&
78 git hash-object -w -t tag forged1 >forged1.tag &&
79 test_must_fail git verify-tag $(cat forged1.tag) 2>actual1 &&
80 grep "BAD signature from" actual1 &&
81 ! grep "Good signature from" actual1
84 test_expect_success GPG 'verify signatures with --raw' '
86 for tag in initial second merge fourth-signed sixth-signed seventh-signed
88 git verify-tag --raw $tag 2>actual &&
89 grep "GOODSIG" actual &&
90 ! grep "BADSIG" actual &&
91 echo $tag OK || exit 1
92 done
93 ) &&
95 for tag in fourth-unsigned fifth-unsigned sixth-unsigned
97 test_must_fail git verify-tag --raw $tag 2>actual &&
98 ! grep "GOODSIG" actual &&
99 ! grep "BADSIG" actual &&
100 echo $tag OK || exit 1
101 done
102 ) &&
104 for tag in eighth-signed-alt
106 git verify-tag --raw $tag 2>actual &&
107 grep "GOODSIG" actual &&
108 ! grep "BADSIG" actual &&
109 grep "TRUST_UNDEFINED" actual &&
110 echo $tag OK || exit 1
111 done
115 test_expect_success GPG 'verify multiple tags' '
116 tags="fourth-signed sixth-signed seventh-signed" &&
117 for i in $tags
119 git verify-tag -v --raw $i || return 1
120 done >expect.stdout 2>expect.stderr.1 &&
121 grep "^.GNUPG:." <expect.stderr.1 >expect.stderr &&
122 git verify-tag -v --raw $tags >actual.stdout 2>actual.stderr.1 &&
123 grep "^.GNUPG:." <actual.stderr.1 >actual.stderr &&
124 test_cmp expect.stdout actual.stdout &&
125 test_cmp expect.stderr actual.stderr
128 test_expect_success GPG 'verifying tag with --format' '
129 cat >expect <<-\EOF &&
130 tagname : fourth-signed
132 git verify-tag --format="tagname : %(tag)" "fourth-signed" >actual &&
133 test_cmp expect actual
136 test_expect_success GPG 'verifying a forged tag with --format should fail silently' '
137 >expect &&
138 test_must_fail git verify-tag --format="tagname : %(tag)" $(cat forged1.tag) >actual-forged &&
139 test_cmp expect actual-forged
142 test_done