git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob feaa6c098966728ffb44622dfc91ce0ed9910a60 1881 bytes (raw)
name: t/t6113-rev-list-bitmap-filters.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
 
#!/bin/sh

test_description='rev-list combining bitmaps and filters'
. ./test-lib.sh

test_expect_success 'set up bitmapped repo' '
	# one commit will have bitmaps, the other will not
	test_commit one &&
	git repack -adb &&
	test_commit two
'

test_expect_success 'filters fallback to non-bitmap traversal' '
	# use a path-based filter, since they are inherently incompatible with
	# bitmaps (i.e., this test will never get confused by later code to
	# combine the features)
	filter=$(echo "!one" | git hash-object -w --stdin) &&
	git rev-list --objects --filter=sparse:oid=$filter HEAD >expect &&
	git rev-list --use-bitmap-index \
		     --objects --filter=sparse:oid=$filter HEAD >actual &&
	test_cmp expect actual
'

# the bitmap and regular traversals produce subtly different output:
#
#   - regular output is in traversal order, whereas bitmap is split by type,
#     with non-packed objects at the end
#
#   - regular output has a space and the pathname appended to non-commit
#     objects; bitmap output omits this
#
# Normalize and compare the two. The second argument should always be the
# bitmap output.
cmp_bitmap_traversal () {
	if cmp "$1" "$2"
	then
		echo >&2 "identical raw outputs; are you sure bitmaps were used?"
		return 1
	fi &&
	cut -d' ' -f1 "$1" | sort >"$1.normalized" &&
	sort "$2" >"$2.normalized" &&
	test_cmp "$1.normalized" "$2.normalized"
}

test_expect_success 'blob:none filter' '
	git rev-list --objects --filter=blob:none HEAD >expect &&
	git rev-list --use-bitmap-index \
		     --objects --filter=blob:none HEAD >actual &&
	cmp_bitmap_traversal expect actual
'

test_expect_success 'blob:none filter with specified blob' '
	git rev-list --objects --filter=blob:none HEAD HEAD:two.t >expect &&
	git rev-list --use-bitmap-index \
		     --objects --filter=blob:none HEAD HEAD:two.t >actual &&
	cmp_bitmap_traversal expect actual
'

test_done

debug log:

solving feaa6c0989 ...
found feaa6c0989 in https://public-inbox.org/git/20200213022347.GK1126038@coredump.intra.peff.net/
found 977f8d0930 in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100755 977f8d0930020f2e6910b5e530ac2ffeae517786	t/t6113-rev-list-bitmap-filters.sh

applying [1/1] https://public-inbox.org/git/20200213022347.GK1126038@coredump.intra.peff.net/
diff --git a/t/t6113-rev-list-bitmap-filters.sh b/t/t6113-rev-list-bitmap-filters.sh
index 977f8d0930..feaa6c0989 100755

Checking patch t/t6113-rev-list-bitmap-filters.sh...
Applied patch t/t6113-rev-list-bitmap-filters.sh cleanly.

index at:
100755 feaa6c098966728ffb44622dfc91ce0ed9910a60	t/t6113-rev-list-bitmap-filters.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).