3 test_description='signed push'
6 . "$TEST_DIRECTORY"/lib-gpg.sh
10 test_create_repo dst &&
12 git push dst master:noop master:ff master:noff
15 test_expect_success setup '
16 # master, ff and noff branches pointing at the same commit
18 git commit --allow-empty -m initial &&
20 git checkout -b noop &&
22 git checkout -b noff &&
24 # noop stays the same, ff advances, noff rewrites
26 git commit --allow-empty --amend -m rewritten &&
30 git commit --allow-empty -m second
33 test_expect_success 'unsigned push does not send push certificate' '
35 mkdir -p dst/.git/hooks &&
36 write_script dst/.git/hooks/post-receive <<-\EOF &&
37 # discard the update list
39 # record the push certificate
40 if test -n "${GIT_PUSH_CERT-}"
42 git cat-file blob $GIT_PUSH_CERT >../push-cert
46 git push dst noop ff +noff &&
47 ! test -f dst/push-cert
50 test_expect_success 'talking with a receiver without push certificate support' '
52 mkdir -p dst/.git/hooks &&
53 git -C dst config receive.acceptpushcert no &&
54 write_script dst/.git/hooks/post-receive <<-\EOF &&
55 # discard the update list
57 # record the push certificate
58 if test -n "${GIT_PUSH_CERT-}"
60 git cat-file blob $GIT_PUSH_CERT >../push-cert
64 git push dst noop ff +noff &&
65 ! test -f dst/push-cert
68 test_expect_success 'push --signed fails with a receiver without push certificate support' '
70 mkdir -p dst/.git/hooks &&
71 git -C dst config receive.acceptpushcert no &&
72 test_must_fail git push --signed dst noop ff +noff 2>err &&
73 test_i18ngrep "the receiving end does not support" err
76 test_expect_success GPG 'signed push sends push certificate' '
78 mkdir -p dst/.git/hooks &&
79 write_script dst/.git/hooks/post-receive <<-\EOF &&
80 # discard the update list
82 # record the push certificate
83 if test -n "${GIT_PUSH_CERT-}"
85 git cat-file blob $GIT_PUSH_CERT >../push-cert
89 git push --signed dst noop ff +noff &&
90 grep "$(git rev-parse noop ff) refs/heads/ff" dst/push-cert &&
91 grep "$(git rev-parse noop noff) refs/heads/noff" dst/push-cert