t3700-add.sh 4.7 KB
Newer Older
1 2 3 4 5
#!/bin/sh
#
# Copyright (c) 2006 Carl D. Worth
#

6
test_description='Test of git add, including the -- option.'
7 8 9 10

. ./test-lib.sh

test_expect_success \
11 12
    'Test of git add' \
    'touch foo && git add foo'
13 14 15

test_expect_success \
    'Post-check that foo is in the index' \
16
    'git ls-files foo | grep foo'
17 18

test_expect_success \
19 20
    'Test that "git add -- -q" works' \
    'touch -- -q && git add -- -q'
21

22
test_expect_success \
23
	'git add: Test that executable bit is not used if core.filemode=0' \
24
	'git config core.filemode 0 &&
25 26
	 echo foo >xfoo1 &&
	 chmod 755 xfoo1 &&
27 28
	 git add xfoo1 &&
	 case "`git ls-files --stage xfoo1`" in
29
	 100644" "*xfoo1) echo ok;;
30
	 *) echo fail; git ls-files --stage xfoo1; (exit 1);;
31 32
	 esac'

33
test_expect_success 'git add: filemode=0 should not get confused by symlink' '
34 35
	rm -f xfoo1 &&
	ln -s foo xfoo1 &&
36 37
	git add xfoo1 &&
	case "`git ls-files --stage xfoo1`" in
38
	120000" "*xfoo1) echo ok;;
39
	*) echo fail; git ls-files --stage xfoo1; (exit 1);;
40 41 42
	esac
'

43
test_expect_success \
44
	'git update-index --add: Test that executable bit is not used...' \
45
	'git config core.filemode 0 &&
46 47
	 echo foo >xfoo2 &&
	 chmod 755 xfoo2 &&
48 49
	 git update-index --add xfoo2 &&
	 case "`git ls-files --stage xfoo2`" in
50
	 100644" "*xfoo2) echo ok;;
51
	 *) echo fail; git ls-files --stage xfoo2; (exit 1);;
52 53
	 esac'

54
test_expect_success 'git add: filemode=0 should not get confused by symlink' '
55 56 57
	rm -f xfoo2 &&
	ln -s foo xfoo2 &&
	git update-index --add xfoo2 &&
58
	case "`git ls-files --stage xfoo2`" in
59
	120000" "*xfoo2) echo ok;;
60
	*) echo fail; git ls-files --stage xfoo2; (exit 1);;
61 62 63
	esac
'

64
test_expect_success \
65
	'git update-index --add: Test that executable bit is not used...' \
66
	'git config core.filemode 0 &&
67
	 ln -s xfoo2 xfoo3 &&
68 69
	 git update-index --add xfoo3 &&
	 case "`git ls-files --stage xfoo3`" in
70
	 120000" "*xfoo3) echo ok;;
71
	 *) echo fail; git ls-files --stage xfoo3; (exit 1);;
72 73
	 esac'

J
Junio C Hamano 已提交
74 75 76 77 78 79 80 81 82
test_expect_success '.gitignore test setup' '
	echo "*.ig" >.gitignore &&
	mkdir c.if d.ig &&
	>a.ig && >b.if &&
	>c.if/c.if && >c.if/c.ig &&
	>d.ig/d.if && >d.ig/d.ig
'

test_expect_success '.gitignore is honored' '
83 84
	git add . &&
	! git ls-files | grep "\\.ig"
J
Junio C Hamano 已提交
85 86 87
'

test_expect_success 'error out when attempting to add ignored ones without -f' '
88 89
	! git add a.?? &&
	! git ls-files | grep "\\.ig"
J
Junio C Hamano 已提交
90 91 92
'

test_expect_success 'error out when attempting to add ignored ones without -f' '
93 94
	! git add d.?? &&
	! git ls-files | grep "\\.ig"
J
Junio C Hamano 已提交
95 96 97
'

test_expect_success 'add ignored ones with -f' '
98 99
	git add -f a.?? &&
	git ls-files --error-unmatch a.ig
J
Junio C Hamano 已提交
100 101 102
'

test_expect_success 'add ignored ones with -f' '
103 104
	git add -f d.??/* &&
	git ls-files --error-unmatch d.ig/d.if d.ig/d.ig
J
Junio C Hamano 已提交
105 106
'

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
test_expect_success 'add ignored ones with -f' '
	rm -f .git/index &&
	git add -f d.?? &&
	git ls-files --error-unmatch d.ig/d.if d.ig/d.ig
'

test_expect_success '.gitignore with subdirectory' '

	rm -f .git/index &&
	mkdir -p sub/dir &&
	echo "!dir/a.*" >sub/.gitignore &&
	>sub/a.ig &&
	>sub/dir/a.ig &&
	git add sub/dir &&
	git ls-files --error-unmatch sub/dir/a.ig &&
	rm -f .git/index &&
	(
		cd sub/dir &&
		git add .
	) &&
	git ls-files --error-unmatch sub/dir/a.ig
'

130 131 132
mkdir 1 1/2 1/3
touch 1/2/a 1/3/b 1/2/c
test_expect_success 'check correct prefix detection' '
133
	rm -f .git/index &&
134 135 136
	git add 1/2/a 1/3/b 1/2/c
'

137
test_expect_success 'git add with filemode=0, symlinks=0, and unmerged entries' '
138 139
	for s in 1 2 3
	do
140
		echo $s > stage$s
141
		echo "100755 $(git hash-object -w stage$s) $s	file"
142
		echo "120000 $(printf $s | git hash-object -w -t blob --stdin) $s	symlink"
143 144
	done | git update-index --index-info &&
	git config core.filemode 0 &&
145
	git config core.symlinks 0 &&
146
	echo new > file &&
147 148 149 150
	echo new > symlink &&
	git add file symlink &&
	git ls-files --stage | grep "^100755 .* 0	file$" &&
	git ls-files --stage | grep "^120000 .* 0	symlink$"
151 152
'

153 154
test_expect_success 'git add with filemode=0, symlinks=0 prefers stage 2 over stage 1' '
	git rm --cached -f file symlink &&
155 156 157
	(
		echo "100644 $(git hash-object -w stage1) 1	file"
		echo "100755 $(git hash-object -w stage2) 2	file"
158 159
		echo "100644 $(printf 1 | git hash-object -w -t blob --stdin) 1	symlink"
		echo "120000 $(printf 2 | git hash-object -w -t blob --stdin) 2	symlink"
160 161
	) | git update-index --index-info &&
	git config core.filemode 0 &&
162
	git config core.symlinks 0 &&
163
	echo new > file &&
164 165 166 167
	echo new > symlink &&
	git add file symlink &&
	git ls-files --stage | grep "^100755 .* 0	file$" &&
	git ls-files --stage | grep "^120000 .* 0	symlink$"
168 169
'

170 171 172 173 174 175 176 177 178 179 180 181
test_expect_success 'git add --refresh' '
	>foo && git add foo && git commit -a -m "commit all" &&
	test -z "`git diff-index HEAD -- foo`" &&
	git read-tree HEAD &&
	case "`git diff-index HEAD -- foo`" in
	:100644" "*"M	foo") echo ok;;
	*) echo fail; (exit 1);;
	esac &&
	git add --refresh -- foo &&
	test -z "`git diff-index HEAD -- foo`"
'

182
test_done