Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='exercise basic multi-pack bitmap functionality' |
| 4 | . ./test-lib.sh |
| 5 | . "${TEST_DIRECTORY}/lib-bitmap.sh" |
| 6 | |
| 7 | # We'll be writing our own midx and bitmaps, so avoid getting confused by the |
| 8 | # automatic ones. |
| 9 | GIT_TEST_MULTI_PACK_INDEX=0 |
| 10 | GIT_TEST_MULTI_PACK_INDEX_WRITE_BITMAP=0 |
| 11 | |
Taylor Blau | 7f514b7 | 2022-01-25 17:41:17 -0500 | [diff] [blame] | 12 | # This test exercise multi-pack bitmap functionality where the object order is |
| 13 | # stored and read from a special chunk within the MIDX, so use the default |
| 14 | # behavior here. |
| 15 | sane_unset GIT_TEST_MIDX_WRITE_REV |
| 16 | sane_unset GIT_TEST_MIDX_READ_RIDX |
| 17 | |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 18 | bitmap_reuse_tests() { |
| 19 | from=$1 |
| 20 | to=$2 |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 21 | writeLookupTable=false |
| 22 | |
| 23 | for i in $3-${$#} |
| 24 | do |
| 25 | case $i in |
| 26 | "pack.writeBitmapLookupTable") writeLookupTable=true;; |
| 27 | esac |
| 28 | done |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 29 | |
| 30 | test_expect_success "setup pack reuse tests ($from -> $to)" ' |
| 31 | rm -fr repo && |
| 32 | git init repo && |
| 33 | ( |
| 34 | cd repo && |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 35 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 36 | test_commit_bulk 16 && |
| 37 | git tag old-tip && |
| 38 | |
| 39 | git config core.multiPackIndex true && |
| 40 | if test "MIDX" = "$from" |
| 41 | then |
| 42 | git repack -Ad && |
| 43 | git multi-pack-index write --bitmap |
| 44 | else |
| 45 | git repack -Adb |
| 46 | fi |
| 47 | ) |
| 48 | ' |
| 49 | |
| 50 | test_expect_success "build bitmap from existing ($from -> $to)" ' |
| 51 | ( |
| 52 | cd repo && |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 53 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 54 | test_commit_bulk --id=further 16 && |
| 55 | git tag new-tip && |
| 56 | |
| 57 | if test "MIDX" = "$to" |
| 58 | then |
| 59 | git repack -d && |
| 60 | git multi-pack-index write --bitmap |
| 61 | else |
| 62 | git repack -Adb |
| 63 | fi |
| 64 | ) |
| 65 | ' |
| 66 | |
| 67 | test_expect_success "verify resulting bitmaps ($from -> $to)" ' |
| 68 | ( |
| 69 | cd repo && |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 70 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 71 | git for-each-ref && |
| 72 | git rev-list --test-bitmap refs/tags/old-tip && |
| 73 | git rev-list --test-bitmap refs/tags/new-tip |
| 74 | ) |
| 75 | ' |
| 76 | } |
| 77 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 78 | test_midx_bitmap_cases () { |
| 79 | writeLookupTable=false |
| 80 | writeBitmapLookupTable= |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 81 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 82 | for i in "$@" |
| 83 | do |
| 84 | case $i in |
| 85 | "pack.writeBitmapLookupTable") |
| 86 | writeLookupTable=true |
| 87 | writeBitmapLookupTable="$i" |
| 88 | ;; |
| 89 | esac |
| 90 | done |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 91 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 92 | test_expect_success 'setup test_repository' ' |
| 93 | rm -rf * .git && |
| 94 | git init && |
| 95 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' |
| 96 | ' |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 97 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 98 | midx_bitmap_core |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 99 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 100 | bitmap_reuse_tests 'pack' 'MIDX' "$writeBitmapLookupTable" |
| 101 | bitmap_reuse_tests 'MIDX' 'pack' "$writeBitmapLookupTable" |
| 102 | bitmap_reuse_tests 'MIDX' 'MIDX' "$writeBitmapLookupTable" |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 103 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 104 | test_expect_success 'missing object closure fails gracefully' ' |
| 105 | rm -fr repo && |
| 106 | git init repo && |
| 107 | test_when_finished "rm -fr repo" && |
Taylor Blau | 08944d1 | 2021-09-28 21:55:07 -0400 | [diff] [blame] | 108 | ( |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 109 | cd repo && |
| 110 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
Taylor Blau | 08944d1 | 2021-09-28 21:55:07 -0400 | [diff] [blame] | 111 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 112 | test_commit loose && |
| 113 | test_commit packed && |
Taylor Blau | 08944d1 | 2021-09-28 21:55:07 -0400 | [diff] [blame] | 114 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 115 | # Do not pass "--revs"; we want a pack without the "loose" |
| 116 | # commit. |
| 117 | git pack-objects $objdir/pack/pack <<-EOF && |
| 118 | $(git rev-parse packed) |
| 119 | EOF |
Taylor Blau | 08944d1 | 2021-09-28 21:55:07 -0400 | [diff] [blame] | 120 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 121 | test_must_fail git multi-pack-index write --bitmap 2>err && |
| 122 | grep "doesn.t have full closure" err && |
| 123 | test_path_is_missing $midx |
| 124 | ) |
| 125 | ' |
Taylor Blau | 08944d1 | 2021-09-28 21:55:07 -0400 | [diff] [blame] | 126 | |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 127 | midx_bitmap_partial_tests |
| 128 | |
| 129 | test_expect_success 'removing a MIDX clears stale bitmaps' ' |
| 130 | rm -fr repo && |
| 131 | git init repo && |
| 132 | test_when_finished "rm -fr repo" && |
| 133 | ( |
| 134 | cd repo && |
| 135 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
| 136 | test_commit base && |
| 137 | git repack && |
| 138 | git multi-pack-index write --bitmap && |
| 139 | |
| 140 | # Write a MIDX and bitmap; remove the MIDX but leave the bitmap. |
| 141 | stale_bitmap=$midx-$(midx_checksum $objdir).bitmap && |
| 142 | rm $midx && |
| 143 | |
| 144 | # Then write a new MIDX. |
| 145 | test_commit new && |
| 146 | git repack && |
| 147 | git multi-pack-index write --bitmap && |
| 148 | |
| 149 | test_path_is_file $midx && |
| 150 | test_path_is_file $midx-$(midx_checksum $objdir).bitmap && |
| 151 | test_path_is_missing $stale_bitmap |
| 152 | ) |
| 153 | ' |
| 154 | |
| 155 | test_expect_success 'pack.preferBitmapTips' ' |
| 156 | git init repo && |
| 157 | test_when_finished "rm -fr repo" && |
| 158 | ( |
| 159 | cd repo && |
| 160 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
| 161 | |
| 162 | test_commit_bulk --message="%s" 103 && |
| 163 | |
| 164 | git log --format="%H" >commits.raw && |
| 165 | sort <commits.raw >commits && |
| 166 | |
| 167 | git log --format="create refs/tags/%s %H" HEAD >refs && |
| 168 | git update-ref --stdin <refs && |
| 169 | |
| 170 | git multi-pack-index write --bitmap && |
| 171 | test_path_is_file $midx && |
| 172 | test_path_is_file $midx-$(midx_checksum $objdir).bitmap && |
| 173 | |
| 174 | test-tool bitmap list-commits | sort >bitmaps && |
| 175 | comm -13 bitmaps commits >before && |
| 176 | test_line_count = 1 before && |
| 177 | |
| 178 | perl -ne "printf(\"create refs/tags/include/%d \", $.); print" \ |
| 179 | <before | git update-ref --stdin && |
| 180 | |
| 181 | rm -fr $midx-$(midx_checksum $objdir).bitmap && |
| 182 | rm -fr $midx && |
| 183 | |
| 184 | git -c pack.preferBitmapTips=refs/tags/include \ |
| 185 | multi-pack-index write --bitmap && |
| 186 | test-tool bitmap list-commits | sort >bitmaps && |
| 187 | comm -13 bitmaps commits >after && |
| 188 | |
| 189 | ! test_cmp before after |
| 190 | ) |
| 191 | ' |
| 192 | |
| 193 | test_expect_success 'writing a bitmap with --refs-snapshot' ' |
| 194 | git init repo && |
| 195 | test_when_finished "rm -fr repo" && |
| 196 | ( |
| 197 | cd repo && |
| 198 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
| 199 | |
| 200 | test_commit one && |
| 201 | test_commit two && |
| 202 | |
| 203 | git rev-parse one >snapshot && |
| 204 | |
| 205 | git repack -ad && |
| 206 | |
| 207 | # First, write a MIDX which see both refs/tags/one and |
| 208 | # refs/tags/two (causing both of those commits to receive |
| 209 | # bitmaps). |
| 210 | git multi-pack-index write --bitmap && |
| 211 | |
| 212 | test_path_is_file $midx && |
| 213 | test_path_is_file $midx-$(midx_checksum $objdir).bitmap && |
| 214 | |
| 215 | test-tool bitmap list-commits | sort >bitmaps && |
| 216 | grep "$(git rev-parse one)" bitmaps && |
| 217 | grep "$(git rev-parse two)" bitmaps && |
| 218 | |
| 219 | rm -fr $midx-$(midx_checksum $objdir).bitmap && |
| 220 | rm -fr $midx && |
| 221 | |
| 222 | # Then again, but with a refs snapshot which only sees |
| 223 | # refs/tags/one. |
| 224 | git multi-pack-index write --bitmap --refs-snapshot=snapshot && |
| 225 | |
| 226 | test_path_is_file $midx && |
| 227 | test_path_is_file $midx-$(midx_checksum $objdir).bitmap && |
| 228 | |
| 229 | test-tool bitmap list-commits | sort >bitmaps && |
| 230 | grep "$(git rev-parse one)" bitmaps && |
| 231 | ! grep "$(git rev-parse two)" bitmaps |
| 232 | ) |
| 233 | ' |
| 234 | |
| 235 | test_expect_success 'write a bitmap with --refs-snapshot (preferred tips)' ' |
| 236 | git init repo && |
| 237 | test_when_finished "rm -fr repo" && |
| 238 | ( |
| 239 | cd repo && |
| 240 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
| 241 | |
| 242 | test_commit_bulk --message="%s" 103 && |
| 243 | |
| 244 | git log --format="%H" >commits.raw && |
| 245 | sort <commits.raw >commits && |
| 246 | |
| 247 | git log --format="create refs/tags/%s %H" HEAD >refs && |
| 248 | git update-ref --stdin <refs && |
| 249 | |
| 250 | git multi-pack-index write --bitmap && |
| 251 | test_path_is_file $midx && |
| 252 | test_path_is_file $midx-$(midx_checksum $objdir).bitmap && |
| 253 | |
| 254 | test-tool bitmap list-commits | sort >bitmaps && |
| 255 | comm -13 bitmaps commits >before && |
| 256 | test_line_count = 1 before && |
| 257 | |
| 258 | ( |
| 259 | grep -vf before commits.raw && |
| 260 | # mark missing commits as preferred |
| 261 | sed "s/^/+/" before |
| 262 | ) >snapshot && |
| 263 | |
| 264 | rm -fr $midx-$(midx_checksum $objdir).bitmap && |
| 265 | rm -fr $midx && |
| 266 | |
| 267 | git multi-pack-index write --bitmap --refs-snapshot=snapshot && |
| 268 | test-tool bitmap list-commits | sort >bitmaps && |
| 269 | comm -13 bitmaps commits >after && |
| 270 | |
| 271 | ! test_cmp before after |
| 272 | ) |
| 273 | ' |
| 274 | |
| 275 | test_expect_success 'hash-cache values are propagated from pack bitmaps' ' |
| 276 | rm -fr repo && |
| 277 | git init repo && |
| 278 | test_when_finished "rm -fr repo" && |
| 279 | ( |
| 280 | cd repo && |
| 281 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
| 282 | |
| 283 | test_commit base && |
| 284 | test_commit base2 && |
| 285 | git repack -adb && |
| 286 | |
| 287 | test-tool bitmap dump-hashes >pack.raw && |
| 288 | test_file_not_empty pack.raw && |
| 289 | sort pack.raw >pack.hashes && |
| 290 | |
| 291 | test_commit new && |
| 292 | git repack && |
| 293 | git multi-pack-index write --bitmap && |
| 294 | |
| 295 | test-tool bitmap dump-hashes >midx.raw && |
| 296 | sort midx.raw >midx.hashes && |
| 297 | |
| 298 | # ensure that every namehash in the pack bitmap can be found in |
| 299 | # the midx bitmap (i.e., that there are no oid-namehash pairs |
| 300 | # unique to the pack bitmap). |
| 301 | comm -23 pack.hashes midx.hashes >dropped.hashes && |
| 302 | test_must_be_empty dropped.hashes |
| 303 | ) |
| 304 | ' |
| 305 | |
| 306 | test_expect_success 'no .bitmap is written without any objects' ' |
| 307 | rm -fr repo && |
| 308 | git init repo && |
| 309 | test_when_finished "rm -fr repo" && |
| 310 | ( |
| 311 | cd repo && |
| 312 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
| 313 | |
| 314 | empty="$(git pack-objects $objdir/pack/pack </dev/null)" && |
| 315 | cat >packs <<-EOF && |
| 316 | pack-$empty.idx |
| 317 | EOF |
| 318 | |
| 319 | git multi-pack-index write --bitmap --stdin-packs \ |
| 320 | <packs 2>err && |
| 321 | |
| 322 | grep "bitmap without any objects" err && |
| 323 | |
| 324 | test_path_is_file $midx && |
| 325 | test_path_is_missing $midx-$(midx_checksum $objdir).bitmap |
| 326 | ) |
| 327 | ' |
| 328 | |
| 329 | test_expect_success 'graceful fallback when missing reverse index' ' |
| 330 | rm -fr repo && |
| 331 | git init repo && |
| 332 | test_when_finished "rm -fr repo" && |
| 333 | ( |
| 334 | cd repo && |
| 335 | git config pack.writeBitmapLookupTable '"$writeLookupTable"' && |
| 336 | |
| 337 | test_commit base && |
| 338 | |
| 339 | # write a pack and MIDX bitmap containing base |
| 340 | git repack -adb && |
| 341 | git multi-pack-index write --bitmap && |
| 342 | |
| 343 | GIT_TEST_MIDX_READ_RIDX=0 \ |
| 344 | git rev-list --use-bitmap-index HEAD 2>err && |
| 345 | ! grep "ignoring extra bitmap file" err |
| 346 | ) |
| 347 | ' |
| 348 | } |
| 349 | |
| 350 | test_midx_bitmap_cases |
| 351 | |
| 352 | test_midx_bitmap_cases "pack.writeBitmapLookupTable" |
| 353 | |
| 354 | test_expect_success 'multi-pack-index write writes lookup table if enabled' ' |
Taylor Blau | 54156af | 2021-09-17 17:21:29 -0400 | [diff] [blame] | 355 | rm -fr repo && |
| 356 | git init repo && |
| 357 | test_when_finished "rm -fr repo" && |
| 358 | ( |
| 359 | cd repo && |
Taylor Blau | 54156af | 2021-09-17 17:21:29 -0400 | [diff] [blame] | 360 | test_commit base && |
Abhradeep Chakraborty | 76f14b7 | 2022-08-14 16:55:09 +0000 | [diff] [blame] | 361 | git config pack.writeBitmapLookupTable true && |
| 362 | git repack -ad && |
| 363 | GIT_TRACE2_EVENT="$(pwd)/trace" \ |
| 364 | git multi-pack-index write --bitmap && |
| 365 | grep "\"label\":\"writing_lookup_table\"" trace |
Taylor Blau | f8b60cf | 2022-01-25 17:41:20 -0500 | [diff] [blame] | 366 | ) |
| 367 | ' |
| 368 | |
Taylor Blau | 65168c4 | 2022-08-22 15:50:32 -0400 | [diff] [blame] | 369 | test_expect_success 'preferred pack change with existing MIDX bitmap' ' |
| 370 | git init preferred-pack-with-existing && |
| 371 | ( |
| 372 | cd preferred-pack-with-existing && |
| 373 | |
| 374 | test_commit base && |
| 375 | test_commit other && |
| 376 | |
| 377 | git rev-list --objects --no-object-names base >p1.objects && |
| 378 | git rev-list --objects --no-object-names other >p2.objects && |
| 379 | |
| 380 | p1="$(git pack-objects "$objdir/pack/pack" \ |
| 381 | --delta-base-offset <p1.objects)" && |
| 382 | p2="$(git pack-objects "$objdir/pack/pack" \ |
| 383 | --delta-base-offset <p2.objects)" && |
| 384 | |
| 385 | # Generate a MIDX containing the first two packs, |
| 386 | # marking p1 as preferred, and ensure that it can be |
| 387 | # successfully cloned. |
| 388 | git multi-pack-index write --bitmap \ |
| 389 | --preferred-pack="pack-$p1.pack" && |
| 390 | test_path_is_file $midx && |
| 391 | test_path_is_file $midx-$(midx_checksum $objdir).bitmap && |
| 392 | git clone --no-local . clone1 && |
| 393 | |
| 394 | # Then generate a new pack which sorts ahead of any |
| 395 | # existing pack (by tweaking the pack prefix). |
| 396 | test_commit foo && |
| 397 | git pack-objects --all --unpacked $objdir/pack/pack0 && |
| 398 | |
| 399 | # Generate a new MIDX which changes the preferred pack |
Taylor Blau | cdf517b | 2022-08-22 15:50:46 -0400 | [diff] [blame] | 400 | # to a pack contained in the existing MIDX. |
Taylor Blau | 65168c4 | 2022-08-22 15:50:32 -0400 | [diff] [blame] | 401 | git multi-pack-index write --bitmap \ |
| 402 | --preferred-pack="pack-$p2.pack" && |
| 403 | test_path_is_file $midx && |
| 404 | test_path_is_file $midx-$(midx_checksum $objdir).bitmap && |
| 405 | |
Taylor Blau | cdf517b | 2022-08-22 15:50:46 -0400 | [diff] [blame] | 406 | # When the above circumstances are met, the preferred |
| 407 | # pack should change appropriately and clones should |
| 408 | # (still) succeed. |
| 409 | git clone --no-local . clone2 |
Taylor Blau | 65168c4 | 2022-08-22 15:50:32 -0400 | [diff] [blame] | 410 | ) |
| 411 | ' |
| 412 | |
Taylor Blau | 1dc4f1e | 2022-10-12 18:01:52 -0400 | [diff] [blame] | 413 | test_expect_success 'tagged commits are selected for bitmapping' ' |
| 414 | rm -fr repo && |
| 415 | git init repo && |
| 416 | test_when_finished "rm -fr repo" && |
| 417 | ( |
| 418 | cd repo && |
| 419 | |
| 420 | test_commit --annotate base && |
| 421 | git repack -d && |
| 422 | |
| 423 | # Remove refs/heads/main which points at the commit directly, |
| 424 | # leaving only a reference to the annotated tag. |
| 425 | git branch -M main && |
| 426 | git checkout base && |
| 427 | git branch -d main && |
| 428 | |
| 429 | git multi-pack-index write --bitmap && |
| 430 | |
| 431 | git rev-parse HEAD >want && |
| 432 | test-tool bitmap list-commits >actual && |
| 433 | grep $(cat want) actual |
| 434 | ) |
| 435 | ' |
| 436 | |
Taylor Blau | c51f5a6 | 2021-08-31 16:52:31 -0400 | [diff] [blame] | 437 | test_done |