summaryrefslogtreecommitdiff
path: root/t/t0020-crlf.sh
blob: 723b29ad17f778f9f9a96682dee1793191b88667 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/bin/sh
 
test_description='CRLF conversion'
 
. ./test-lib.sh
 
append_cr () {
	sed -e 's/$/Q/' | tr Q '\015'
}
 
remove_cr () {
	tr '\015' Q <"$1" | grep Q >/dev/null &&
	tr '\015' Q <"$1" | sed -ne 's/Q$//p'
}
 
test_expect_success setup '
 
	git repo-config core.autocrlf false &&
 
	for w in Hello world how are you; do echo $w; done >one &&
	mkdir dir &&
	for w in I am very very fine thank you; do echo $w; done >dir/two &&
	git add . &&
 
	git commit -m initial &&
 
	one=`git rev-parse HEAD:one` &&
	dir=`git rev-parse HEAD:dir` &&
	two=`git rev-parse HEAD:dir/two` &&
 
	for w in Some extra lines here; do echo $w; done >>one &&
	git diff >patch.file &&
	patched=`git hash-object --stdin <one` &&
	git read-tree --reset -u HEAD &&
 
	echo happy.
'
 
test_expect_success 'update with autocrlf=input' '
 
	rm -f tmp one dir/two &&
	git read-tree --reset -u HEAD &&
	git repo-config core.autocrlf input &&
 
	for f in one dir/two
	do
		append_cr <$f >tmp && mv -f tmp $f &&
		git update-index -- $f || {
			echo Oops
			false
			break
		}
	done &&
 
	differs=`git diff-index --cached HEAD` &&
	test -z "$differs" || {
		echo Oops "$differs"
		false
	}
 
'
 
test_expect_success 'update with autocrlf=true' '
 
	rm -f tmp one dir/two &&
	git read-tree --reset -u HEAD &&
	git repo-config core.autocrlf true &&
 
	for f in one dir/two
	do
		append_cr <$f >tmp && mv -f tmp $f &&
		git update-index -- $f || {
			echo "Oops $f"
			false
			break
		}
	done &&
 
	differs=`git diff-index --cached HEAD` &&
	test -z "$differs" || {
		echo Oops "$differs"
		false
	}
 
'
 
test_expect_success 'checkout with autocrlf=true' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf true &&
	git read-tree --reset -u HEAD &&
 
	for f in one dir/two
	do
		remove_cr "$f" >tmp && mv -f tmp $f &&
		git update-index -- $f || {
			echo "Eh? $f"
			false
			break
		}
	done &&
	test "$one" = `git hash-object --stdin <one` &&
	test "$two" = `git hash-object --stdin <dir/two` &&
	differs=`git diff-index --cached HEAD` &&
	test -z "$differs" || {
		echo Oops "$differs"
		false
	}
'
 
test_expect_success 'checkout with autocrlf=input' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf input &&
	git read-tree --reset -u HEAD &&
 
	for f in one dir/two
	do
		if remove_cr "$f" >/dev/null
		then
			echo "Eh? $f"
			false
			break
		else
			git update-index -- $f
		fi
	done &&
	test "$one" = `git hash-object --stdin <one` &&
	test "$two" = `git hash-object --stdin <dir/two` &&
	differs=`git diff-index --cached HEAD` &&
	test -z "$differs" || {
		echo Oops "$differs"
		false
	}
'
 
test_expect_success 'apply patch (autocrlf=input)' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf input &&
	git read-tree --reset -u HEAD &&
 
	git apply patch.file &&
	test "$patched" = "`git hash-object --stdin <one`" || {
		echo "Eh?  apply without index"
		false
	}
'
 
test_expect_success 'apply patch --cached (autocrlf=input)' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf input &&
	git read-tree --reset -u HEAD &&
 
	git apply --cached patch.file &&
	test "$patched" = `git rev-parse :one` || {
		echo "Eh?  apply with --cached"
		false
	}
'
 
test_expect_success 'apply patch --index (autocrlf=input)' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf input &&
	git read-tree --reset -u HEAD &&
 
	git apply --index patch.file &&
	test "$patched" = `git rev-parse :one` &&
	test "$patched" = `git hash-object --stdin <one` || {
		echo "Eh?  apply with --index"
		false
	}
'
 
test_expect_success 'apply patch (autocrlf=true)' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf true &&
	git read-tree --reset -u HEAD &&
 
	git apply patch.file &&
	test "$patched" = "`remove_cr one | git hash-object --stdin`" || {
		echo "Eh?  apply without index"
		false
	}
'
 
test_expect_success 'apply patch --cached (autocrlf=true)' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf true &&
	git read-tree --reset -u HEAD &&
 
	git apply --cached patch.file &&
	test "$patched" = `git rev-parse :one` || {
		echo "Eh?  apply without index"
		false
	}
'
 
test_expect_success 'apply patch --index (autocrlf=true)' '
 
	rm -f tmp one dir/two &&
	git repo-config core.autocrlf true &&
	git read-tree --reset -u HEAD &&
 
	git apply --index patch.file &&
	test "$patched" = `git rev-parse :one` &&
	test "$patched" = "`remove_cr one | git hash-object --stdin`" || {
		echo "Eh?  apply with --index"
		false
	}
'
 
test_done