wildmatch test: indent with tabs, not spaces
[git.git] / t / t6018-rev-list-glob.sh
blobd3453c583c1921a10409c16b5e2cf949edde6cd2
1 #!/bin/sh
3 test_description='rev-list/rev-parse --glob'
5 . ./test-lib.sh
7 commit () {
8 test_tick &&
9 echo $1 > foo &&
10 git add foo &&
11 git commit -m "$1"
14 compare () {
15 # Split arguments on whitespace.
16 git $1 $2 >expected &&
17 git $1 $3 >actual &&
18 test_cmp expected actual
21 test_expect_success 'setup' '
23 commit master &&
24 git checkout -b subspace/one master &&
25 commit one &&
26 git checkout -b subspace/two master &&
27 commit two &&
28 git checkout -b subspace-x master &&
29 commit subspace-x &&
30 git checkout -b other/three master &&
31 commit three &&
32 git checkout -b someref master &&
33 commit some &&
34 git checkout master &&
35 commit master2 &&
36 git tag foo/bar master &&
37 commit master3 &&
38 git update-ref refs/remotes/foo/baz master &&
39 commit master4
42 test_expect_success 'rev-parse --glob=refs/heads/subspace/*' '
44 compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/*"
48 test_expect_success 'rev-parse --glob=heads/subspace/*' '
50 compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/*"
54 test_expect_success 'rev-parse --glob=refs/heads/subspace/' '
56 compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/"
60 test_expect_success 'rev-parse --glob=heads/subspace/' '
62 compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/"
66 test_expect_success 'rev-parse --glob=heads/subspace' '
68 compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace"
72 test_expect_failure 'rev-parse accepts --glob as detached option' '
74 compare rev-parse "subspace/one subspace/two" "--glob heads/subspace"
78 test_expect_failure 'rev-parse is not confused by option-like glob' '
80 compare rev-parse "master" "--glob --symbolic master"
84 test_expect_success 'rev-parse --branches=subspace/*' '
86 compare rev-parse "subspace/one subspace/two" "--branches=subspace/*"
90 test_expect_success 'rev-parse --branches=subspace/' '
92 compare rev-parse "subspace/one subspace/two" "--branches=subspace/"
96 test_expect_success 'rev-parse --branches=subspace' '
98 compare rev-parse "subspace/one subspace/two" "--branches=subspace"
102 test_expect_success 'rev-parse --glob=heads/subspace/* --glob=heads/other/*' '
104 compare rev-parse "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*"
108 test_expect_success 'rev-parse --glob=heads/someref/* master' '
110 compare rev-parse "master" "--glob=heads/someref/* master"
114 test_expect_success 'rev-parse --glob=heads/*' '
116 compare rev-parse "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
120 test_expect_success 'rev-parse --tags=foo' '
122 compare rev-parse "foo/bar" "--tags=foo"
126 test_expect_success 'rev-parse --remotes=foo' '
128 compare rev-parse "foo/baz" "--remotes=foo"
132 test_expect_success 'rev-parse --exclude with --branches' '
133 compare rev-parse "--exclude=*/* --branches" "master someref subspace-x"
136 test_expect_success 'rev-parse --exclude with --all' '
137 compare rev-parse "--exclude=refs/remotes/* --all" "--branches --tags"
140 test_expect_success 'rev-parse accumulates multiple --exclude' '
141 compare rev-parse "--exclude=refs/remotes/* --exclude=refs/tags/* --all" --branches
144 test_expect_success 'rev-list --glob=refs/heads/subspace/*' '
146 compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/*"
150 test_expect_success 'rev-list --glob refs/heads/subspace/*' '
152 compare rev-list "subspace/one subspace/two" "--glob refs/heads/subspace/*"
156 test_expect_success 'rev-list not confused by option-like --glob arg' '
158 compare rev-list "master" "--glob -0 master"
162 test_expect_success 'rev-list --glob=heads/subspace/*' '
164 compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/*"
168 test_expect_success 'rev-list --glob=refs/heads/subspace/' '
170 compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/"
174 test_expect_success 'rev-list --glob=heads/subspace/' '
176 compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/"
180 test_expect_success 'rev-list --glob=heads/subspace' '
182 compare rev-list "subspace/one subspace/two" "--glob=heads/subspace"
186 test_expect_success 'rev-list --branches=subspace/*' '
188 compare rev-list "subspace/one subspace/two" "--branches=subspace/*"
192 test_expect_success 'rev-list --branches=subspace/' '
194 compare rev-list "subspace/one subspace/two" "--branches=subspace/"
198 test_expect_success 'rev-list --branches=subspace' '
200 compare rev-list "subspace/one subspace/two" "--branches=subspace"
204 test_expect_success 'rev-list --branches' '
206 compare rev-list "master subspace-x someref other/three subspace/one subspace/two" "--branches"
210 test_expect_success 'rev-list --glob=heads/someref/* master' '
212 compare rev-list "master" "--glob=heads/someref/* master"
216 test_expect_success 'rev-list --glob=heads/subspace/* --glob=heads/other/*' '
218 compare rev-list "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*"
222 test_expect_success 'rev-list --glob=heads/*' '
224 compare rev-list "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
228 test_expect_success 'rev-list --tags=foo' '
230 compare rev-list "foo/bar" "--tags=foo"
234 test_expect_success 'rev-list --tags' '
236 compare rev-list "foo/bar" "--tags"
240 test_expect_success 'rev-list --remotes=foo' '
242 compare rev-list "foo/baz" "--remotes=foo"
246 test_expect_success 'rev-list --exclude with --branches' '
247 compare rev-list "--exclude=*/* --branches" "master someref subspace-x"
250 test_expect_success 'rev-list --exclude with --all' '
251 compare rev-list "--exclude=refs/remotes/* --all" "--branches --tags"
254 test_expect_success 'rev-list accumulates multiple --exclude' '
255 compare rev-list "--exclude=refs/remotes/* --exclude=refs/tags/* --all" --branches
258 test_expect_failure 'rev-list should succeed with empty output on empty stdin' '
259 >expect &&
260 git rev-list --stdin <expect >actual &&
261 test_cmp expect actual
264 test_expect_success 'rev-list should succeed with empty output with all refs excluded' '
265 >expect &&
266 git rev-list --exclude=* --all >actual &&
267 test_cmp expect actual
270 test_expect_success 'rev-list should succeed with empty output with empty --all' '
272 test_create_repo empty &&
273 cd empty &&
274 >expect &&
275 git rev-list --all >actual &&
276 test_cmp expect actual
280 test_expect_success 'rev-list should succeed with empty output with empty glob' '
281 >expect &&
282 git rev-list --glob=does-not-match-anything >actual &&
283 test_cmp expect actual
286 test_expect_success 'shortlog accepts --glob/--tags/--remotes' '
288 compare shortlog "subspace/one subspace/two" --branches=subspace &&
289 compare shortlog \
290 "master subspace-x someref other/three subspace/one subspace/two" \
291 --branches &&
292 compare shortlog master "--glob=heads/someref/* master" &&
293 compare shortlog "subspace/one subspace/two other/three" \
294 "--glob=heads/subspace/* --glob=heads/other/*" &&
295 compare shortlog \
296 "master other/three someref subspace-x subspace/one subspace/two" \
297 "--glob=heads/*" &&
298 compare shortlog foo/bar --tags=foo &&
299 compare shortlog foo/bar --tags &&
300 compare shortlog foo/baz --remotes=foo
304 test_expect_failure 'shortlog accepts --glob as detached option' '
306 compare shortlog \
307 "master other/three someref subspace-x subspace/one subspace/two" \
308 "--glob heads/*"
312 test_expect_failure 'shortlog --glob is not confused by option-like argument' '
314 compare shortlog master "--glob -e master"
318 test_done