]> git.ipfire.org Git - thirdparty/git.git/blob - t/t6018-rev-list-glob.sh
rev-list --exclude: export add/clear-ref-exclusion and ref-excluded API
[thirdparty/git.git] / t / t6018-rev-list-glob.sh
1 #!/bin/sh
2
3 test_description='rev-list/rev-parse --glob'
4
5 . ./test-lib.sh
6
7 commit () {
8 test_tick &&
9 echo $1 > foo &&
10 git add foo &&
11 git commit -m "$1"
12 }
13
14 compare () {
15 # Split arguments on whitespace.
16 git $1 $2 >expected &&
17 git $1 $3 >actual &&
18 test_cmp expected actual
19 }
20
21 test_expect_success 'setup' '
22
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
40 '
41
42 test_expect_success 'rev-parse --glob=refs/heads/subspace/*' '
43
44 compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/*"
45
46 '
47
48 test_expect_success 'rev-parse --glob=heads/subspace/*' '
49
50 compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/*"
51
52 '
53
54 test_expect_success 'rev-parse --glob=refs/heads/subspace/' '
55
56 compare rev-parse "subspace/one subspace/two" "--glob=refs/heads/subspace/"
57
58 '
59
60 test_expect_success 'rev-parse --glob=heads/subspace/' '
61
62 compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace/"
63
64 '
65
66 test_expect_success 'rev-parse --glob=heads/subspace' '
67
68 compare rev-parse "subspace/one subspace/two" "--glob=heads/subspace"
69
70 '
71
72 test_expect_failure 'rev-parse accepts --glob as detached option' '
73
74 compare rev-parse "subspace/one subspace/two" "--glob heads/subspace"
75
76 '
77
78 test_expect_failure 'rev-parse is not confused by option-like glob' '
79
80 compare rev-parse "master" "--glob --symbolic master"
81
82 '
83
84 test_expect_success 'rev-parse --branches=subspace/*' '
85
86 compare rev-parse "subspace/one subspace/two" "--branches=subspace/*"
87
88 '
89
90 test_expect_success 'rev-parse --branches=subspace/' '
91
92 compare rev-parse "subspace/one subspace/two" "--branches=subspace/"
93
94 '
95
96 test_expect_success 'rev-parse --branches=subspace' '
97
98 compare rev-parse "subspace/one subspace/two" "--branches=subspace"
99
100 '
101
102 test_expect_success 'rev-parse --glob=heads/subspace/* --glob=heads/other/*' '
103
104 compare rev-parse "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*"
105
106 '
107
108 test_expect_success 'rev-parse --glob=heads/someref/* master' '
109
110 compare rev-parse "master" "--glob=heads/someref/* master"
111
112 '
113
114 test_expect_success 'rev-parse --glob=heads/*' '
115
116 compare rev-parse "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
117
118 '
119
120 test_expect_success 'rev-parse --tags=foo' '
121
122 compare rev-parse "foo/bar" "--tags=foo"
123
124 '
125
126 test_expect_success 'rev-parse --remotes=foo' '
127
128 compare rev-parse "foo/baz" "--remotes=foo"
129
130 '
131
132 test_expect_success 'rev-list --glob=refs/heads/subspace/*' '
133
134 compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/*"
135
136 '
137
138 test_expect_success 'rev-list --glob refs/heads/subspace/*' '
139
140 compare rev-list "subspace/one subspace/two" "--glob refs/heads/subspace/*"
141
142 '
143
144 test_expect_success 'rev-list not confused by option-like --glob arg' '
145
146 compare rev-list "master" "--glob -0 master"
147
148 '
149
150 test_expect_success 'rev-list --glob=heads/subspace/*' '
151
152 compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/*"
153
154 '
155
156 test_expect_success 'rev-list --glob=refs/heads/subspace/' '
157
158 compare rev-list "subspace/one subspace/two" "--glob=refs/heads/subspace/"
159
160 '
161
162 test_expect_success 'rev-list --glob=heads/subspace/' '
163
164 compare rev-list "subspace/one subspace/two" "--glob=heads/subspace/"
165
166 '
167
168 test_expect_success 'rev-list --glob=heads/subspace' '
169
170 compare rev-list "subspace/one subspace/two" "--glob=heads/subspace"
171
172 '
173
174 test_expect_success 'rev-list --branches=subspace/*' '
175
176 compare rev-list "subspace/one subspace/two" "--branches=subspace/*"
177
178 '
179
180 test_expect_success 'rev-list --branches=subspace/' '
181
182 compare rev-list "subspace/one subspace/two" "--branches=subspace/"
183
184 '
185
186 test_expect_success 'rev-list --branches=subspace' '
187
188 compare rev-list "subspace/one subspace/two" "--branches=subspace"
189
190 '
191
192 test_expect_success 'rev-list --branches' '
193
194 compare rev-list "master subspace-x someref other/three subspace/one subspace/two" "--branches"
195
196 '
197
198 test_expect_success 'rev-list --glob=heads/someref/* master' '
199
200 compare rev-list "master" "--glob=heads/someref/* master"
201
202 '
203
204 test_expect_success 'rev-list --glob=heads/subspace/* --glob=heads/other/*' '
205
206 compare rev-list "subspace/one subspace/two other/three" "--glob=heads/subspace/* --glob=heads/other/*"
207
208 '
209
210 test_expect_success 'rev-list --glob=heads/*' '
211
212 compare rev-list "master other/three someref subspace-x subspace/one subspace/two" "--glob=heads/*"
213
214 '
215
216 test_expect_success 'rev-list --tags=foo' '
217
218 compare rev-list "foo/bar" "--tags=foo"
219
220 '
221
222 test_expect_success 'rev-list --tags' '
223
224 compare rev-list "foo/bar" "--tags"
225
226 '
227
228 test_expect_success 'rev-list --remotes=foo' '
229
230 compare rev-list "foo/baz" "--remotes=foo"
231
232 '
233
234 test_expect_success 'rev-list --exclude with --branches' '
235 compare rev-list "--exclude=*/* --branches" "master someref subspace-x"
236 '
237
238 test_expect_success 'rev-list --exclude with --all' '
239 compare rev-list "--exclude=refs/remotes/* --all" "--branches --tags"
240 '
241
242 test_expect_success 'rev-list accumulates multiple --exclude' '
243 compare rev-list "--exclude=refs/remotes/* --exclude=refs/tags/* --all" --branches
244 '
245
246
247 # "git rev-list<ENTER>" is likely to be a bug in the calling script and may
248 # deserve an error message, but do cases where set of refs programatically
249 # given using globbing and/or --stdin need to fail with the same error, or
250 # are we better off reporting a success with no output? The following few
251 # tests document the current behaviour to remind us that we might want to
252 # think about this issue.
253
254 test_expect_failure 'rev-list may want to succeed with empty output on no input (1)' '
255 >expect &&
256 git rev-list --stdin <expect >actual &&
257 test_cmp expect actual
258 '
259
260 test_expect_failure 'rev-list may want to succeed with empty output on no input (2)' '
261 >expect &&
262 git rev-list --exclude=* --all >actual &&
263 test_cmp expect actual
264 '
265
266 test_expect_failure 'rev-list may want to succeed with empty output on no input (3)' '
267 (
268 test_create_repo empty &&
269 cd empty &&
270 >expect &&
271 git rev-list --all >actual &&
272 test_cmp expect actual
273 )
274 '
275
276 test_expect_success 'shortlog accepts --glob/--tags/--remotes' '
277
278 compare shortlog "subspace/one subspace/two" --branches=subspace &&
279 compare shortlog \
280 "master subspace-x someref other/three subspace/one subspace/two" \
281 --branches &&
282 compare shortlog master "--glob=heads/someref/* master" &&
283 compare shortlog "subspace/one subspace/two other/three" \
284 "--glob=heads/subspace/* --glob=heads/other/*" &&
285 compare shortlog \
286 "master other/three someref subspace-x subspace/one subspace/two" \
287 "--glob=heads/*" &&
288 compare shortlog foo/bar --tags=foo &&
289 compare shortlog foo/bar --tags &&
290 compare shortlog foo/baz --remotes=foo
291
292 '
293
294 test_expect_failure 'shortlog accepts --glob as detached option' '
295
296 compare shortlog \
297 "master other/three someref subspace-x subspace/one subspace/two" \
298 "--glob heads/*"
299
300 '
301
302 test_expect_failure 'shortlog --glob is not confused by option-like argument' '
303
304 compare shortlog master "--glob -e master"
305
306 '
307
308 test_done