t3700-add.sh 3.9 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
mkdir 1 1/2 1/3
touch 1/2/a 1/3/b 1/2/c
test_expect_success 'check correct prefix detection' '
	git add 1/2/a 1/3/b 1/2/c
'

113
test_expect_success 'git add with filemode=0, symlinks=0, and unmerged entries' '
114 115
	for s in 1 2 3
	do
116
		echo $s > stage$s
117
		echo "100755 $(git hash-object -w stage$s) $s	file"
118
		echo "120000 $(printf $s | git hash-object -w -t blob --stdin) $s	symlink"
119 120
	done | git update-index --index-info &&
	git config core.filemode 0 &&
121
	git config core.symlinks 0 &&
122
	echo new > file &&
123 124 125 126
	echo new > symlink &&
	git add file symlink &&
	git ls-files --stage | grep "^100755 .* 0	file$" &&
	git ls-files --stage | grep "^120000 .* 0	symlink$"
127 128
'

129 130
test_expect_success 'git add with filemode=0, symlinks=0 prefers stage 2 over stage 1' '
	git rm --cached -f file symlink &&
131 132 133
	(
		echo "100644 $(git hash-object -w stage1) 1	file"
		echo "100755 $(git hash-object -w stage2) 2	file"
134 135
		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"
136 137
	) | git update-index --index-info &&
	git config core.filemode 0 &&
138
	git config core.symlinks 0 &&
139
	echo new > file &&
140 141 142 143
	echo new > symlink &&
	git add file symlink &&
	git ls-files --stage | grep "^100755 .* 0	file$" &&
	git ls-files --stage | grep "^120000 .* 0	symlink$"
144 145
'

146
test_done