summaryrefslogtreecommitdiff
path: root/tests/tests/drs-push-rejects
blob: 10c10bf60b402c70a0aad68686639ae8161ecbac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
set -e
. tests/lib

t-drs
t-git-none

p=pari-extra
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"
	fi
}

mktag1 () {
	local suite=$1
	local csuite=$2
	tag_signer='-u Senatus'
	tag_message="$p release $version for $suite ($csuite) [dgit]"
	tag_name=debian/3-2_dummy1
	push_spec1="HEAD:refs/dgit/$csuite"
	push_spec2="refs/tags/$tag_name"
	push_spec="$push_spec1 $push_spec2"
}
mktag2 () {
	git tag -f $tag_signer -m "$tag_message" $tag_name "$@"
}


version=3-2_dummy1

mktag1 unstable sid
tag_signer='-a'
mktag2
mustfail 'missing signature' $push_spec

mktag1 unstable sid
tag_message='something'
mktag2
mustfail 'tag message not in expected format' $push_spec

mktag1 unstable sid
mktag2

mustfail 'sid != sponge' HEAD:refs/dgit/sponge $push_spec2

git push origin $push_spec

mktag2

mustfail 'not replacing previously-pushed version' $push_spec

echo ok.