summaryrefslogtreecommitdiff
path: root/t/t5501-post-upload-pack.sh
blob: d89fb51bad36acd9affc862a5086674aad5847d9 (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
68
69
#!/bin/sh
 
test_description='post upload-hook'
 
. ./test-lib.sh
 
LOGFILE=".git/post-upload-pack-log"
 
test_expect_success setup '
	test_commit A &&
	test_commit B &&
	git reset --hard A &&
	test_commit C &&
	git branch prev B &&
	mkdir -p .git/hooks &&
	{
		echo "#!$SHELL_PATH" &&
		echo "cat >post-upload-pack-log"
	} >".git/hooks/post-upload-pack" &&
	chmod +x .git/hooks/post-upload-pack
'
 
test_expect_success initial '
	rm -fr sub &&
	git init sub &&
	(
		cd sub &&
		git fetch --no-tags .. prev
	) &&
	want=$(sed -n "s/^want //p" "$LOGFILE") &&
	test "$want" = "$(git rev-parse --verify B)" &&
	! grep "^have " "$LOGFILE" &&
	kind=$(sed -n "s/^kind //p" "$LOGFILE") &&
	test "$kind" = fetch
'
 
test_expect_success second '
	rm -fr sub &&
	git init sub &&
	(
		cd sub &&
		git fetch --no-tags .. prev:refs/remotes/prev &&
		git fetch --no-tags .. master
	) &&
	want=$(sed -n "s/^want //p" "$LOGFILE") &&
	test "$want" = "$(git rev-parse --verify C)" &&
	have=$(sed -n "s/^have //p" "$LOGFILE") &&
	test "$have" = "$(git rev-parse --verify B)" &&
	kind=$(sed -n "s/^kind //p" "$LOGFILE") &&
	test "$kind" = fetch
'
 
test_expect_success all '
	rm -fr sub &&
	HERE=$(pwd) &&
	git init sub &&
	(
		cd sub &&
		git clone "file://$HERE/.git" new
	) &&
	sed -n "s/^want //p" "$LOGFILE" | sort >actual &&
	git rev-parse A B C | sort >expect &&
	test_cmp expect actual &&
	! grep "^have " "$LOGFILE" &&
	kind=$(sed -n "s/^kind //p" "$LOGFILE") &&
	test "$kind" = clone
'
 
test_done