blob: b3814cdb42f380f234f3fb423cabc5c634f1c854 [file] [log] [blame]
Junio C Hamanof87f9492005-07-24 15:26:09 -07001#!/bin/sh
2#
3# Copyright (c) 2005 Junio C Hamano
4#
5
Junio C Hamano5be60072007-07-02 22:52:14 -07006test_description='git ls-files --others --exclude
Junio C Hamanof87f9492005-07-24 15:26:09 -07007
Junio C Hamano5be60072007-07-02 22:52:14 -07008This test runs git ls-files --others and tests --exclude patterns.
Junio C Hamanof87f9492005-07-24 15:26:09 -07009'
10
11. ./test-lib.sh
12
13rm -fr one three
14for dir in . one one/two three
15do
16 mkdir -p $dir &&
Junio C Hamano1df092d2005-07-28 23:53:29 -070017 for i in 1 2 3 4 5 6 7 8
Junio C Hamanof87f9492005-07-24 15:26:09 -070018 do
19 >$dir/a.$i
20 done
21done
Finn Arne Gangstaddd482ee2009-02-10 15:20:17 +010022>"#ignore1"
23>"#ignore2"
24>"#hidden"
Junio C Hamanof87f9492005-07-24 15:26:09 -070025
26cat >expect <<EOF
27a.2
28a.4
29a.5
Junio C Hamano1df092d2005-07-28 23:53:29 -070030a.8
Junio C Hamanof87f9492005-07-24 15:26:09 -070031one/a.3
32one/a.4
33one/a.5
Junio C Hamano1df092d2005-07-28 23:53:29 -070034one/a.7
35one/two/a.2
Junio C Hamanof87f9492005-07-24 15:26:09 -070036one/two/a.3
37one/two/a.5
Junio C Hamano1df092d2005-07-28 23:53:29 -070038one/two/a.7
39one/two/a.8
Junio C Hamanof87f9492005-07-24 15:26:09 -070040three/a.2
41three/a.3
42three/a.4
43three/a.5
Junio C Hamano1df092d2005-07-28 23:53:29 -070044three/a.8
Junio C Hamanof87f9492005-07-24 15:26:09 -070045EOF
46
47echo '.gitignore
Finn Arne Gangstaddd482ee2009-02-10 15:20:17 +010048\#ignore1
49\#ignore2*
50\#hid*n
Junio C Hamanof87f9492005-07-24 15:26:09 -070051output
52expect
53.gitignore
Junio C Hamano1df092d2005-07-28 23:53:29 -070054*.7
55!*.8' >.git/ignore
Junio C Hamanof87f9492005-07-24 15:26:09 -070056
57echo '*.1
Junio C Hamano1df092d2005-07-28 23:53:29 -070058/*.3
59!*.6' >.gitignore
Junio C Hamanof87f9492005-07-24 15:26:09 -070060echo '*.2
Junio C Hamano1df092d2005-07-28 23:53:29 -070061two/*.4
62!*.7
63*.8' >one/.gitignore
64echo '!*.2
65!*.8' >one/two/.gitignore
Junio C Hamanof87f9492005-07-24 15:26:09 -070066
Nguyễn Thái Ngọc Duyc28b3d62009-08-20 20:47:01 +070067allignores='.gitignore one/.gitignore one/two/.gitignore'
68
Junio C Hamanof87f9492005-07-24 15:26:09 -070069test_expect_success \
Junio C Hamano5be60072007-07-02 22:52:14 -070070 'git ls-files --others with various exclude options.' \
71 'git ls-files --others \
Junio C Hamano1df092d2005-07-28 23:53:29 -070072 --exclude=\*.6 \
Junio C Hamanof87f9492005-07-24 15:26:09 -070073 --exclude-per-directory=.gitignore \
74 --exclude-from=.git/ignore \
75 >output &&
Junio C Hamano3af82862008-05-23 22:28:56 -070076 test_cmp expect output'
Pavel Roskinda7bc9b2005-08-10 22:15:02 -040077
Alex Riesend317e432005-11-02 14:05:45 +010078# Test \r\n (MSDOS-like systems)
Alex Riesen0dbc4e82006-02-12 19:05:34 +010079printf '*.1\r\n/*.3\r\n!*.6\r\n' >.gitignore
Alex Riesend317e432005-11-02 14:05:45 +010080
81test_expect_success \
Junio C Hamano5be60072007-07-02 22:52:14 -070082 'git ls-files --others with \r\n line endings.' \
83 'git ls-files --others \
Alex Riesend317e432005-11-02 14:05:45 +010084 --exclude=\*.6 \
85 --exclude-per-directory=.gitignore \
86 --exclude-from=.git/ignore \
87 >output &&
Junio C Hamano3af82862008-05-23 22:28:56 -070088 test_cmp expect output'
Alex Riesend317e432005-11-02 14:05:45 +010089
Nguyễn Thái Ngọc Duyc28b3d62009-08-20 20:47:01 +070090test_expect_success 'setup skip-worktree gitignore' '
91 git add $allignores &&
92 git update-index --skip-worktree $allignores &&
93 rm $allignores
94'
95
96test_expect_success \
97 'git ls-files --others with various exclude options.' \
98 'git ls-files --others \
99 --exclude=\*.6 \
100 --exclude-per-directory=.gitignore \
101 --exclude-from=.git/ignore \
102 >output &&
103 test_cmp expect output'
104
105test_expect_success 'restore gitignore' '
106 git checkout $allignores &&
107 rm .git/index
108'
109
Finn Arne Gangstaddd482ee2009-02-10 15:20:17 +0100110cat > excludes-file <<\EOF
Johannes Schindelin0ba956d2007-05-22 01:12:17 +0100111*.[1-8]
112e*
Finn Arne Gangstaddd482ee2009-02-10 15:20:17 +0100113\#*
Johannes Schindelin0ba956d2007-05-22 01:12:17 +0100114EOF
115
Junio C Hamano5be60072007-07-02 22:52:14 -0700116git config core.excludesFile excludes-file
Johannes Schindelin0ba956d2007-05-22 01:12:17 +0100117
Johannes Schindelin637efc32007-11-15 06:27:57 +0000118git status | grep "^# " > output
Johannes Schindelin0ba956d2007-05-22 01:12:17 +0100119
120cat > expect << EOF
121# .gitignore
122# a.6
123# one/
124# output
125# three/
126EOF
127
Nanako Shiraishi0cb0e142008-09-03 17:59:27 +0900128test_expect_success 'git status honors core.excludesfile' \
Jeff King82ebb0b2008-03-12 17:36:36 -0400129 'test_cmp expect output'
Johannes Schindelin0ba956d2007-05-22 01:12:17 +0100130
Junio C Hamanod6b8fc32008-01-31 01:17:48 -0800131test_expect_success 'trailing slash in exclude allows directory match(1)' '
132
133 git ls-files --others --exclude=one/ >output &&
134 if grep "^one/" output
135 then
136 echo Ooops
137 false
138 else
139 : happy
140 fi
141
142'
143
144test_expect_success 'trailing slash in exclude allows directory match (2)' '
145
146 git ls-files --others --exclude=one/two/ >output &&
147 if grep "^one/two/" output
148 then
149 echo Ooops
150 false
151 else
152 : happy
153 fi
154
155'
156
157test_expect_success 'trailing slash in exclude forces directory match (1)' '
158
Jonathan Niedera48fcd82010-10-30 20:46:54 -0500159 >two &&
Junio C Hamanod6b8fc32008-01-31 01:17:48 -0800160 git ls-files --others --exclude=two/ >output &&
161 grep "^two" output
162
163'
164
165test_expect_success 'trailing slash in exclude forces directory match (2)' '
166
167 git ls-files --others --exclude=one/a.1/ >output &&
168 grep "^one/a.1" output
169
170'
171
Michael J Gruber32738ed2008-12-18 18:11:18 +0100172test_expect_success 'negated exclude matches can override previous ones' '
173
174 git ls-files --others --exclude="a.*" --exclude="!a.1" >output &&
175 grep "^a.1" output
176'
177
Karsten Bleesc3c327d2013-05-29 22:32:36 +0200178test_expect_success 'excluded directory overrides content patterns' '
179
180 git ls-files --others --exclude="one" --exclude="!one/a.1" >output &&
181 if grep "^one/a.1" output
182 then
183 false
184 fi
185'
186
187test_expect_success 'negated directory doesn'\''t affect content patterns' '
188
189 git ls-files --others --exclude="!one" --exclude="one/a.1" >output &&
190 if grep "^one/a.1" output
191 then
192 false
193 fi
194'
195
Junio C Hamano472e7462010-01-08 23:07:17 -0800196test_expect_success 'subdirectory ignore (setup)' '
197 mkdir -p top/l1/l2 &&
198 (
199 cd top &&
200 git init &&
201 echo /.gitignore >.gitignore &&
202 echo l1 >>.gitignore &&
203 echo l2 >l1/.gitignore &&
204 >l1/l2/l1
205 )
206'
207
208test_expect_success 'subdirectory ignore (toplevel)' '
209 (
210 cd top &&
211 git ls-files -o --exclude-standard
212 ) >actual &&
213 >expect &&
214 test_cmp expect actual
215'
216
217test_expect_success 'subdirectory ignore (l1/l2)' '
218 (
219 cd top/l1/l2 &&
220 git ls-files -o --exclude-standard
221 ) >actual &&
222 >expect &&
223 test_cmp expect actual
224'
225
Junio C Hamano48ffef92010-01-08 23:05:41 -0800226test_expect_success 'subdirectory ignore (l1)' '
Junio C Hamano472e7462010-01-08 23:07:17 -0800227 (
228 cd top/l1 &&
229 git ls-files -o --exclude-standard
230 ) >actual &&
231 >expect &&
232 test_cmp expect actual
233'
234
Karsten Blees184d2a82013-04-15 21:08:02 +0200235test_expect_success 'show/hide empty ignored directory (setup)' '
236 rm top/l1/l2/l1 &&
237 rm top/l1/.gitignore
238'
239
240test_expect_success 'show empty ignored directory with --directory' '
241 (
242 cd top &&
243 git ls-files -o -i --exclude l1 --directory
244 ) >actual &&
245 echo l1/ >expect &&
246 test_cmp expect actual
247'
248
249test_expect_success 'hide empty ignored directory with --no-empty-directory' '
250 (
251 cd top &&
252 git ls-files -o -i --exclude l1 --directory --no-empty-directory
253 ) >actual &&
254 >expect &&
255 test_cmp expect actual
256'
257
Karsten Blees5bd8e2d2013-04-15 21:10:05 +0200258test_expect_success 'show/hide empty ignored sub-directory (setup)' '
259 > top/l1/tracked &&
260 (
261 cd top &&
262 git add -f l1/tracked
263 )
264'
265
266test_expect_success 'show empty ignored sub-directory with --directory' '
267 (
268 cd top &&
269 git ls-files -o -i --exclude l1 --directory
270 ) >actual &&
271 echo l1/l2/ >expect &&
272 test_cmp expect actual
273'
274
275test_expect_success 'hide empty ignored sub-directory with --no-empty-directory' '
276 (
277 cd top &&
278 git ls-files -o -i --exclude l1 --directory --no-empty-directory
279 ) >actual &&
280 >expect &&
281 test_cmp expect actual
282'
283
Nguyễn Thái Ngọc Duya3ea4d72012-10-15 13:24:36 +0700284test_expect_success 'pattern matches prefix completely' '
285 : >expect &&
286 git ls-files -i -o --exclude "/three/a.3[abc]" >actual &&
287 test_cmp expect actual
288'
289
Nguyễn Thái Ngọc Duy237ec6e2012-10-15 13:26:02 +0700290test_expect_success 'ls-files with "**" patterns' '
291 cat <<\EOF >expect &&
292a.1
293one/a.1
294one/two/a.1
295three/a.1
296EOF
297 git ls-files -o -i --exclude "**/a.1" >actual
298 test_cmp expect actual
299'
300
301
302test_expect_success 'ls-files with "**" patterns and no slashes' '
303 : >expect &&
304 git ls-files -o -i --exclude "one**a.1" >actual &&
305 test_cmp expect actual
306'
307
Pavel Roskinda7bc9b2005-08-10 22:15:02 -0400308test_done