summaryrefslogtreecommitdiff
path: root/t/t7008-filter-branch-null-sha1.sh
blob: 9ba9f24ad2fb4bd2c38a722e62577789fe36f09a (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
#!/bin/sh
 
test_description='filter-branch removal of trees with null sha1'
. ./test-lib.sh
 
test_expect_success 'setup: base commits' '
	test_commit one &&
	test_commit two &&
	test_commit three
'
 
test_expect_success 'setup: a commit with a bogus null sha1 in the tree' '
	{
		git ls-tree HEAD &&
		printf "160000 commit $ZERO_OID\\tbroken\\n"
	} >broken-tree &&
	echo "add broken entry" >msg &&
 
	tree=$(git mktree <broken-tree) &&
	test_tick &&
	commit=$(git commit-tree $tree -p HEAD <msg) &&
	git update-ref HEAD "$commit"
'
 
# we have to make one more commit on top removing the broken
# entry, since otherwise our index does not match HEAD (and filter-branch will
# complain). We could make the index match HEAD, but doing so would involve
# writing a null sha1 into the index.
test_expect_success 'setup: bring HEAD and index in sync' '
	test_tick &&
	git commit -a -m "back to normal"
'
 
test_expect_success 'noop filter-branch complains' '
	test_must_fail git filter-branch \
		--force --prune-empty \
		--index-filter "true"
'
 
test_expect_success 'filter commands are still checked' '
	test_must_fail git filter-branch \
		--force --prune-empty \
		--index-filter "git rm --cached --ignore-unmatch three.t"
'
 
test_expect_success 'removing the broken entry works' '
	echo three >expect &&
	git filter-branch \
		--force --prune-empty \
		--index-filter "git rm --cached --ignore-unmatch broken" &&
	git log -1 --format=%s >actual &&
	test_cmp expect actual
'
 
test_done