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# Check whether the shell supports the "local" keyword. "local" is not 29# POSIX-standard, but it is very widely supported by POSIX-compliant 30# shells, and we rely on it within Git's test framework. 31# 32# If your shell fails this test, the results of other tests may be 33# unreliable. You may wish to report the problem to the Git mailing 34# list <git@vger.kernel.org>, as it could cause us to reconsider 35# relying on "local". 36test_expect_success 'verify that the running shell supports "local"'' 37 x="notlocal" && 38 echo "local" >expected1 && 39 try_local_x >actual1 && 40 test_cmp expected1 actual1 && 41 echo "notlocal" >expected2 && 42 echo "$x" >actual2 && 43 test_cmp expected2 actual2 44' 45 46################################################################ 47# git init has been done in an empty repository. 48# make sure it is empty. 49 50test_expect_success '.git/objects should be empty after git init in an empty repo'' 51 find .git/objects -type f -print >should-be-empty && 52 test_line_count = 0 should-be-empty 53' 54 55# also it should have 2 subdirectories; no fan-out anymore, pack, and info. 56# 3 is counting "objects" itself 57test_expect_success '.git/objects should have 3 subdirectories'' 58 find .git/objects -type d -print >full-of-directories && 59 test_line_count = 3 full-of-directories 60' 61 62################################################################ 63# Test harness 64test_expect_success 'success is reported like this'' 65 : 66' 67 68_run_sub_test_lib_test_common () { 69 neg="$1" name="$2" descr="$3"# stdin is the body of the test code 70shift3 71mkdir"$name"&& 72( 73# Pretend we're not running under a test harness, whether we 74# are or not. The test-lib output depends on the setting of 75# this variable, so we need a stable setting under which to run 76# the sub-test. 77 sane_unset HARNESS_ACTIVE && 78cd"$name"&& 79cat>"$name.sh"<<-EOF && 80 #!$SHELL_PATH 81 82 test_description='$descr(run in sub test-lib) 83 84 This is run in a sub test-lib so that we do not get incorrect 85 passing metrics 86 ' 87 88 # Tell the framework that we are self-testing to make sure 89 # it yields a stable result. 90 GIT_TEST_FRAMEWORK_SELFTEST=t && 91 92 # Point to the t/test-lib.sh, which isn't in ../ as usual 93 . "\$TEST_DIRECTORY"/test-lib.sh 94 EOF 95cat>>"$name.sh"&& 96chmod+x "$name.sh"&& 97export TEST_DIRECTORY && 98 TEST_OUTPUT_DIRECTORY=$(pwd)&& 99export TEST_OUTPUT_DIRECTORY && 100iftest -z"$neg" 101then 102 ./"$name.sh""$@">out 2>err 103else 104! ./"$name.sh""$@">out 2>err 105fi 106) 107} 108 109run_sub_test_lib_test () { 110 _run_sub_test_lib_test_common ''"$@" 111} 112 113run_sub_test_lib_test_err () { 114 _run_sub_test_lib_test_common '!'"$@" 115} 116 117check_sub_test_lib_test () { 118 name="$1"# stdin is the expected output from the test 119( 120cd"$name"&& 121 test_must_be_empty err && 122sed-e's/^> //'-e's/Z$//'>expect && 123 test_cmp expect out 124) 125} 126 127check_sub_test_lib_test_err () { 128 name="$1"# stdin is the expected output from the test 129# expected error output is in descriptior 3 130( 131cd"$name"&& 132sed-e's/^> //'-e's/Z$//'>expect.out && 133 test_cmp expect.out out && 134sed-e's/^> //'-e's/Z$//'<&3>expect.err && 135 test_cmp expect.err err 136) 137} 138 139test_expect_success 'pretend we have a fully passing test suite'" 140 run_sub_test_lib_test full-pass '3 passing tests' <<-\\EOF && 141 for i in 1 2 3 142 do 143 test_expect_success\"passing test #\$i\"'true' 144 done 145 test_done 146 EOF 147 check_sub_test_lib_test full-pass <<-\\EOF 148 > ok 1 - passing test #1 149 > ok 2 - passing test #2 150 > ok 3 - passing test #3 151 > # passed all 3 test(s) 152 > 1..3 153 EOF 154" 155 156test_expect_success 'pretend we have a partially passing test suite'" 157 test_must_fail run_sub_test_lib_test \ 158 partial-pass '2/3 tests passing' <<-\\EOF && 159 test_expect_success 'passing test #1' 'true' 160 test_expect_success 'failing test #2' 'false' 161 test_expect_success 'passing test #3' 'true' 162 test_done 163 EOF 164 check_sub_test_lib_test partial-pass <<-\\EOF 165 > ok 1 - passing test #1 166 > not ok 2 - failing test #2 167 # false 168 > ok 3 - passing test #3 169 > # failed 1 among 3 test(s) 170 > 1..3 171 EOF 172" 173 174test_expect_success 'pretend we have a known breakage'" 175 run_sub_test_lib_test failing-todo 'A failing TODO test' <<-\\EOF && 176 test_expect_success 'passing test' 'true' 177 test_expect_failure 'pretend we have a known breakage' 'false' 178 test_done 179 EOF 180 check_sub_test_lib_test failing-todo <<-\\EOF 181 > ok 1 - passing test 182 > not ok 2 - pretend we have a known breakage # TODO known breakage 183 > # still have 1 known breakage(s) 184 > # passed all remaining 1 test(s) 185 > 1..2 186 EOF 187" 188 189test_expect_success 'pretend we have fixed a known breakage'" 190 run_sub_test_lib_test passing-todo 'A passing TODO test' <<-\\EOF && 191 test_expect_failure 'pretend we have fixed a known breakage' 'true' 192 test_done 193 EOF 194 check_sub_test_lib_test passing-todo <<-\\EOF 195 > ok 1 - pretend we have fixed a known breakage # TODO known breakage vanished 196 > # 1 known breakage(s) vanished; please update test(s) 197 > 1..1 198 EOF 199" 200 201test_expect_success 'pretend we have fixed one of two known breakages (run in sub test-lib)'" 202 run_sub_test_lib_test partially-passing-todos \ 203 '2 TODO tests, one passing' <<-\\EOF && 204 test_expect_failure 'pretend we have a known breakage' 'false' 205 test_expect_success 'pretend we have a passing test' 'true' 206 test_expect_failure 'pretend we have fixed another known breakage' 'true' 207 test_done 208 EOF 209 check_sub_test_lib_test partially-passing-todos <<-\\EOF 210 > not ok 1 - pretend we have a known breakage # TODO known breakage 211 > ok 2 - pretend we have a passing test 212 > ok 3 - pretend we have fixed another known breakage # TODO known breakage vanished 213 > # 1 known breakage(s) vanished; please update test(s) 214 > # still have 1 known breakage(s) 215 > # passed all remaining 1 test(s) 216 > 1..3 217 EOF 218" 219 220test_expect_success 'pretend we have a pass, fail, and known breakage'" 221 test_must_fail run_sub_test_lib_test \ 222 mixed-results1 'mixed results #1' <<-\\EOF && 223 test_expect_success 'passing test' 'true' 224 test_expect_success 'failing test' 'false' 225 test_expect_failure 'pretend we have a known breakage' 'false' 226 test_done 227 EOF 228 check_sub_test_lib_test mixed-results1 <<-\\EOF 229 > ok 1 - passing test 230 > not ok 2 - failing test 231 > # false 232 > not ok 3 - pretend we have a known breakage # TODO known breakage 233 > # still have 1 known breakage(s) 234 > # failed 1 among remaining 2 test(s) 235 > 1..3 236 EOF 237" 238 239test_expect_success 'pretend we have a mix of all possible results'" 240 test_must_fail run_sub_test_lib_test \ 241 mixed-results2 'mixed results #2' <<-\\EOF && 242 test_expect_success 'passing test' 'true' 243 test_expect_success 'passing test' 'true' 244 test_expect_success 'passing test' 'true' 245 test_expect_success 'passing test' 'true' 246 test_expect_success 'failing test' 'false' 247 test_expect_success 'failing test' 'false' 248 test_expect_success 'failing test' 'false' 249 test_expect_failure 'pretend we have a known breakage' 'false' 250 test_expect_failure 'pretend we have a known breakage' 'false' 251 test_expect_failure 'pretend we have fixed a known breakage' 'true' 252 test_done 253 EOF 254 check_sub_test_lib_test mixed-results2 <<-\\EOF 255 > ok 1 - passing test 256 > ok 2 - passing test 257 > ok 3 - passing test 258 > ok 4 - passing test 259 > not ok 5 - failing test 260 > # false 261 > not ok 6 - failing test 262 > # false 263 > not ok 7 - failing test 264 > # false 265 > not ok 8 - pretend we have a known breakage # TODO known breakage 266 > not ok 9 - pretend we have a known breakage # TODO known breakage 267 > ok 10 - pretend we have fixed a known breakage # TODO known breakage vanished 268 > # 1 known breakage(s) vanished; please update test(s) 269 > # still have 2 known breakage(s) 270 > # failed 3 among remaining 7 test(s) 271 > 1..10 272 EOF 273" 274 275test_expect_success C_LOCALE_OUTPUT 'test --verbose'' 276 test_must_fail run_sub_test_lib_test \ 277 test-verbose "test verbose" --verbose <<-\EOF && 278 test_expect_success "passing test" true 279 test_expect_success "test with output" "echo foo" 280 test_expect_success "failing test" false 281 test_done 282 EOF 283 mv test-verbose/out test-verbose/out+ && 284 grep -v "^Initialized empty" test-verbose/out+ >test-verbose/out && 285 check_sub_test_lib_test test-verbose <<-\EOF 286 > expecting success: true 287 > ok 1 - passing test 288 > Z 289 > expecting success: echo foo 290 > foo 291 > ok 2 - test with output 292 > Z 293 > expecting success: false 294 > not ok 3 - failing test 295 > # false 296 > Z 297 > # failed 1 among 3 test(s) 298 > 1..3 299 EOF 300' 301 302test_expect_success 'test --verbose-only'' 303 test_must_fail run_sub_test_lib_test \ 304 test-verbose-only-2 "test verbose-only=2" \ 305 --verbose-only=2 <<-\EOF && 306 test_expect_success "passing test" true 307 test_expect_success "test with output" "echo foo" 308 test_expect_success "failing test" false 309 test_done 310 EOF 311 check_sub_test_lib_test test-verbose-only-2 <<-\EOF 312 > ok 1 - passing test 313 > Z 314 > expecting success: echo foo 315 > foo 316 > ok 2 - test with output 317 > Z 318 > not ok 3 - failing test 319 > # false 320 > # failed 1 among 3 test(s) 321 > 1..3 322 EOF 323' 324 325test_expect_success 'GIT_SKIP_TESTS'" 326 ( 327 GIT_SKIP_TESTS='git.2' && export GIT_SKIP_TESTS && 328 run_sub_test_lib_test git-skip-tests-basic \ 329 'GIT_SKIP_TESTS' <<-\\EOF && 330 for i in 1 2 3 331 do 332 test_expect_success\"passing test #\$i\"'true' 333 done 334 test_done 335 EOF 336 check_sub_test_lib_test git-skip-tests-basic <<-\\EOF 337 > ok 1 - passing test #1 338 > ok 2 # skip passing test #2 (GIT_SKIP_TESTS) 339 > ok 3 - passing test #3 340 > # passed all 3 test(s) 341 > 1..3 342 EOF 343 ) 344" 345 346test_expect_success 'GIT_SKIP_TESTS several tests'" 347 ( 348 GIT_SKIP_TESTS='git.2 git.5' && export GIT_SKIP_TESTS && 349 run_sub_test_lib_test git-skip-tests-several \ 350 'GIT_SKIP_TESTS several tests' <<-\\EOF && 351 for i in 1 2 3 4 5 6 352 do 353 test_expect_success\"passing test #\$i\"'true' 354 done 355 test_done 356 EOF 357 check_sub_test_lib_test git-skip-tests-several <<-\\EOF 358 > ok 1 - passing test #1 359 > ok 2 # skip passing test #2 (GIT_SKIP_TESTS) 360 > ok 3 - passing test #3 361 > ok 4 - passing test #4 362 > ok 5 # skip passing test #5 (GIT_SKIP_TESTS) 363 > ok 6 - passing test #6 364 > # passed all 6 test(s) 365 > 1..6 366 EOF 367 ) 368" 369 370test_expect_success 'GIT_SKIP_TESTS sh pattern'" 371 ( 372 GIT_SKIP_TESTS='git.[2-5]' && export GIT_SKIP_TESTS && 373 run_sub_test_lib_test git-skip-tests-sh-pattern \ 374 'GIT_SKIP_TESTS sh pattern' <<-\\EOF && 375 for i in 1 2 3 4 5 6 376 do 377 test_expect_success\"passing test #\$i\"'true' 378 done 379 test_done 380 EOF 381 check_sub_test_lib_test git-skip-tests-sh-pattern <<-\\EOF 382 > ok 1 - passing test #1 383 > ok 2 # skip passing test #2 (GIT_SKIP_TESTS) 384 > ok 3 # skip passing test #3 (GIT_SKIP_TESTS) 385 > ok 4 # skip passing test #4 (GIT_SKIP_TESTS) 386 > ok 5 # skip passing test #5 (GIT_SKIP_TESTS) 387 > ok 6 - passing test #6 388 > # passed all 6 test(s) 389 > 1..6 390 EOF 391 ) 392" 393 394test_expect_success '--run basic'" 395 run_sub_test_lib_test run-basic \ 396 '--run basic' --run='1 3 5' <<-\\EOF && 397 for i in 1 2 3 4 5 6 398 do 399 test_expect_success\"passing test #\$i\"'true' 400 done 401 test_done 402 EOF 403 check_sub_test_lib_test run-basic <<-\\EOF 404 > ok 1 - passing test #1 405 > ok 2 # skip passing test #2 (--run) 406 > ok 3 - passing test #3 407 > ok 4 # skip passing test #4 (--run) 408 > ok 5 - passing test #5 409 > ok 6 # skip passing test #6 (--run) 410 > # passed all 6 test(s) 411 > 1..6 412 EOF 413" 414 415test_expect_success '--run with a range'" 416 run_sub_test_lib_test run-range \ 417 '--run with a range' --run='1-3' <<-\\EOF && 418 for i in 1 2 3 4 5 6 419 do 420 test_expect_success\"passing test #\$i\"'true' 421 done 422 test_done 423 EOF 424 check_sub_test_lib_test run-range <<-\\EOF 425 > ok 1 - passing test #1 426 > ok 2 - passing test #2 427 > ok 3 - passing test #3 428 > ok 4 # skip passing test #4 (--run) 429 > ok 5 # skip passing test #5 (--run) 430 > ok 6 # skip passing test #6 (--run) 431 > # passed all 6 test(s) 432 > 1..6 433 EOF 434" 435 436test_expect_success '--run with two ranges'" 437 run_sub_test_lib_test run-two-ranges \ 438 '--run with two ranges' --run='1-2 5-6' <<-\\EOF && 439 for i in 1 2 3 4 5 6 440 do 441 test_expect_success\"passing test #\$i\"'true' 442 done 443 test_done 444 EOF 445 check_sub_test_lib_test run-two-ranges <<-\\EOF 446 > ok 1 - passing test #1 447 > ok 2 - passing test #2 448 > ok 3 # skip passing test #3 (--run) 449 > ok 4 # skip passing test #4 (--run) 450 > ok 5 - passing test #5 451 > ok 6 - passing test #6 452 > # passed all 6 test(s) 453 > 1..6 454 EOF 455" 456 457test_expect_success '--run with a left open range'" 458 run_sub_test_lib_test run-left-open-range \ 459 '--run with a left open range' --run='-3' <<-\\EOF && 460 for i in 1 2 3 4 5 6 461 do 462 test_expect_success\"passing test #\$i\"'true' 463 done 464 test_done 465 EOF 466 check_sub_test_lib_test run-left-open-range <<-\\EOF 467 > ok 1 - passing test #1 468 > ok 2 - passing test #2 469 > ok 3 - passing test #3 470 > ok 4 # skip passing test #4 (--run) 471 > ok 5 # skip passing test #5 (--run) 472 > ok 6 # skip passing test #6 (--run) 473 > # passed all 6 test(s) 474 > 1..6 475 EOF 476" 477 478test_expect_success '--run with a right open range'" 479 run_sub_test_lib_test run-right-open-range \ 480 '--run with a right open range' --run='4-' <<-\\EOF && 481 for i in 1 2 3 4 5 6 482 do 483 test_expect_success\"passing test #\$i\"'true' 484 done 485 test_done 486 EOF 487 check_sub_test_lib_test run-right-open-range <<-\\EOF 488 > ok 1 # skip passing test #1 (--run) 489 > ok 2 # skip passing test #2 (--run) 490 > ok 3 # skip passing test #3 (--run) 491 > ok 4 - passing test #4 492 > ok 5 - passing test #5 493 > ok 6 - passing test #6 494 > # passed all 6 test(s) 495 > 1..6 496 EOF 497" 498 499test_expect_success '--run with basic negation'" 500 run_sub_test_lib_test run-basic-neg \ 501 '--run with basic negation' --run='"'!3'"' <<-\\EOF && 502 for i in 1 2 3 4 5 6 503 do 504 test_expect_success\"passing test #\$i\"'true' 505 done 506 test_done 507 EOF 508 check_sub_test_lib_test run-basic-neg <<-\\EOF 509 > ok 1 - passing test #1 510 > ok 2 - passing test #2 511 > ok 3 # skip passing test #3 (--run) 512 > ok 4 - passing test #4 513 > ok 5 - passing test #5 514 > ok 6 - passing test #6 515 > # passed all 6 test(s) 516 > 1..6 517 EOF 518" 519 520test_expect_success '--run with two negations'" 521 run_sub_test_lib_test run-two-neg \ 522 '--run with two negations' --run='"'!3 !6'"' <<-\\EOF && 523 for i in 1 2 3 4 5 6 524 do 525 test_expect_success\"passing test #\$i\"'true' 526 done 527 test_done 528 EOF 529 check_sub_test_lib_test run-two-neg <<-\\EOF 530 > ok 1 - passing test #1 531 > ok 2 - passing test #2 532 > ok 3 # skip passing test #3 (--run) 533 > ok 4 - passing test #4 534 > ok 5 - passing test #5 535 > ok 6 # skip passing test #6 (--run) 536 > # passed all 6 test(s) 537 > 1..6 538 EOF 539" 540 541test_expect_success '--run a range and negation'" 542 run_sub_test_lib_test run-range-and-neg \ 543 '--run a range and negation' --run='"'-4 !2'"' <<-\\EOF && 544 for i in 1 2 3 4 5 6 545 do 546 test_expect_success\"passing test #\$i\"'true' 547 done 548 test_done 549 EOF 550 check_sub_test_lib_test run-range-and-neg <<-\\EOF 551 > ok 1 - passing test #1 552 > ok 2 # skip passing test #2 (--run) 553 > ok 3 - passing test #3 554 > ok 4 - passing test #4 555 > ok 5 # skip passing test #5 (--run) 556 > ok 6 # skip passing test #6 (--run) 557 > # passed all 6 test(s) 558 > 1..6 559 EOF 560" 561 562test_expect_success '--run range negation'" 563 run_sub_test_lib_test run-range-neg \ 564 '--run range negation' --run='"'!1-3'"' <<-\\EOF && 565 for i in 1 2 3 4 5 6 566 do 567 test_expect_success\"passing test #\$i\"'true' 568 done 569 test_done 570 EOF 571 check_sub_test_lib_test run-range-neg <<-\\EOF 572 > ok 1 # skip passing test #1 (--run) 573 > ok 2 # skip passing test #2 (--run) 574 > ok 3 # skip passing test #3 (--run) 575 > ok 4 - passing test #4 576 > ok 5 - passing test #5 577 > ok 6 - passing test #6 578 > # passed all 6 test(s) 579 > 1..6 580 EOF 581" 582 583test_expect_success '--run include, exclude and include'" 584 run_sub_test_lib_test run-inc-neg-inc \ 585 '--run include, exclude and include' \ 586 --run='"'1-5 !1-3 2'"' <<-\\EOF && 587 for i in 1 2 3 4 5 6 588 do 589 test_expect_success\"passing test #\$i\"'true' 590 done 591 test_done 592 EOF 593 check_sub_test_lib_test run-inc-neg-inc <<-\\EOF 594 > ok 1 # skip passing test #1 (--run) 595 > ok 2 - passing test #2 596 > ok 3 # skip passing test #3 (--run) 597 > ok 4 - passing test #4 598 > ok 5 - passing test #5 599 > ok 6 # skip passing test #6 (--run) 600 > # passed all 6 test(s) 601 > 1..6 602 EOF 603" 604 605test_expect_success '--run include, exclude and include, comma separated'" 606 run_sub_test_lib_test run-inc-neg-inc-comma \ 607 '--run include, exclude and include, comma separated' \ 608 --run=1-5,\!1-3,2 <<-\\EOF && 609 for i in 1 2 3 4 5 6 610 do 611 test_expect_success\"passing test #\$i\"'true' 612 done 613 test_done 614 EOF 615 check_sub_test_lib_test run-inc-neg-inc-comma <<-\\EOF 616 > ok 1 # skip passing test #1 (--run) 617 > ok 2 - passing test #2 618 > ok 3 # skip passing test #3 (--run) 619 > ok 4 - passing test #4 620 > ok 5 - passing test #5 621 > ok 6 # skip passing test #6 (--run) 622 > # passed all 6 test(s) 623 > 1..6 624 EOF 625" 626 627test_expect_success '--run exclude and include'" 628 run_sub_test_lib_test run-neg-inc \ 629 '--run exclude and include' \ 630 --run='"'!3- 5'"' <<-\\EOF && 631 for i in 1 2 3 4 5 6 632 do 633 test_expect_success\"passing test #\$i\"'true' 634 done 635 test_done 636 EOF 637 check_sub_test_lib_test run-neg-inc <<-\\EOF 638 > ok 1 - passing test #1 639 > ok 2 - passing test #2 640 > ok 3 # skip passing test #3 (--run) 641 > ok 4 # skip passing test #4 (--run) 642 > ok 5 - passing test #5 643 > ok 6 # skip passing test #6 (--run) 644 > # passed all 6 test(s) 645 > 1..6 646 EOF 647" 648 649test_expect_success '--run empty selectors'" 650 run_sub_test_lib_test run-empty-sel \ 651 '--run empty selectors' \ 652 --run='1,,3,,,5' <<-\\EOF && 653 for i in 1 2 3 4 5 6 654 do 655 test_expect_success\"passing test #\$i\"'true' 656 done 657 test_done 658 EOF 659 check_sub_test_lib_test run-empty-sel <<-\\EOF 660 > ok 1 - passing test #1 661 > ok 2 # skip passing test #2 (--run) 662 > ok 3 - passing test #3 663 > ok 4 # skip passing test #4 (--run) 664 > ok 5 - passing test #5 665 > ok 6 # skip passing test #6 (--run) 666 > # passed all 6 test(s) 667 > 1..6 668 EOF 669" 670 671test_expect_success '--run invalid range start'" 672 run_sub_test_lib_test_err run-inv-range-start \ 673 '--run invalid range start' \ 674 --run='a-5' <<-\\EOF && 675 test_expect_success\"passing test #1\"'true' 676 test_done 677 EOF 678 check_sub_test_lib_test_err run-inv-range-start \ 679 <<-\\EOF_OUT 3<<-\\EOF_ERR 680 > FATAL: Unexpected exit with code 1 681 EOF_OUT 682 > error: --run: invalid non-numeric in range start: 'a-5' 683 EOF_ERR 684" 685 686test_expect_success '--run invalid range end'" 687 run_sub_test_lib_test_err run-inv-range-end \ 688 '--run invalid range end' \ 689 --run='1-z' <<-\\EOF && 690 test_expect_success\"passing test #1\"'true' 691 test_done 692 EOF 693 check_sub_test_lib_test_err run-inv-range-end \ 694 <<-\\EOF_OUT 3<<-\\EOF_ERR 695 > FATAL: Unexpected exit with code 1 696 EOF_OUT 697 > error: --run: invalid non-numeric in range end: '1-z' 698 EOF_ERR 699" 700 701test_expect_success '--run invalid selector'" 702 run_sub_test_lib_test_err run-inv-selector \ 703 '--run invalid selector' \ 704 --run='1?' <<-\\EOF && 705 test_expect_success\"passing test #1\"'true' 706 test_done 707 EOF 708 check_sub_test_lib_test_err run-inv-selector \ 709 <<-\\EOF_OUT 3<<-\\EOF_ERR 710 > FATAL: Unexpected exit with code 1 711 EOF_OUT 712 > error: --run: invalid non-numeric in test selector: '1?' 713 EOF_ERR 714" 715 716 717test_set_prereq HAVEIT 718haveit=no 719test_expect_success HAVEIT 'test runs if prerequisite is satisfied'' 720 test_have_prereq HAVEIT && 721 haveit=yes 722' 723donthaveit=yes 724test_expect_success DONTHAVEIT 'unmet prerequisite causes test to be skipped'' 725 donthaveit=no 726' 727iftest -z"$GIT_TEST_FAIL_PREREQS_INTERNAL"-a$haveit$donthaveit!= yesyes 728then 729 say "bug in test framework: prerequisite tags do not work reliably" 730exit1 731fi 732 733test_set_prereq HAVETHIS 734haveit=no 735test_expect_success HAVETHIS,HAVEIT 'test runs if prerequisites are satisfied'' 736 test_have_prereq HAVEIT && 737 test_have_prereq HAVETHIS && 738 haveit=yes 739' 740donthaveit=yes 741test_expect_success HAVEIT,DONTHAVEIT 'unmet prerequisites causes test to be skipped'' 742 donthaveit=no 743' 744donthaveiteither=yes 745test_expect_success DONTHAVEIT,HAVEIT 'unmet prerequisites causes test to be skipped'' 746 donthaveiteither=no 747' 748iftest -z"$GIT_TEST_FAIL_PREREQS_INTERNAL"-a$haveit$donthaveit$donthaveiteither!= yesyesyes 749then 750 say "bug in test framework: multiple prerequisite tags do not work reliably" 751exit1 752fi 753 754test_lazy_prereq LAZY_TRUE true 755havetrue=no 756test_expect_success LAZY_TRUE 'test runs if lazy prereq is satisfied'' 757 havetrue=yes 758' 759donthavetrue=yes 760test_expect_success !LAZY_TRUE 'missing lazy prereqs skip tests'' 761 donthavetrue=no 762' 763 764iftest -z"$GIT_TEST_FAIL_PREREQS_INTERNAL"-a"$havetrue$donthavetrue"!= yesyes 765then 766 say 'bug in test framework: lazy prerequisites do not work' 767exit1 768fi 769 770test_lazy_prereq LAZY_FALSE false 771nothavefalse=no 772test_expect_success !LAZY_FALSE 'negative lazy prereqs checked'' 773 nothavefalse=yes 774' 775havefalse=yes 776test_expect_success LAZY_FALSE 'missing negative lazy prereqs will skip'' 777 havefalse=no 778' 779 780iftest -z"$GIT_TEST_FAIL_PREREQS_INTERNAL"-a"$nothavefalse$havefalse"!= yesyes 781then 782 say 'bug in test framework: negative lazy prerequisites do not work' 783exit1 784fi 785 786clean=no 787test_expect_success 'tests clean up after themselves'' 788 test_when_finished clean=yes 789' 790 791iftest -z"$GIT_TEST_FAIL_PREREQS_INTERNAL"-a$clean!=yes 792then 793 say "bug in test framework: basic cleanup command does not work reliably" 794exit1 795fi 796 797test_expect_success 'tests clean up even on failures'" 798 test_must_fail run_sub_test_lib_test \ 799 failing-cleanup 'Failing tests with cleanup commands' <<-\\EOF && 800 test_expect_success 'tests clean up even after a failure' ' 801 touch clean-after-failure && 802 test_when_finished rm clean-after-failure && 803 (exit 1) 804 ' 805 test_expect_success 'failure to clean up causes the test to fail' ' 806 test_when_finished\"(exit 2)\" 807 ' 808 test_done 809 EOF 810 check_sub_test_lib_test failing-cleanup <<-\\EOF 811 > not ok 1 - tests clean up even after a failure 812 > # Z 813 > # touch clean-after-failure && 814 > # test_when_finished rm clean-after-failure && 815 > # (exit 1) 816 > # Z 817 > not ok 2 - failure to clean up causes the test to fail 818 > # Z 819 > # test_when_finished\"(exit 2)\" 820 > # Z 821 > # failed 2 among 2 test(s) 822 > 1..2 823 EOF 824" 825 826test_expect_success 'test_atexit is run'" 827 test_must_fail run_sub_test_lib_test \ 828 atexit-cleanup 'Run atexit commands' -i <<-\\EOF && 829 test_expect_success 'tests clean up even after a failure' ' 830 > ../../clean-atexit && 831 test_atexit rm ../../clean-atexit && 832 > ../../also-clean-atexit && 833 test_atexit rm ../../also-clean-atexit && 834 > ../../dont-clean-atexit && 835 (exit 1) 836 ' 837 test_done 838 EOF 839 test_path_is_file dont-clean-atexit && 840 test_path_is_missing clean-atexit && 841 test_path_is_missing also-clean-atexit 842" 843 844test_expect_success 'test_oid setup'' 845 test_oid_init 846' 847 848test_expect_success 'test_oid provides sane info by default'' 849 test_oid zero >actual && 850 grep "^00*\$" actual && 851 rawsz="$(test_oid rawsz)" && 852 hexsz="$(test_oid hexsz)" && 853 test "$hexsz" -eq$(wc -c <actual)&& 854 test$(( $rawsz * 2)) -eq "$hexsz" 855' 856 857test_expect_success 'test_oid can look up data for SHA-1'' 858 test_when_finished "test_detect_hash" && 859 test_set_hash sha1 && 860 test_oid zero >actual && 861 grep "^00*\$" actual && 862 rawsz="$(test_oid rawsz)" && 863 hexsz="$(test_oid hexsz)" && 864 test$(wc -c <actual)-eq 40 && 865 test "$rawsz" -eq 20 && 866 test "$hexsz" -eq 40 867' 868 869test_expect_success 'test_oid can look up data for SHA-256'' 870 test_when_finished "test_detect_hash" && 871 test_set_hash sha256 && 872 test_oid zero >actual && 873 grep "^00*\$" actual && 874 rawsz="$(test_oid rawsz)" && 875 hexsz="$(test_oid hexsz)" && 876 test$(wc -c <actual)-eq 64 && 877 test "$rawsz" -eq 32 && 878 test "$hexsz" -eq 64 879' 880 881################################################################ 882# Basics of the basics 883 884test_oid_cache <<\EOF 885path0f sha1:f87290f8eb2cbbea7857214459a0739927eab154 886path0f sha256:638106af7c38be056f3212cbd7ac65bc1bac74f420ca5a436ff006a9d025d17d 887 888path0s sha1:15a98433ae33114b085f3eb3bb03b832b3180a01 889path0s sha256:3a24cc53cf68edddac490bbf94a418a52932130541361f685df685e41dd6c363 890 891path2f sha1:3feff949ed00a62d9f7af97c15cd8a30595e7ac7 892path2f sha256:2a7f36571c6fdbaf0e3f62751a0b25a3f4c54d2d1137b3f4af9cb794bb498e5f 893 894path2s sha1:d8ce161addc5173867a3c3c730924388daedbc38 895path2s sha256:18fd611b787c2e938ddcc248fabe4d66a150f9364763e9ec133dd01d5bb7c65a 896 897path2d sha1:58a09c23e2ca152193f2786e06986b7b6712bdbe 898path2d sha256:00e4b32b96e7e3d65d79112dcbea53238a22715f896933a62b811377e2650c17 899 900path3f sha1:0aa34cae68d0878578ad119c86ca2b5ed5b28376 901path3f sha256:09f58616b951bd571b8cb9dc76d372fbb09ab99db2393f5ab3189d26c45099ad 902 903path3s sha1:8599103969b43aff7e430efea79ca4636466794f 904path3s sha256:fce1aed087c053306f3f74c32c1a838c662bbc4551a7ac2420f5d6eb061374d0 905 906path3d sha1:21ae8269cacbe57ae09138dcc3a2887f904d02b3 907path3d sha256:9b60497be959cb830bf3f0dc82bcc9ad9e925a24e480837ade46b2295e47efe1 908 909subp3f sha1:00fb5908cb97c2564a9783c0c64087333b3b464f 910subp3f sha256:a1a9e16998c988453f18313d10375ee1d0ddefe757e710dcae0d66aa1e0c58b3 911 912subp3s sha1:6649a1ebe9e9f1c553b66f5a6e74136a07ccc57c 913subp3s sha256:81759d9f5e93c6546ecfcadb560c1ff057314b09f93fe8ec06e2d8610d34ef10 914 915subp3d sha1:3c5e5399f3a333eddecce7a9b9465b63f65f51e2 916subp3d sha256:76b4ef482d4fa1c754390344cf3851c7f883b27cf9bc999c6547928c46aeafb7 917 918root sha1:087704a96baf1c2d1c869a8b084481e121c88b5b 919root sha256:9481b52abab1b2ffeedbf9de63ce422b929f179c1b98ff7bee5f8f1bc0710751 920 921simpletree sha1:7bb943559a305bdd6bdee2cef6e5df2413c3d30a 922simpletree sha256:1710c07a6c86f9a3c7376364df04c47ee39e5a5e221fcdd84b743bc9bb7e2bc5 923EOF 924 925# updating a new file without --add should fail. 926test_expect_success 'git update-index without --add should fail adding'' 927 test_must_fail git update-index should-be-empty 928' 929 930# and with --add it should succeed, even if it is empty (it used to fail). 931test_expect_success 'git update-index with --add should succeed'' 932 git update-index --add should-be-empty 933' 934 935test_expect_success 'writing tree out with git write-tree'' 936 tree=$(git write-tree) 937' 938 939# we know the shape and contents of the tree and know the object ID for it. 940test_expect_success 'validate object ID of a known tree'' 941 test "$tree" = "$(test_oid simpletree)" 942 ' 943 944# Removing paths. 945test_expect_success 'git update-index without --remove should fail removing'' 946 rm -f should-be-empty full-of-directories && 947 test_must_fail git update-index should-be-empty 948' 949 950test_expect_success 'git update-index with --remove should be able to remove'' 951 git update-index --remove should-be-empty 952' 953 954# Empty tree can be written with recent write-tree. 955test_expect_success 'git write-tree should be able to write an empty tree'' 956 tree=$(git write-tree) 957' 958 959test_expect_success 'validate object ID of a known tree'' 960 test "$tree" =$EMPTY_TREE 961' 962 963# Various types of objects 964 965test_expect_success 'adding various types of objects with git update-index --add'' 966 mkdir path2 path3 path3/subp3 && 967 paths="path0 path2/file2 path3/file3 path3/subp3/file3" && 968 ( 969 for p in$paths 970 do 971 echo "hello$p" >$p|| exit 1 972 test_ln_s_add "hello$p"${p}sym || exit 1 973 done 974 ) && 975 find path* ! -type d -print | xargs git update-index --add 976' 977 978# Show them and see that matches what we expect. 979test_expect_success 'showing stage with git ls-files --stage'' 980 git ls-files --stage >current 981' 982 983test_expect_success 'validate git ls-files output for a known tree'' 984 cat >expected <<-EOF && 985 100644$(test_oid path0f)0 path0 986 120000$(test_oid path0s)0 path0sym 987 100644$(test_oid path2f)0 path2/file2 988 120000$(test_oid path2s)0 path2/file2sym 989 100644$(test_oid path3f)0 path3/file3 990 120000$(test_oid path3s)0 path3/file3sym 991 100644$(test_oid subp3f)0 path3/subp3/file3 992 120000$(test_oid subp3s)0 path3/subp3/file3sym 993 EOF 994 test_cmp expected current 995' 996 997test_expect_success 'writing tree out with git write-tree'' 998 tree=$(git write-tree) 999'10001001test_expect_success 'validate object ID for a known tree''1002 test "$tree" = "$(test_oid root)"1003'10041005test_expect_success 'showing tree with git ls-tree''1006 git ls-tree$tree>current1007'10081009test_expect_success 'git ls-tree output for a known tree''1010 cat >expected <<-EOF &&1011 100644 blob$(test_oid path0f)path01012 120000 blob$(test_oid path0s)path0sym1013 040000 tree$(test_oid path2d)path21014 040000 tree$(test_oid path3d)path31015 EOF1016 test_cmp expected current1017'10181019# This changed in ls-tree pathspec change -- recursive does1020# not show tree nodes anymore.1021test_expect_success 'showing tree with git ls-tree -r''1022 git ls-tree -r$tree>current1023'10241025test_expect_success 'git ls-tree -r output for a known tree''1026 cat >expected <<-EOF &&1027 100644 blob$(test_oid path0f)path01028 120000 blob$(test_oid path0s)path0sym1029 100644 blob$(test_oid path2f)path2/file21030 120000 blob$(test_oid path2s)path2/file2sym1031 100644 blob$(test_oid path3f)path3/file31032 120000 blob$(test_oid path3s)path3/file3sym1033 100644 blob$(test_oid subp3f)path3/subp3/file31034 120000 blob$(test_oid subp3s)path3/subp3/file3sym1035 EOF1036 test_cmp expected current1037'10381039# But with -r -t we can have both.1040test_expect_success 'showing tree with git ls-tree -r -t''1041 git ls-tree -r -t$tree>current1042'10431044test_expect_success 'git ls-tree -r output for a known tree''1045 cat >expected <<-EOF &&1046 100644 blob$(test_oid path0f)path01047 120000 blob$(test_oid path0s)path0sym1048 040000 tree$(test_oid path2d)path21049 100644 blob$(test_oid path2f)path2/file21050 120000 blob$(test_oid path2s)path2/file2sym1051 040000 tree$(test_oid path3d)path31052 100644 blob$(test_oid path3f)path3/file31053 120000 blob$(test_oid path3s)path3/file3sym1054 040000 tree$(test_oid subp3d)path3/subp31055 100644 blob$(test_oid subp3f)path3/subp3/file31056 120000 blob$(test_oid subp3s)path3/subp3/file3sym1057 EOF1058 test_cmp expected current1059'10601061test_expect_success 'writing partial tree out with git write-tree --prefix''1062 ptree=$(git write-tree --prefix=path3)1063'10641065test_expect_success 'validate object ID for a known tree''1066 test "$ptree" =$(test_oid path3d)1067'10681069test_expect_success 'writing partial tree out with git write-tree --prefix''1070 ptree=$(git write-tree --prefix=path3/subp3)1071'10721073test_expect_success 'validate object ID for a known tree''1074 test "$ptree" =$(test_oid subp3d)1075'10761077test_expect_success 'put invalid objects into the index''1078 rm -f .git/index &&1079 suffix=$(echo $ZERO_OID | sed -e "s/^.//")&&1080 cat >badobjects <<-EOF &&1081 100644 blob$(test_oid 001)dir/file11082 100644 blob$(test_oid 002)dir/file21083 100644 blob$(test_oid 003)dir/file31084 100644 blob$(test_oid 004)dir/file41085 100644 blob$(test_oid 005)dir/file51086 EOF1087 git update-index --index-info <badobjects1088'10891090test_expect_success 'writing this tree without --missing-ok''1091 test_must_fail git write-tree1092'10931094test_expect_success 'writing this tree with --missing-ok''1095 git write-tree --missing-ok1096'109710981099################################################################1100test_expect_success 'git read-tree followed by write-tree should be idempotent''1101 rm -f .git/index &&1102 git read-tree$tree&&1103 test -f .git/index &&1104 newtree=$(git write-tree)&&1105 test "$newtree" = "$tree"1106'11071108test_expect_success 'validate git diff-files output for a know cache/work tree state''1109 cat >expected <<EOF &&1110:100644 100644$(test_oid path0f)$ZERO_OIDM path01111:120000 120000$(test_oid path0s)$ZERO_OIDM path0sym1112:100644 100644$(test_oid path2f)$ZERO_OIDM path2/file21113:120000 120000$(test_oid path2s)$ZERO_OIDM path2/file2sym1114:100644 100644$(test_oid path3f)$ZERO_OIDM path3/file31115:120000 120000$(test_oid path3s)$ZERO_OIDM path3/file3sym1116:100644 100644$(test_oid subp3f)$ZERO_OIDM path3/subp3/file31117:120000 120000$(test_oid subp3s)$ZERO_OIDM path3/subp3/file3sym1118EOF1119 git diff-files >current &&1120 test_cmp expected current1121'11221123test_expect_success 'git update-index --refresh should succeed''1124 git update-index --refresh1125'11261127test_expect_success 'no diff after checkout and git update-index --refresh''1128 git diff-files >current &&1129 cmp -s current /dev/null1130'11311132################################################################1133P=$(test_oid root)11341135test_expect_success 'git commit-tree records the correct tree in a commit''1136 commit0=$(echo NO | git commit-tree $P)&&1137 tree=$(git show --pretty=raw$commit0|1138 sed -n -e "s/^tree //p" -e "/^author /q") &&1139 test "z$tree" = "z$P"1140'11411142test_expect_success 'git commit-tree records the correct parent in a commit''1143 commit1=$(echo NO | git commit-tree $P -p $commit0)&&1144 parent=$(git show --pretty=raw$commit1|1145 sed -n -e "s/^parent //p" -e "/^author /q") &&1146 test "z$commit0" = "z$parent"1147'11481149test_expect_success 'git commit-tree omits duplicated parent in a commit''1150 commit2=$(echo NO | git commit-tree $P -p $commit0 -p $commit0)&&1151 parent=$(git show --pretty=raw$commit2|1152 sed -n -e "s/^parent //p" -e "/^author /q" |1153 sort -u) &&1154 test "z$commit0" = "z$parent" &&1155 numparent=$(git show --pretty=raw$commit2|1156 sed -n -e "s/^parent //p" -e "/^author /q" |1157 wc -l) &&1158 test$numparent= 11159'11601161test_expect_success 'update-index D/F conflict''1162 mv path0 tmp &&1163 mv path2 path0 &&1164 mv tmp path2 &&1165 git update-index --add --replace path2 path0/file2 &&1166 numpath0=$(git ls-files path0 | wc -l)&&1167 test$numpath0= 11168'11691170test_expect_success 'very long name in the index handled sanely''11711172 a=a && # 11173 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a&& # 161174 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a&& # 2561175 a=$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a$a&& # 40961176 a=${a}q &&11771178 >path4 &&1179 git update-index --add path4 &&1180 (1181 git ls-files -s path4 |1182 sed -e "s/ .*/ /" |1183 tr -d "\012" &&1184 echo "$a"1185 ) | git update-index --index-info &&1186 len=$(git ls-files "a*" | wc -c)&&1187 test$len= 40981188'11891190test_done