X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=blobdiff_plain;f=tests%2Ftests%2Fdrs-push-rejects;h=3a709472efdb2b3fada31f544cf78eab6db03ee1;hp=9b2a08b46d5362fff27279801d85ff9ef416962c;hb=81e28f0e284a89d8ede573bad8cd494c911099d1;hpb=147d4c3503f1a938cca248d3f23d914ba7eb6c93 diff --git a/tests/tests/drs-push-rejects b/tests/tests/drs-push-rejects index 9b2a08b4..3a709472 100755 --- a/tests/tests/drs-push-rejects +++ b/tests/tests/drs-push-rejects @@ -11,18 +11,17 @@ t-worktree drs cd $p mustfail () { - local wantmsg="$1"; shift - set +e - git push origin "$@" 2>&1 |tee $tmp/mustfail.txt - ps="${PIPESTATUS[*]}" - set -e - case $ps in - "0 0") fail "push unexpectedly succeeded: $*" ;; - *" 0") ;; - *) fail "tee failed" ;; - esac - if ! fgrep "$wantmsg" $tmp/mustfail.txt >/dev/null; then - fail "error message not found" + local mpat="$1"; shift + t-expect-push-fail "$mpat" \ + git push origin "$@" +} + +mustsucceed () { + t-reporefs pre-push + git push origin "$@" + t-reporefs post-push + if diff $tmp/show-refs.{pre,post}-push >$tmp/show-refs.diff; then + fail "no refs updated" fi } @@ -51,6 +50,39 @@ tag_signer='-a' mktag mustfail 'missing signature' $push_spec +git cat-file tag $tag_name >goodtag + +for h in object type tag; do + for how in missing dupe; do + + case $how in + missing) perl -pe 's/^tag /wombat$&/ if 1..m/^$/' badtag ;; + dupe) perl -pe 'print if 1..m/^$/ and m/^'$h' /' badtag ;; + esac + + rm -f badtag.asc + gpg --detach-sign --armor -u Senatus badtag + cat badtag.asc >>badtag + + set +e + LC_MESSAGES=C git hash-object -w -t tag badtag >badtag.hash 2>badtag.err + rc=$? + set -e + + if [ $rc = 128 ] && grep 'fatal: corrupt tag' badtag.err; then + continue + elif [ $rc != 0 ]; then + cat badtag.err + fail "could not make tag" + fi + + read $tmp/suites +mustfail 'unknown suite' $push_spec +cp $root/tests/suites $tmp/. + +# fixme: +# or reject "command string not understood"; +# reject "unknown method" unless $mainfunc; + + prep unstable sid mktag cp $tmp/dm.gpg $tmp/dd.gpg mustfail 'key not found in keyrings' $push_spec prep unstable sid -git push origin $push_spec # succeeds +mktag HEAD~ +mustfail 'tag refers to wrong commit' $push_spec + +prep unstable sid +mktag HEAD~: +mustfail 'tag refers to wrong kind of object' $push_spec + +prep unstable sid +tag_name=debian/wombat +mktag +#git update-ref debian/$version debian/wombat +mustfail 'tag name in tag is wrong' \ + refs/tags/debian/wombat:refs/tags/debian/$version $push_spec1 + +prep unstable sid +mktag +mustsucceed $push_spec # succeeds + mktag -mustfail 'not replacing previously-pushed version' $push_spec +mustfail 'push is missing head ref update' $push_spec1 +$push_spec2 + +git commit --allow-empty -m 'Dummy update' +mktag +mustfail 'not replacing previously-pushed version' +$push_spec1 +$push_spec2 +git reset --hard HEAD~ prep_dm_mangle () { prep unstable sid @@ -90,9 +155,19 @@ prep_dm_mangle () { mktag } +git commit --amend --message 'Make it not a fast forward' +version=3-2_dummy2 +prep unstable sid +mktag +mustfail 'not fast forward on dgit branch' +$push_spec1 +$push_spec2 + git checkout v2 version=3-2_dummy2 +prep_dm_mangle '' +perl -i.bak -ne 'print if 1..s/(pari-extra).*\n/$1/' $tmp/dm.txt +mustfail '' $push_spec # malformed (truncated) dm.txt; don't care about msg + prep_dm_mangle 's/allow:/asponge:/i' mustfail 'missing Allow section in permission' $push_spec @@ -103,6 +178,6 @@ prep_dm_mangle 'y/0-9/5-90-4/ if m/^fingerprint:/i' mustfail "not in permissions list although in keyring" $push_spec prep_dm_mangle '' -git push origin $push_spec # succeeds +mustsucceed $push_spec # succeeds echo ok.