3 test_description
='Testing the various Bloom filter computations in bloom.c'
5 TEST_PASSES_SANITIZE_LEAK
=true
8 test_expect_success
'compute unseeded murmur3 hash for empty string' '
10 Murmur3 Hash with seed=0:0x00000000
12 test-tool bloom get_murmur3 "" >actual &&
13 test_cmp expect actual
16 test_expect_success
'compute unseeded murmur3 hash for test string 1' '
17 cat >expect <<-\EOF &&
18 Murmur3 Hash with seed=0:0x627b0c2c
20 test-tool bloom get_murmur3 "Hello world!" >actual &&
21 test_cmp expect actual
24 test_expect_success
'compute unseeded murmur3 hash for test string 2' '
25 cat >expect <<-\EOF &&
26 Murmur3 Hash with seed=0:0x2e4ff723
28 test-tool bloom get_murmur3 "The quick brown fox jumps over the lazy dog" >actual &&
29 test_cmp expect actual
32 test_expect_success
'compute bloom key for empty string' '
33 cat >expect <<-\EOF &&
34 Hashes:0x5615800c|0x5b966560|0x61174ab4|0x66983008|0x6c19155c|0x7199fab0|0x771ae004|
38 test-tool bloom generate_filter "" >actual &&
39 test_cmp expect actual
42 test_expect_success
'compute bloom key for whitespace' '
43 cat >expect <<-\EOF &&
44 Hashes:0xf178874c|0x5f3d6eb6|0xcd025620|0x3ac73d8a|0xa88c24f4|0x16510c5e|0x8415f3c8|
48 test-tool bloom generate_filter " " >actual &&
49 test_cmp expect actual
52 test_expect_success
'compute bloom key for test string 1' '
53 cat >expect <<-\EOF &&
54 Hashes:0xb270de9b|0x1bb6f26e|0x84fd0641|0xee431a14|0x57892de7|0xc0cf41ba|0x2a15558d|
58 test-tool bloom generate_filter "Hello world!" >actual &&
59 test_cmp expect actual
62 test_expect_success
'compute bloom key for test string 2' '
63 cat >expect <<-\EOF &&
64 Hashes:0x20ab385b|0xf5237fe2|0xc99bc769|0x9e140ef0|0x728c5677|0x47049dfe|0x1b7ce585|
68 test-tool bloom generate_filter "file.txt" >actual &&
69 test_cmp expect actual
72 test_expect_success
!SANITIZE_LEAK
'get bloom filters for commit with no changes' '
74 git commit --allow-empty -m "c0" &&
75 cat >expect <<-\EOF &&
79 test-tool bloom get_filter_for_commit "$(git rev-parse HEAD)" >actual &&
80 test_cmp expect actual
83 test_expect_success
'get bloom filter for commit with 10 changes' '
87 for i in $(test_seq 0 9)
89 echo $i >smallDir/$i || return 1
92 git commit -m "commit with 10 changes" &&
93 cat >expect <<-\EOF &&
95 Filter_Data:02|b3|c4|a0|34|e7|fe|eb|cb|47|fe|a0|e8|72|
97 test-tool bloom get_filter_for_commit "$(git rev-parse HEAD)" >actual &&
98 test_cmp expect actual
101 test_expect_success EXPENSIVE
'get bloom filter for commit with 513 changes' '
105 for i in $(test_seq 0 511)
107 echo $i >bigDir/$i || return 1
110 git commit -m "commit with 513 changes" &&
111 cat >expect <<-\EOF &&
115 test-tool bloom get_filter_for_commit "$(git rev-parse HEAD)" >actual &&
116 test_cmp expect actual