git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob f462f8fd9b469d04b470f5cf8e5b4bcc0d93df36 7832 bytes (raw)
name: t/t6112-rev-list-filters-objects.sh 	 # note: path name is non-authoritative(*)

  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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
 
#!/bin/sh

test_description='git rev-list using object filtering'

. ./test-lib.sh

# Test the blob:none filter.

test_expect_success 'setup r1' '
	echo "{print \$1}" >print_1.awk &&
	echo "{print \$2}" >print_2.awk &&

	git init r1 &&
	for n in 1 2 3 4 5
	do
		echo "This is file: $n" > r1/file.$n
		git -C r1 add file.$n
		git -C r1 commit -m "$n"
	done
'

test_expect_success 'verify blob:none omits all 5 blobs' '
	git -C r1 ls-files -s file.1 file.2 file.3 file.4 file.5 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r1 rev-list HEAD --quiet --objects --filter-print-omitted --filter=blob:none \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'specify blob explicitly prevents filtering' '
	file_3=$(git -C r1 ls-files -s file.3 |
		 awk -f print_2.awk) &&

	file_4=$(git -C r1 ls-files -s file.4 |
		 awk -f print_2.awk) &&

	git -C r1 rev-list --objects --filter=blob:none HEAD $file_3 >observed &&
        grep "$file_3" observed &&
        ! grep "$file_4" observed
'

test_expect_success 'verify emitted+omitted == all' '
	git -C r1 rev-list HEAD --objects \
		| awk -f print_1.awk \
		| sort >expected &&
	git -C r1 rev-list HEAD --objects --filter-print-omitted --filter=blob:none \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'


# Test blob:limit=<n>[kmg] filter.
# We boundary test around the size parameter.  The filter is strictly less than
# the value, so size 500 and 1000 should have the same results, but 1001 should
# filter more.

test_expect_success 'setup r2' '
	git init r2 &&
	for n in 1000 10000
	do
		printf "%"$n"s" X > r2/large.$n
		git -C r2 add large.$n
		git -C r2 commit -m "$n"
	done
'

test_expect_success 'verify blob:limit=500 omits all blobs' '
	git -C r2 ls-files -s large.1000 large.10000 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r2 rev-list HEAD --quiet --objects --filter-print-omitted --filter=blob:limit=500 \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'verify emitted+omitted == all' '
	git -C r2 rev-list HEAD --objects \
		| awk -f print_1.awk \
		| sort >expected &&
	git -C r2 rev-list HEAD --objects --filter-print-omitted --filter=blob:limit=500 \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'verify blob:limit=1000' '
	git -C r2 ls-files -s large.1000 large.10000 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r2 rev-list HEAD --quiet --objects --filter-print-omitted --filter=blob:limit=1000 \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'verify blob:limit=1001' '
	git -C r2 ls-files -s large.10000 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r2 rev-list HEAD --quiet --objects --filter-print-omitted --filter=blob:limit=1001 \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'verify blob:limit=1k' '
	git -C r2 ls-files -s large.10000 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r2 rev-list HEAD --quiet --objects --filter-print-omitted --filter=blob:limit=1k \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'verify blob:limit=1m' '
	git -C r2 rev-list HEAD --quiet --objects --filter-print-omitted --filter=blob:limit=1m \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_must_be_empty observed
'

# Test sparse:path=<path> filter.
# Use a local file containing a sparse-checkout specification to filter
# out blobs not required for the corresponding sparse-checkout.  We do not
# require sparse-checkout to actually be enabled.

test_expect_success 'setup r3' '
	git init r3 &&
	mkdir r3/dir1 &&
	for n in sparse1 sparse2
	do
		echo "This is file: $n" > r3/$n
		git -C r3 add $n
		echo "This is file: dir1/$n" > r3/dir1/$n
		git -C r3 add dir1/$n
	done &&
	git -C r3 commit -m "sparse" &&
	echo dir1/ >pattern1 &&
	echo sparse1 >pattern2
'

test_expect_success 'verify sparse:path=pattern1 omits top-level files' '
	git -C r3 ls-files -s sparse1 sparse2 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r3 rev-list HEAD --quiet --objects --filter-print-omitted --filter=sparse:path=../pattern1 \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'verify sparse:path=pattern2 omits both sparse2 files' '
	git -C r3 ls-files -s sparse2 dir1/sparse2 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r3 rev-list HEAD --quiet --objects --filter-print-omitted --filter=sparse:path=../pattern2 \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

# Test sparse:oid=<oid-ish> filter.
# Like sparse:path, but we get the sparse-checkout specification from
# a blob rather than a file on disk.

test_expect_success 'setup r3 part 2' '
	echo dir1/ >r3/pattern &&
	git -C r3 add pattern &&
	git -C r3 commit -m "pattern"
'

test_expect_success 'verify sparse:oid=OID omits top-level files' '
	git -C r3 ls-files -s pattern sparse1 sparse2 \
		| awk -f print_2.awk \
		| sort >expected &&
	oid=$(git -C r3 ls-files -s pattern | awk -f print_2.awk) &&
	git -C r3 rev-list HEAD --quiet --objects --filter-print-omitted --filter=sparse:oid=$oid \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'verify sparse:oid=oid-ish omits top-level files' '
	git -C r3 ls-files -s pattern sparse1 sparse2 \
		| awk -f print_2.awk \
		| sort >expected &&
	git -C r3 rev-list HEAD --quiet --objects --filter-print-omitted --filter=sparse:oid=master:pattern \
		| awk -f print_1.awk \
		| sed "s/~//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'rev-list W/ --missing=print and --missing=allow-any for trees' '
	TREE=$(git -C r3 rev-parse HEAD:dir1) &&

	# Create a spare repo because we will be deleting objects from this one.
	git clone r3 r3.b &&

	rm r3.b/.git/objects/$(echo $TREE | sed "s|^..|&/|") &&

	git -C r3.b rev-list --quiet --missing=print --objects HEAD \
		>missing_objs 2>rev_list_err &&
	echo "?$TREE" >expected &&
	test_cmp expected missing_objs &&

	# do not complain when a missing tree cannot be parsed
	test_must_be_empty rev_list_err &&

	git -C r3.b rev-list --missing=allow-any --objects HEAD \
		>objs 2>rev_list_err &&
	! grep $TREE objs &&
	test_must_be_empty rev_list_err
'

# Test tree:0 filter.

test_expect_success 'verify tree:0 includes trees in "filtered" output' '
	git -C r3 rev-list --quiet --objects --filter-print-omitted \
		--filter=tree:0 HEAD >revs &&

	awk -f print_1.awk revs |
	sed s/~// |
	xargs -n1 git -C r3 cat-file -t >unsorted_filtered_types &&

	sort -u unsorted_filtered_types >filtered_types &&
        test_write_lines blob tree >expected &&
	test_cmp expected filtered_types
'

# Delete some loose objects and use rev-list, but WITHOUT any filtering.
# This models previously omitted objects that we did not receive.

test_expect_success 'rev-list W/ --missing=print' '
	git -C r1 ls-files -s file.1 file.2 file.3 file.4 file.5 \
		| awk -f print_2.awk \
		| sort >expected &&
	for id in `cat expected | sed "s|..|&/|"`
	do
		rm r1/.git/objects/$id
	done &&
	git -C r1 rev-list --quiet HEAD --missing=print --objects \
		| awk -f print_1.awk \
		| sed "s/?//" \
		| sort >observed &&
	test_cmp observed expected
'

test_expect_success 'rev-list W/O --missing fails' '
	test_must_fail git -C r1 rev-list --quiet --objects HEAD
'

test_expect_success 'rev-list W/ missing=allow-any' '
	git -C r1 rev-list --quiet --missing=allow-any --objects HEAD
'

test_done

debug log:

solving 08e0c7db6 ...
found 08e0c7db6 in https://public-inbox.org/git/CAMfpvhJi+T+zRS8pkZkN_x5xYD3gxTjeczm18VLYWtxfb4Zvmw@mail.gmail.com/ ||
	https://public-inbox.org/git/cover.1539373969.git.matvore@google.com/ ||
	https://public-inbox.org/git/0f3f7c3e1f06b6d13efe7d3688d1b0e5d0b37563.1539373969.git.matvore@google.com/
found c8e3d87c4 in https://public-inbox.org/git/6ca50a28e292f32127ea706a2aef39f834ac7702.1538774738.git.matvore@google.com/ ||
	https://public-inbox.org/git/CAMfpvhLmXyk5MKoe=zC_sVgURwcxLBWL3zZWkrncGeL0FcyQDQ@mail.gmail.com/ ||
	https://public-inbox.org/git/cover.1538774738.git.matvore@google.com/
found ccbc64413 in https://public-inbox.org/git/9ef4d3ada1f9ce89abd529c83137625469eaf920.1538774738.git.matvore@google.com/
found efe5a2467 in https://public-inbox.org/git/59856878ed196240db1365013d1822032ea66b83.1539373969.git.matvore@google.com/ ||
	https://public-inbox.org/git/793739b7df9c7f46e7b2e6a49640b44266415924.1538774738.git.matvore@google.com/
found d4ff0b3be in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100755 d4ff0b3bef61b5d3de1ab0fad4695949d80dc8fd	t/t6112-rev-list-filters-objects.sh

applying [1/4] https://public-inbox.org/git/59856878ed196240db1365013d1822032ea66b83.1539373969.git.matvore@google.com/
diff --git a/t/t6112-rev-list-filters-objects.sh b/t/t6112-rev-list-filters-objects.sh
index d4ff0b3be..efe5a2467 100755

Checking patch t/t6112-rev-list-filters-objects.sh...
Applied patch t/t6112-rev-list-filters-objects.sh cleanly.

skipping https://public-inbox.org/git/793739b7df9c7f46e7b2e6a49640b44266415924.1538774738.git.matvore@google.com/ for efe5a2467
index at:
100755 efe5a246750a2b986a953f5301a07c0ff48d655c	t/t6112-rev-list-filters-objects.sh

applying [2/4] https://public-inbox.org/git/9ef4d3ada1f9ce89abd529c83137625469eaf920.1538774738.git.matvore@google.com/
diff --git a/t/t6112-rev-list-filters-objects.sh b/t/t6112-rev-list-filters-objects.sh
index efe5a2467..ccbc64413 100755


applying [3/4] https://public-inbox.org/git/6ca50a28e292f32127ea706a2aef39f834ac7702.1538774738.git.matvore@google.com/
diff --git a/t/t6112-rev-list-filters-objects.sh b/t/t6112-rev-list-filters-objects.sh
index ccbc64413..c8e3d87c4 100755

Checking patch t/t6112-rev-list-filters-objects.sh...
Applied patch t/t6112-rev-list-filters-objects.sh cleanly.
Checking patch t/t6112-rev-list-filters-objects.sh...
Applied patch t/t6112-rev-list-filters-objects.sh cleanly.

skipping https://public-inbox.org/git/CAMfpvhLmXyk5MKoe=zC_sVgURwcxLBWL3zZWkrncGeL0FcyQDQ@mail.gmail.com/ for c8e3d87c4
skipping https://public-inbox.org/git/cover.1538774738.git.matvore@google.com/ for c8e3d87c4
index at:
100755 c8e3d87c489fb5b2635f2633cb05b9a14a0f767f	t/t6112-rev-list-filters-objects.sh

applying [4/4] https://public-inbox.org/git/CAMfpvhJi+T+zRS8pkZkN_x5xYD3gxTjeczm18VLYWtxfb4Zvmw@mail.gmail.com/
index c8e3d87c4..08e0c7db6 100755

error: corrupt patch at line 5

git apply error:; exit status=128
trying https://public-inbox.org/git/cover.1539373969.git.matvore@google.com/

applying [5/4] https://public-inbox.org/git/cover.1539373969.git.matvore@google.com/
diff --git a/t/t6112-rev-list-filters-objects.sh b/t/t6112-rev-list-filters-objects.sh
index c8e3d87c4..08e0c7db6 100755

Checking patch t/t6112-rev-list-filters-objects.sh...
Applied patch t/t6112-rev-list-filters-objects.sh cleanly.

skipping https://public-inbox.org/git/0f3f7c3e1f06b6d13efe7d3688d1b0e5d0b37563.1539373969.git.matvore@google.com/ for 08e0c7db6
index at:
100755 f462f8fd9b469d04b470f5cf8e5b4bcc0d93df36	t/t6112-rev-list-filters-objects.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).