1#!/bin/sh 2# 3# Copyright (c) 2005 Junio C Hamano 4# 5 6test_description='Test the very basics part #1. 7 8The rest of the test suite does not check the basic operation of git 9plumbing commands to work very carefully. Their job is to concentrate 10on tricky features that caused bugs in the past to detect regression. 11 12This test runs very basic features, like registering things in cache, 13writing tree, etc. 14 15Note that this test *deliberately* hard-codes many expected object 16IDs. When object ID computation changes, like in the previous case of 17swapping compression and hashing order, the person who is making the 18modification *should* take notice and update the test vectors here. 19' 20 21. ./test-lib.sh 22 23try_local_x () { 24local x="local"&& 25echo"$x" 26} 27 28# This test is an experiment to check whether any Git users are using 29# Shells that don't support the "local" keyword. "local" is not 30# POSIX-standard, but it is very widely supported by POSIX-compliant 31# shells, and if it doesn't cause problems for people, we would like 32# to be able to use it in Git code. 33# 34# For now, this is the only test that requires "local". If your shell 35# fails this test, you can ignore the failure, but please report the 36# problem to the Git mailing list <git@vger.kernel.org>, as it might 37# convince us to continue avoiding the use of "local". 38test_expect_success 'verify that the running shell supports "local"'' 39 x="notlocal" && 40 echo "local" >expected1 && 41 try_local_x >actual1 && 42 test_cmp expected1 actual1 && 43 echo "notlocal" >expected2 && 44 echo "$x" >actual2 && 45 test_cmp expected2 actual2 46' 47 48################################################################ 49# git init has been done in an empty repository. 50# make sure it is empty. 51 52test_expect_success '.git/objects should be empty after git init in an empty repo'' 53 find .git/objects -type f -print >should-be-empty && 54 test_line_count = 0 should-be-empty 55' 56 57# also it should have 2 subdirectories; no fan-out anymore, pack, and info. 58# 3 is counting "objects" itself 59test_expect_success '.git/objects should have 3 subdirectories'' 60 find .git/objects -type d -print >full-of-directories && 61 test_line_count = 3 full-of-directories 62' 63 64################################################################ 65# Test harness 66test_expect_success 'success is reported like this'' 67 : 68' 69 70_run_sub_test_lib_test_common () { 71 neg="$1" name="$2" descr="$3"# stdin is the body of the test code 72shift3 73mkdir"$name"&& 74( 75# Pretend we're not running under a test harness, whether we 76# are or not. The test-lib output depends on the setting of 77# this variable, so we need a stable setting under which to run 78# the sub-test. 79 sane_unset HARNESS_ACTIVE && 80cd"$name"&& 81cat>"$name.sh"<<-EOF && 82 #!$SHELL_PATH 83 84 test_description='$descr(run in sub test-lib) 85 86 This is run in a sub test-lib so that we do not get incorrect 87 passing metrics 88 ' 89 90 # Tell the framework that we are self-testing to make sure 91 # it yields a stable result. 92 GIT_TEST_FRAMEWORK_SELFTEST=t && 93 94 # Point to the t/test-lib.sh, which isn't in ../ as usual 95 . "\$TEST_DIRECTORY"/test-lib.sh 96 EOF 97cat>>"$name.sh"&& 98chmod+x "$name.sh"&& 99export TEST_DIRECTORY && 100 TEST_OUTPUT_DIRECTORY=$(pwd)&& 101export TEST_OUTPUT_DIRECTORY && 102iftest -z"$neg" 103then 104 ./"$name.sh""$@">out 2>err 105else 106! ./"$name.sh""$@">out 2>err 107fi 108) 109} 110 111run_sub_test_lib_test () { 112 _run_sub_test_lib_test_common ''"$@" 113} 114 115run_sub_test_lib_test_err () { 116 _run_sub_test_lib_test_common '!'"$@" 117} 118 119check_sub_test_lib_test () { 120 name="$1"# stdin is the expected output from the test 121( 122cd"$name"&& 123 test_must_be_empty err && 124sed-e's/^> //'-e's/Z$//'>expect && 125 test_cmp expect out 126) 127} 128 129check_sub_test_lib_test_err () { 130 name="$1"# stdin is the expected output from the test 131# expected error output is in descriptior 3 132( 133cd"$name"&& 134sed-e's/^> //'-e's/Z$//'>expect.out && 135 test_cmp expect.out out && 136sed-e's/^> //'-e's/Z$//'<&3>expect.err && 137 test_cmp expect.err err 138) 139} 140 141test_expect_success 'pretend we have a fully passing test suite'" 142 run_sub_test_lib_test full-pass '3 passing tests' <<-\\EOF && 143 for i in 1 2 3 144 do 145 test_expect_success\"passing test #\$i\"'true' 146 done 147 test_done 148 EOF 149 check_sub_test_lib_test full-pass <<-\\EOF 150 > ok 1 - passing test #1 151 > ok 2 - passing test #2 152 > ok 3 - passing test #3 153 > # passed all 3 test(s) 154 > 1..3 155 EOF 156" 157 158test_expect_success 'pretend we have a partially passing test suite'" 159 test_must_fail run_sub_test_lib_test \ 160 partial-pass '2/3 tests passing' <<-\\EOF && 161 test_expect_success 'passing test #1' 'true' 162 test_expect_success 'failing test #2' 'false' 163 test_expect_success 'passing test #3' 'true' 164 test_done 165 EOF 166 check_sub_test_lib_test partial-pass <<-\\EOF 167 > ok 1 - passing test #1 168 > not ok 2 - failing test #2 169 # false 170 > ok 3 - passing test #3 171 > # failed 1 among 3 test(s) 172 > 1..3 173 EOF 174" 175 176test_expect_success 'pretend we have a known breakage'" 177 run_sub_test_lib_test failing-todo 'A failing TODO test' <<-\\EOF && 178 test_expect_success 'passing test' 'true' 179 test_expect_failure 'pretend we have a known breakage' 'false' 180 test_done 181 EOF 182 check_sub_test_lib_test failing-todo <<-\\EOF 183 > ok 1 - passing test 184 > not ok 2 - pretend we have a known breakage # TODO known breakage 185 > # still have 1 known breakage(s) 186 > # passed all remaining 1 test(s) 187 > 1..2 188 EOF 189" 190 191test_expect_success 'pretend we have fixed a known breakage'" 192 run_sub_test_lib_test passing-todo 'A passing TODO test' <<-\\EOF && 193 test_expect_failure 'pretend we have fixed a known breakage' 'true' 194 test_done 195 EOF 196 check_sub_test_lib_test passing-todo <<-\\EOF 197 > ok 1 - pretend we have fixed a known breakage # TODO known breakage vanished 198 > # 1 known breakage(s) vanished; please update test(s) 199 > 1..1 200 EOF 201" 202 203test_expect_success 'pretend we have fixed one of two known breakages (run in sub test-lib)'" 204 run_sub_test_lib_test partially-passing-todos \ 205 '2 TODO tests, one passing' <<-\\EOF && 206 test_expect_failure 'pretend we have a known breakage' 'false' 207 test_expect_success 'pretend we have a passing test' 'true' 208 test_expect_failure 'pretend we have fixed another known breakage' 'true' 209 test_done 210 EOF 211 check_sub_test_lib_test partially-passing-todos <<-\\EOF 212 > not ok 1 - pretend we have a known breakage # TODO known breakage 213 > ok 2 - pretend we have a passing test 214 > ok 3 - pretend we have fixed another known breakage # TODO known breakage vanished 215 > # 1 known breakage(s) vanished; please update test(s) 216 > # still have 1 known breakage(s) 217 > # passed all remaining 1 test(s) 218 > 1..3 219 EOF 220" 221 222test_expect_success 'pretend we have a pass, fail, and known breakage'" 223 test_must_fail run_sub_test_lib_test \ 224 mixed-results1 'mixed results #1' <<-\\EOF && 225 test_expect_success 'passing test' 'true' 226 test_expect_success 'failing test' 'false' 227 test_expect_failure 'pretend we have a known breakage' 'false' 228 test_done 229 EOF 230 check_sub_test_lib_test mixed-results1 <<-\\EOF 231 > ok 1 - passing test 232 > not ok 2 - failing test 233 > # false 234 > not ok 3 - pretend we have a known breakage # TODO known breakage 235 > # still have 1 known breakage(s) 236 > # failed 1 among remaining 2 test(s) 237 > 1..3 238 EOF 239" 240 241test_expect_success 'pretend we have a mix of all possible results'" 242 test_must_fail run_sub_test_lib_test \ 243 mixed-results2 'mixed results #2' <<-\\EOF && 244 test_expect_success 'passing test' 'true' 245 test_expect_success 'passing test' 'true' 246 test_expect_success 'passing test' 'true' 247 test_expect_success 'passing test' 'true' 248 test_expect_success 'failing test' 'false' 249 test_expect_success 'failing test' 'false' 250 test_expect_success 'failing test' 'false' 251 test_expect_failure 'pretend we have a known breakage' 'false' 252 test_expect_failure 'pretend we have a known breakage' 'false' 253 test_expect_failure 'pretend we have fixed a known breakage' 'true' 254 test_done 255 EOF 256 check_sub_test_lib_test mixed-results2 <<-\\EOF 257 > ok 1 - passing test 258 > ok 2 - passing test 259 > ok 3 - passing test 260 > ok 4 - passing test 261 > not ok 5 - failing test 262 > # false 263 > not ok 6 - failing test 264 > # false 265 > not ok 7 - failing test 266 > # false 267 > not ok 8 - pretend we have a known breakage # TODO known breakage 268 > not ok 9 - pretend we have a known breakage # TODO known breakage 269 > ok 10 - pretend we have fixed a known breakage # TODO known breakage vanished 270 > # 1 known breakage(s) vanished; please update test(s) 271 > # still have 2 known breakage(s) 272 > # failed 3 among remaining 7 test(s) 273 > 1..10 274 EOF 275" 276 277test_expect_success 'test --verbose'' 278 test_must_fail run_sub_test_lib_test \ 279 test-verbose "test verbose" --verbose <<-\EOF && 280 test_expect_success "passing test" true 281 test_expect_success "test with output" "echo foo" 282 test_expect_success "failing test" false 283 test_done 284 EOF 285 mv test-verbose/out test-verbose/out+ && 286 grep -v "^Initialized empty" test-verbose/out+ >test-verbose/out && 287 check_sub_test_lib_test test-verbose <<-\EOF 288 > expecting success: true 289 > ok 1 - passing test 290 > Z 291 > expecting success: echo foo 292 > foo 293 > ok 2 - test with output 294 > Z 295 > expecting success: false 296 > not ok 3 - failing test 297 > # false 298 > Z 299 > # failed 1 among 3 test(s) 300 > 1..3 301 EOF 302' 303 304test_expect_success 'test --verbose-only'' 305 test_must_fail run_sub_test_lib_test \ 306 test-verbose-only-2 "test verbose-only=2" \ 307 --verbose-only=2 <<-\EOF && 308 test_expect_success "passing test" true 309 test_expect_success "test with output" "echo foo" 310 test_expect_success "failing test" false 311 test_done 312 EOF 313 check_sub_test_lib_test test-verbose-only-2 <<-\EOF 314 > ok 1 - passing test 315 > Z 316 > expecting success: echo foo 317 > foo 318 > ok 2 - test with output 319 > Z 320 > not ok 3 - failing test 321 > # false 322 > # failed 1 among 3 test(s) 323 > 1..3 324 EOF 325' 326 327test_expect_success 'GIT_SKIP_TESTS'" 328 ( 329 GIT_SKIP_TESTS='git.2' && export GIT_SKIP_TESTS && 330 run_sub_test_lib_test git-skip-tests-basic \ 331 'GIT_SKIP_TESTS' <<-\\EOF && 332 for i in 1 2 3 333 do 334 test_expect_success\"passing test #\$i\"'true' 335 done 336 test_done 337 EOF 338 check_sub_test_lib_test git-skip-tests-basic <<-\\EOF 339 > ok 1 - passing test #1 340 > ok 2 # skip passing test #2 (GIT_SKIP_TESTS) 341 > ok 3 - passing test #3 342 > # passed all 3 test(s) 343 > 1..3 344 EOF 345 ) 346" 347 348test_expect_success 'GIT_SKIP_TESTS several tests'" 349 ( 350 GIT_SKIP_TESTS='git.2 git.5' && export GIT_SKIP_TESTS && 351 run_sub_test_lib_test git-skip-tests-several \ 352 'GIT_SKIP_TESTS several tests' <<-\\EOF && 353 for i in 1 2 3 4 5 6 354 do 355 test_expect_success\"passing test #\$i\"'true' 356 done 357 test_done 358 EOF 359 check_sub_test_lib_test git-skip-tests-several <<-\\EOF 360 > ok 1 - passing test #1 361 > ok 2 # skip passing test #2 (GIT_SKIP_TESTS) 362 > ok 3 - passing test #3 363 > ok 4 - passing test #4 364 > ok 5 # skip passing test #5 (GIT_SKIP_TESTS) 365 > ok 6 - passing test #6 366 > # passed all 6 test(s) 367 > 1..6 368 EOF 369 ) 370" 371 372test_expect_success 'GIT_SKIP_TESTS sh pattern'" 373 ( 374 GIT_SKIP_TESTS='git.[2-5]' && export GIT_SKIP_TESTS && 375 run_sub_test_lib_test git-skip-tests-sh-pattern \ 376 'GIT_SKIP_TESTS sh pattern' <<-\\EOF && 377 for i in 1 2 3 4 5 6 378 do 379 test_expect_success\"passing test #\$i\"'true' 380 done 381 test_done 382 EOF 383 check_sub_test_lib_test git-skip-tests-sh-pattern <<-\\EOF 384 > ok 1 - passing test #1 385 > ok 2 # skip passing test #2 (GIT_SKIP_TESTS) 386 > ok 3 # skip passing test #3 (GIT_SKIP_TESTS) 387 > ok 4 # skip passing test #4 (GIT_SKIP_TESTS) 388 > ok 5 # skip passing test #5 (GIT_SKIP_TESTS) 389 > ok 6 - passing test #6 390 > # passed all 6 test(s) 391 > 1..6 392 EOF 393 ) 394" 395 396test_expect_success '--run basic'" 397 run_sub_test_lib_test run-basic \ 398 '--run basic' --run='1 3 5' <<-\\EOF && 399 for i in 1 2 3 4 5 6 400 do 401 test_expect_success\"passing test #\$i\"'true' 402 done 403 test_done 404 EOF 405 check_sub_test_lib_test run-basic <<-\\EOF 406 > ok 1 - passing test #1 407 > ok 2 # skip passing test #2 (--run) 408 > ok 3 - passing test #3 409 > ok 4 # skip passing test #4 (--run) 410 > ok 5 - passing test #5 411 > ok 6 # skip passing test #6 (--run) 412 > # passed all 6 test(s) 413 > 1..6 414 EOF 415" 416 417test_expect_success '--run with a range'" 418 run_sub_test_lib_test run-range \ 419 '--run with a range' --run='1-3' <<-\\EOF && 420 for i in 1 2 3 4 5 6 421 do 422 test_expect_success\"passing test #\$i\"'true' 423 done 424 test_done 425 EOF 426 check_sub_test_lib_test run-range <<-\\EOF 427 > ok 1 - passing test #1 428 > ok 2 - passing test #2 429 > ok 3 - passing test #3 430 > ok 4 # skip passing test #4 (--run) 431 > ok 5 # skip passing test #5 (--run) 432 > ok 6 # skip passing test #6 (--run) 433 > # passed all 6 test(s) 434 > 1..6 435 EOF 436" 437 438test_expect_success '--run with two ranges'" 439 run_sub_test_lib_test run-two-ranges \ 440 '--run with two ranges' --run='1-2 5-6' <<-\\EOF && 441 for i in 1 2 3 4 5 6 442 do 443 test_expect_success\"passing test #\$i\"'true' 444 done 445 test_done 446 EOF 447 check_sub_test_lib_test run-two-ranges <<-\\EOF 448 > ok 1 - passing test #1 449 > ok 2 - passing test #2 450 > ok 3 # skip passing test #3 (--run) 451 > ok 4 # skip passing test #4 (--run) 452 > ok 5 - passing test #5 453 > ok 6 - passing test #6 454 > # passed all 6 test(s) 455 > 1..6 456 EOF 457" 458 459test_expect_success '--run with a left open range'" 460 run_sub_test_lib_test run-left-open-range \ 461 '--run with a left open range' --run='-3' <<-\\EOF && 462 for i in 1 2 3 4 5 6 463 do 464 test_expect_success\"passing test #\$i\"'true' 465 done 466 test_done 467 EOF 468 check_sub_test_lib_test run-left-open-range <<-\\EOF 469 > ok 1 - passing test #1 470 > ok 2 - passing test #2 471 > ok 3 - passing test #3 472 > ok 4 # skip passing test #4 (--run) 473 > ok 5 # skip passing test #5 (--run) 474 > ok 6 # skip passing test #6 (--run) 475 > # passed all 6 test(s) 476 > 1..6 477 EOF 478" 479 480test_expect_success '--run with a right open range'" 481 run_sub_test_lib_test run-right-open-range \ 482 '--run with a right open range' --run='4-' <<-\\EOF && 483 for i in 1 2 3 4 5 6 484 do 485 test_expect_success\"passing test #\$i\"'true' 486 done 487 test_done 488 EOF 489 check_sub_test_lib_test run-right-open-range <<-\\EOF 490 > ok 1 # skip passing test #1 (--run) 491 > ok 2 # skip passing test #2 (--run) 492 > ok 3 # skip passing test #3 (--run) 493 > ok 4 - passing test #4 494 > ok 5 - passing test #5 495 > ok 6 - passing test #6 496 > # passed all 6 test(s) 497 > 1..6 498 EOF 499" 500 501test_expect_success '--run with basic negation'" 502 run_sub_test_lib_test run-basic-neg \ 503 '--run with basic negation' --run='"'!3'"' <<-\\EOF && 504 for i in 1 2 3 4 5 6 505 do 506 test_expect_success\"passing test #\$i\"'true' 507 done 508 test_done 509 EOF 510 check_sub_test_lib_test run-basic-neg <<-\\EOF 511 > ok 1 - passing test #1 512 > ok 2 - passing test #2 513 > ok 3 # skip passing test #3 (--run) 514 > ok 4 - passing test #4 515 > ok 5 - passing test #5 516 > ok 6 - passing test #6 517 > # passed all 6 test(s) 518 > 1..6 519 EOF 520" 521 522test_expect_success '--run with two negations'" 523 run_sub_test_lib_test run-two-neg \ 524 '--run with two negations' --run='"'!3 !6'"' <<-\\EOF && 525 for i in 1 2 3 4 5 6 526 do 527 test_expect_success\"passing test #\$i\"'true' 528 done 529 test_done 530 EOF 531 check_sub_test_lib_test run-two-neg <<-\\EOF 532 > ok 1 - passing test #1 533 > ok 2 - passing test #2 534 > ok 3 # skip passing test #3 (--run) 535 > ok 4 - passing test #4 536 > ok 5 - passing test #5 537 > ok 6 # skip passing test #6 (--run) 538 > # passed all 6 test(s) 539 > 1..6 540 EOF 541" 542 543test_expect_success '--run a range and negation'" 544 run_sub_test_lib_test run-range-and-neg \ 545 '--run a range and negation' --run='"'-4 !2'"' <<-\\EOF && 546 for i in 1 2 3 4 5 6 547 do 548 test_expect_success\"passing test #\$i\"'true' 549 done 550 test_done 551 EOF 552 check_sub_test_lib_test run-range-and-neg <<-\\EOF 553 > ok 1 - passing test #1 554 > ok 2 # skip passing test #2 (--run) 555 > ok 3 - passing test #3 556 > ok 4 - passing test #4 557 > ok 5 # skip passing test #5 (--run) 558 > ok 6 # skip passing test #6 (--run) 559 > # passed all 6 test(s) 560 > 1..6 561 EOF 562" 563 564test_expect_success '--run range negation'" 565 run_sub_test_lib_test run-range-neg \ 566 '--run range negation' --run='"'!1-3'"' <<-\\EOF && 567 for i in 1 2 3 4 5 6 568 do 569 test_expect_success\"passing test #\$i\"'true' 570 done 571 test_done 572 EOF 573 check_sub_test_lib_test run-range-neg <<-\\EOF 574 > ok 1 # skip passing test #1 (--run) 575 > ok 2 # skip passing test #2 (--run) 576 > ok 3 # skip passing test #3 (--run) 577 > ok 4 - passing test #4 578 > ok 5 - passing test #5 579 > ok 6 - passing test #6 580 > # passed all 6 test(s) 581 > 1..6 582 EOF 583" 584 585test_expect_success '--run include, exclude and include'" 586 run_sub_test_lib_test run-inc-neg-inc \ 587 '--run include, exclude and include' \ 588 --run='"'1-5 !1-3 2'"' <<-\\EOF && 589 for i in 1 2 3 4 5 6 590 do 591 test_expect_success\"passing test #\$i\"'true' 592 done 593 test_done 594 EOF 595 check_sub_test_lib_test run-inc-neg-inc <<-\\EOF 596 > ok 1 # skip passing test #1 (--run) 597 > ok 2 - passing test #2 598 > ok 3 # skip passing test #3 (--run) 599 > ok 4 - passing test #4 600 > ok 5 - passing test #5 601 > ok 6 # skip passing test #6 (--run) 602 > # passed all 6 test(s) 603 > 1..6 604 EOF 605" 606 607test_expect_success '--run include, exclude and include, comma separated'" 608 run_sub_test_lib_test run-inc-neg-inc-comma \ 609 '--run include, exclude and include, comma separated' \ 610 --run=1-5,\!1-3,2 <<-\\EOF && 611 for i in 1 2 3 4 5 6 612 do 613 test_expect_success\"passing test #\$i\"'true' 614 done 615 test_done 616 EOF 617 check_sub_test_lib_test run-inc-neg-inc-comma <<-\\EOF 618 > ok 1 # skip passing test #1 (--run) 619 > ok 2 - passing test #2 620 > ok 3 # skip passing test #3 (--run) 621 > ok 4 - passing test #4 622 > ok 5 - passing test #5 623 > ok 6 # skip passing test #6 (--run) 624 > # passed all 6 test(s) 625 > 1..6 626 EOF 627" 628 629test_expect_success '--run exclude and include'" 630 run_sub_test_lib_test run-neg-inc \ 631 '--run exclude and include' \ 632 --run='"'!3- 5'"' <<-\\EOF && 633 for i in 1 2 3 4 5 6 634 do 635 test_expect_success\"passing test #\$i\"'true' 636 done 637 test_done 638 EOF 639 check_sub_test_lib_test run-neg-inc <<-\\EOF 640 > ok 1 - passing test #1 641 > ok 2 - passing test #2 642 > ok 3 # skip passing test #3 (--run) 643 > ok 4 # skip passing test #4 (--run) 644 > ok 5 - passing test #5 645 > ok 6 # skip passing test #6 (--run) 646 > # passed all 6 test(s) 647 > 1..6 648 EOF 649" 650 651test_expect_success '--run empty selectors'" 652 run_sub_test_lib_test run-empty-sel \ 653 '--run empty selectors' \ 654 --run='1,,3,,,5' <<-\\EOF && 655 for i in 1 2 3 4 5 6 656 do 657 test_expect_success\"passing test #\$i\"'true' 658 done 659 test_done 660 EOF 661 check_sub_test_lib_test run-empty-sel <<-\\EOF 662 > ok 1 - passing test #1 663 > ok 2 # skip passing test #2 (--run) 664 > ok 3 - passing test #3 665 > ok 4 # skip passing test #4 (--run) 666 > ok 5 - passing test #5 667 > ok 6 # skip passing test #6 (--run) 668 > # passed all 6 test(s) 669 > 1..6 670 EOF 671" 672 673test_expect_success '--run invalid range start'" 674 run_sub_test_lib_test_err run-inv-range-start \ 675 '--run invalid range start' \ 676 --run='a-5' <<-\\EOF && 677 test_expect_success\"passing test #1\"'true' 678 test_done 679 EOF 680 check_sub_test_lib_test_err run-inv-range-start \ 681 <<-\\EOF_OUT 3<<-\\EOF_ERR 682 > FATAL: Unexpected exit with code 1 683 EOF_OUT 684 > error: --run: invalid non-numeric in range start: 'a-5' 685 EOF_ERR 686" 687 688test_expect_success '--run invalid range end'" 689 run_sub_test_lib_test_err run-inv-range-end \ 690 '--run invalid range end' \ 691 --run='1-z' <<-\\EOF && 692 test_expect_success\"passing test #1\"'true' 693 test_done 694 EOF 695 check_sub_test_lib_test_err run-inv-range-end \ 696 <<-\\EOF_OUT 3<<-\\EOF_ERR 697 > FATAL: Unexpected exit with code 1 698 EOF_OUT 699 > error: --run: invalid non-numeric in range end: '1-z' 700 EOF_ERR 701" 702 703test_expect_success '--run invalid selector'" 704 run_sub_test_lib_test_err run-inv-selector \ 705 '--run invalid selector' \ 706 --run='1?' <<-\\EOF && 707 test_expect_success\"passing test #1\"'true' 708 test_done 709 EOF 710 check_sub_test_lib_test_err run-inv-selector \ 711 <<-\\EOF_OUT 3<<-\\EOF_ERR 712 > FATAL: Unexpected exit with code 1 713 EOF_OUT 714 > error: --run: invalid non-numeric in test selector: '1?' 715 EOF_ERR 716" 717 718 719test_set_prereq HAVEIT 720haveit=no 721test_expect_success HAVEIT 'test runs if prerequisite is satisfied'' 722 test_have_prereq HAVEIT && 723 haveit=yes 724' 725donthaveit=yes 726test_expect_success DONTHAVEIT 'unmet prerequisite causes test to be skipped'' 727 donthaveit=no 728' 729iftest$haveit$donthaveit!= yesyes 730then 731 say "bug in test framework: prerequisite tags do not work reliably" 732exit1 733fi 734 735test_set_prereq HAVETHIS 736haveit=no 737test_expect_success HAVETHIS,HAVEIT 'test runs if prerequisites are satisfied'' 738 test_have_prereq HAVEIT && 739 test_have_prereq HAVETHIS && 740 haveit=yes 741' 742donthaveit=yes 743test_expect_success HAVEIT,DONTHAVEIT 'unmet prerequisites causes test to be skipped'' 744 donthaveit=no 745' 746donthaveiteither=yes 747test_expect_success DONTHAVEIT,HAVEIT 'unmet prerequisites causes test to be skipped'' 748 donthaveiteither=no 749' 750iftest$haveit$donthaveit$donthaveiteither!= yesyesyes 751then 752 say "bug in test framework: multiple prerequisite tags do not work reliably" 753exit1 754fi 755 756test_lazy_prereq LAZY_TRUE true 757havetrue=no 758test_expect_success LAZY_TRUE 'test runs if lazy prereq is satisfied'' 759 havetrue=yes 760' 761donthavetrue=yes 762test_expect_success !LAZY_TRUE 'missing lazy prereqs skip tests'' 763 donthavetrue=no 764' 765 766iftest"$havetrue$donthavetrue"!= yesyes 767then 768 say 'bug in test framework: lazy prerequisites do not work' 769exit1 770fi 771 772test_lazy_prereq LAZY_FALSE false 773nothavefalse=no 774test_expect_success !LAZY_FALSE 'negative lazy prereqs checked'' 775 nothavefalse=yes 776' 777havefalse=yes 778test_expect_success LAZY_FALSE 'missing negative lazy prereqs will skip'' 779 havefalse=no 780' 781 782iftest"$nothavefalse$havefalse"!= yesyes 783then 784 say 'bug in test framework: negative lazy prerequisites do not work' 785exit1 786fi 787 788clean=no 789test_expect_success 'tests clean up after themselves'' 790 test_when_finished clean=yes 791' 792 793iftest$clean!=yes 794then 795 say "bug in test framework: basic cleanup command does not work reliably" 796exit1 797fi 798 799test_expect_success 'tests clean up even on failures'" 800 test_must_fail run_sub_test_lib_test \ 801 failing-cleanup 'Failing tests with cleanup commands' <<-\\EOF && 802 test_expect_success 'tests clean up even after a failure' ' 803 touch clean-after-failure && 804 test_when_finished rm clean-after-failure && 805 (exit 1) 806 ' 807 test_expect_success 'failure to clean up causes the test to fail' ' 808 test_when_finished\"(exit 2)\" 809 ' 810 test_done 811 EOF 812 check_sub_test_lib_test failing-cleanup <<-\\EOF 813 > not ok 1 - tests clean up even after a failure 814 > # Z 815 > # touch clean-after-failure && 816 > # test_when_finished rm clean-after-failure && 817 > # (exit 1) 818 > # Z 819 > not ok 2 - failure to clean up causes the test to fail 820 > # Z 821 > # test_when_finished\"(exit 2)\" 822 > # Z 823 > # failed 2 among 2 test(s) 824 > 1..2 825 EOF 826" 827 828################################################################ 829# Basics of the basics 830 831# updating a new file without --add should fail. 832test_expect_success 'git update-index without --add should fail adding'' 833 test_must_fail git update-index should-be-empty 834' 835 836# and with --add it should succeed, even if it is empty (it used to fail). 837test_expect_success 'git update-index with --add should succeed'' 838 git update-index --add should-be-empty 839' 840 841test_expect_success 'writing tree out with git write-tree'' 842 tree=$(git write-tree) 843' 844 845# we know the shape and contents of the tree and know the object ID for it. 846test_expect_success SHA1 'validate object ID of a known tree'' 847 test "$tree" = 7bb943559a305bdd6bdee2cef6e5df2413c3d30a 848 ' 849 850# Removing paths. 851test_expect_success 'git update-index without --remove should fail removing'' 852 rm -f should-be-empty full-of-directories && 853 test_must_fail git update-index should-be-empty 854' 855 856test_expect_success 'git update-index with --remove should be able to remove'' 857 git update-index --remove should-be-empty 858' 859 860# Empty tree can be written with recent write-tree. 861test_expect_success 'git write-tree should be able to write an empty tree'' 862 tree=$(git write-tree) 863' 864 865test_expect_success 'validate object ID of a known tree'' 866 test "$tree" =$EMPTY_TREE 867' 868 869# Various types of objects 870 871test_expect_success 'adding various types of objects with git update-index --add'' 872 mkdir path2 path3 path3/subp3 && 873 paths="path0 path2/file2 path3/file3 path3/subp3/file3" && 874 ( 875 for p in$paths 876 do 877 echo "hello$p" >$p|| exit 1 878 test_ln_s_add "hello$p"${p}sym || exit 1 879 done 880 ) && 881 find path* ! -type d -print | xargs git update-index --add 882' 883 884# Show them and see that matches what we expect. 885test_expect_success 'showing stage with git ls-files --stage'' 886 git ls-files --stage >current 887' 888 889test_expect_success SHA1 'validate git ls-files output for a known tree'' 890 cat >expected <<-\EOF && 891 100644 f87290f8eb2cbbea7857214459a0739927eab154 0 path0 892 120000 15a98433ae33114b085f3eb3bb03b832b3180a01 0 path0sym 893 100644 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 0 path2/file2 894 120000 d8ce161addc5173867a3c3c730924388daedbc38 0 path2/file2sym 895 100644 0aa34cae68d0878578ad119c86ca2b5ed5b28376 0 path3/file3 896 120000 8599103969b43aff7e430efea79ca4636466794f 0 path3/file3sym 897 100644 00fb5908cb97c2564a9783c0c64087333b3b464f 0 path3/subp3/file3 898 120000 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 0 path3/subp3/file3sym 899 EOF 900 test_cmp expected current 901' 902 903test_expect_success 'writing tree out with git write-tree'' 904 tree=$(git write-tree) 905' 906 907test_expect_success SHA1 'validate object ID for a known tree'' 908 test "$tree" = 087704a96baf1c2d1c869a8b084481e121c88b5b 909' 910 911test_expect_success 'showing tree with git ls-tree'' 912 git ls-tree$tree>current 913' 914 915test_expect_success SHA1 'git ls-tree output for a known tree'' 916 cat >expected <<-\EOF && 917 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0 918 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym 919 040000 tree 58a09c23e2ca152193f2786e06986b7b6712bdbe path2 920 040000 tree 21ae8269cacbe57ae09138dcc3a2887f904d02b3 path3 921 EOF 922 test_cmp expected current 923' 924 925# This changed in ls-tree pathspec change -- recursive does 926# not show tree nodes anymore. 927test_expect_success 'showing tree with git ls-tree -r'' 928 git ls-tree -r$tree>current 929' 930 931test_expect_success SHA1 'git ls-tree -r output for a known tree'' 932 cat >expected <<-\EOF && 933 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0 934 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym 935 100644 blob 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 path2/file2 936 120000 blob d8ce161addc5173867a3c3c730924388daedbc38 path2/file2sym 937 100644 blob 0aa34cae68d0878578ad119c86ca2b5ed5b28376 path3/file3 938 120000 blob 8599103969b43aff7e430efea79ca4636466794f path3/file3sym 939 100644 blob 00fb5908cb97c2564a9783c0c64087333b3b464f path3/subp3/file3 940 120000 blob 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c path3/subp3/file3sym 941 EOF 942 test_cmp expected current 943' 944 945# But with -r -t we can have both. 946test_expect_success 'showing tree with git ls-tree -r -t'' 947 git ls-tree -r -t$tree>current 948' 949 950test_expect_success SHA1 'git ls-tree -r output for a known tree'' 951 cat >expected <<-\EOF && 952 100644 blob f87290f8eb2cbbea7857214459a0739927eab154 path0 953 120000 blob 15a98433ae33114b085f3eb3bb03b832b3180a01 path0sym 954 040000 tree 58a09c23e2ca152193f2786e06986b7b6712bdbe path2 955 100644 blob 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 path2/file2 956 120000 blob d8ce161addc5173867a3c3c730924388daedbc38 path2/file2sym 957 040000 tree 21ae8269cacbe57ae09138dcc3a2887f904d02b3 path3 958 100644 blob 0aa34cae68d0878578ad119c86ca2b5ed5b28376 path3/file3 959 120000 blob 8599103969b43aff7e430efea79ca4636466794f path3/file3sym 960 040000 tree 3c5e5399f3a333eddecce7a9b9465b63f65f51e2 path3/subp3 961 100644 blob 00fb5908cb97c2564a9783c0c64087333b3b464f path3/subp3/file3 962 120000 blob 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c path3/subp3/file3sym 963 EOF 964 test_cmp expected current 965' 966 967test_expect_success 'writing partial tree out with git write-tree --prefix'' 968 ptree=$(git write-tree --prefix=path3) 969' 970 971test_expect_success SHA1 'validate object ID for a known tree'' 972 test "$ptree" = 21ae8269cacbe57ae09138dcc3a2887f904d02b3 973' 974 975test_expect_success 'writing partial tree out with git write-tree --prefix'' 976 ptree=$(git write-tree --prefix=path3/subp3) 977' 978 979test_expect_success SHA1 'validate object ID for a known tree'' 980 test "$ptree" = 3c5e5399f3a333eddecce7a9b9465b63f65f51e2 981' 982 983test_expect_success 'put invalid objects into the index'' 984 rm -f .git/index && 985 cat >badobjects <<-\EOF && 986 100644 blob 1000000000000000000000000000000000000000 dir/file1 987 100644 blob 2000000000000000000000000000000000000000 dir/file2 988 100644 blob 3000000000000000000000000000000000000000 dir/file3 989 100644 blob 4000000000000000000000000000000000000000 dir/file4 990 100644 blob 5000000000000000000000000000000000000000 dir/file5 991 EOF 992 git update-index --index-info <badobjects 993' 994 995test_expect_success 'writing this tree without --missing-ok'' 996 test_must_fail git write-tree 997' 998 999test_expect_success 'writing this tree with --missing-ok''1000 git write-tree --missing-ok1001'100210031004################################################################1005test_expect_success 'git read-tree followed by write-tree should be idempotent''1006 rm -f .git/index &&1007 git read-tree$tree&&1008 test -f .git/index &&1009 newtree=$(git write-tree)&&1010 test "$newtree" = "$tree"1011'10121013test_expect_success SHA1 'validate git diff-files output for a know cache/work tree state''1014 cat >expected <<\EOF &&1015:100644 100644 f87290f8eb2cbbea7857214459a0739927eab154 0000000000000000000000000000000000000000 M path01016:120000 120000 15a98433ae33114b085f3eb3bb03b832b3180a01 0000000000000000000000000000000000000000 M path0sym1017:100644 100644 3feff949ed00a62d9f7af97c15cd8a30595e7ac7 0000000000000000000000000000000000000000 M path2/file21018:120000 120000 d8ce161addc5173867a3c3c730924388daedbc38 0000000000000000000000000000000000000000 M path2/file2sym1019:100644 100644 0aa34cae68d0878578ad119c86ca2b5ed5b28376 0000000000000000000000000000000000000000 M path3/file31020:120000 120000 8599103969b43aff7e430efea79ca4636466794f 0000000000000000000000000000000000000000 M path3/file3sym1021:100644 100644 00fb5908cb97c2564a9783c0c64087333b3b464f 0000000000000000000000000000000000000000 M path3/subp3/file31022:120000 120000 6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 0000000000000000000000000000000000000000 M path3/subp3/file3sym1023EOF1024 git diff-files >current &&1025 test_cmp current expected1026'10271028test_expect_success 'git update-index --refresh should succeed''1029 git update-index --refresh1030'10311032test_expect_success 'no diff after checkout and git update-index --refresh''1033 git diff-files >current &&1034 cmp -s current /dev/null1035'10361037################################################################1038P=087704a96baf1c2d1c869a8b084481e121c88b5b10391040test_expect_success SHA1 'git commit-tree records the correct tree in a commit''1041 commit0=$(echo NO | git commit-tree $P)&&1042 tree=$(git show --pretty=raw$commit0|1043 sed -n -e "s/^tree //p" -e "/^author /q") &&1044 test "z$tree" = "z$P"1045'10461047test_expect_success SHA1 'git commit-tree records the correct parent in a commit''1048 commit1=$(echo NO | git commit-tree $P -p $commit0)&&1049 parent=$(git show --pretty=raw$commit1|1050 sed -n -e "s/^parent //p" -e "/^author /q") &&1051 test "z$commit0" = "z$parent"1052'10531054test_expect_success SHA1 'git commit-tree omits duplicated parent in a commit''1055 commit2=$(echo NO | git commit-tree $P -p $commit0 -p $commit0)&&1056 parent=$(git show --pretty=raw$commit2|1057 sed -n -e "s/^parent //p" -e "/^author /q" |1058 sort -u) &&1059 test "z$commit0" = "z$parent" &&1060 numparent=$(git show --pretty=raw$commit2|1061 sed -n -e "s/^parent //p" -e "/^author /q" |1062 wc -l) &&1063 test$numparent= 11064'10651066test_expect_success 'update-index D/F conflict''1067 mv path0 tmp &&1068 mv path2 path0 &&1069 mv tmp path2 &&1070 git update-index --add --replace path2 path0/file2 &&1071 numpath0=$(git ls-files path0 | wc -l)&&1072 test$numpath0= 11073'10741075test_expect_success 'very long name in the index handled sanely''10761077 a=a && # 11078 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a&& # 161079 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a&& # 2561080 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a&& # 40961081 a=${a}q &&10821083 >path4 &&1084 git update-index --add path4 &&1085 (1086 git ls-files -s path4 |1087 sed -e "s/ .*/ /" |1088 tr -d "\012" &&1089 echo "$a"1090 ) | git update-index --index-info &&1091 len=$(git ls-files "a*" | wc -c)&&1092 test$len= 40981093'10941095test_done