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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
|
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
begin_test "track"
(
set -e
# no need to setup a remote repo, since this test doesn't need to push or pull
mkdir track
cd track
git init
echo "###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
#*.cs diff=csharp" > .gitattributes
# track *.jpg once
git lfs track "*.jpg" | grep "Tracking \"\*.jpg\""
assert_attributes_count "jpg" "filter=lfs" 1
# track *.jpg again
git lfs track "*.jpg" | grep "\"*.jpg\" already supported"
assert_attributes_count "jpg" "filter=lfs" 1
mkdir -p a/b .git/info
echo "*.mov filter=lfs -text" > .git/info/attributes
echo "*.gif filter=lfs -text" > a/.gitattributes
echo "*.png filter=lfs -text" > a/b/.gitattributes
git lfs track | tee track.log
grep "Listing tracked patterns" track.log
grep "*.mov ($(native_path_escaped ".git/info/attributes"))" track.log
grep "*.jpg (.gitattributes)" track.log
grep "*.gif ($(native_path_escaped "a/.gitattributes"))" track.log
grep "*.png ($(native_path_escaped "a/b/.gitattributes"))" track.log
grep "Set default behavior" .gitattributes
grep "############" .gitattributes
grep "* text=auto" .gitattributes
grep "diff=csharp" .gitattributes
grep "*.jpg" .gitattributes
echo "*.gif -filter -text" >> a/b/.gitattributes
echo "*.mov -filter -text" >> a/b/.gitattributes
git lfs track | tee track.log
tail -n 3 track.log | head -n 1 | grep "Listing excluded patterns"
tail -n 3 track.log | grep "*.gif ($(native_path_escaped "a/b/.gitattributes"))"
tail -n 3 track.log | grep "*.mov ($(native_path_escaped "a/b/.gitattributes"))"
)
end_test
begin_test "track --no-excluded"
(
set -e
reponame="track_no_excluded"
mkdir "$reponame"
cd "$reponame"
git init
mkdir -p a/b .git/info
echo "*.mov filter=lfs -text" > .git/info/attributes
echo "*.gif filter=lfs -text" > a/.gitattributes
echo "*.png filter=lfs -text" > a/b/.gitattributes
echo "*.gif -filter -text" >> a/b/.gitattributes
echo "*.mov -filter=lfs -text" >> a/b/.gitattributes
git lfs track --no-excluded | tee track.log
grep "Listing excluded patterns" track.log && exit 1
true
)
end_test
begin_test "track --verbose"
(
set -e
reponame="track_verbose_logs"
mkdir "$reponame"
cd "$reponame"
git init
touch foo.dat
git add foo.dat
git lfs track --verbose "foo.dat" 2>&1 > track.log
grep "Touching \"foo.dat\"" track.log
)
end_test
begin_test "track --dry-run"
(
set -e
reponame="track_dry_run"
mkdir "$reponame"
cd "$reponame"
git init
touch foo.dat
git add foo.dat
git lfs track --dry-run "foo.dat" 2>&1 > track.log
grep "Tracking \"foo.dat\"" track.log
grep "Touching \"foo.dat\"" track.log
git status --porcelain 2>&1 > status.log
grep "A foo.dat" status.log
)
end_test
begin_test "track directory"
(
set -e
mkdir dir
cd dir
git init
if [ "$IS_WINDOWS" -eq 1 ]
then
git lfs track "foo bar\\*" | tee track.txt
else
git lfs track "foo bar/*" | tee track.txt
fi
[ "foo[[:space:]]bar/* filter=lfs diff=lfs merge=lfs -text" = "$(cat .gitattributes)" ]
[ "Tracking \"foo bar/*\"" = "$(cat track.txt)" ]
mkdir "foo bar"
echo "a" > "foo bar/a"
echo "b" > "foo bar/b"
git add foo\ bar
git commit -am "add foo bar"
assert_pointer "main" "foo bar/a" "87428fc522803d31065e7bce3cf03fe475096631e5e07bbd7a0fde60c4cf25c7" 2
assert_pointer "main" "foo bar/b" "0263829989b6fd954f72baaf2fc64bc2e2f01d692d4de72986ea808f6e99813f" 2
)
end_test
begin_test "track without trailing linebreak"
(
set -e
mkdir no-linebreak
cd no-linebreak
git init
printf "*.mov filter=lfs -text" > .gitattributes
[ "*.mov filter=lfs -text" = "$(cat .gitattributes)" ]
git lfs track "*.gif"
expected="*.mov filter=lfs -text$(cat_end)
*.gif filter=lfs diff=lfs merge=lfs -text$(cat_end)"
[ "$expected" = "$(cat -e .gitattributes)" ]
)
end_test
begin_test "track with existing crlf"
(
set -e
mkdir existing-crlf
cd existing-crlf
git init
git config core.autocrlf true
git lfs track "*.mov"
git lfs track "*.gif"
expected="*.mov filter=lfs diff=lfs merge=lfs -text^M$
*.gif filter=lfs diff=lfs merge=lfs -text^M$"
[ "$expected" = "$(cat -e .gitattributes)" ]
git config core.autocrlf false
git lfs track "*.jpg"
expected="*.mov filter=lfs diff=lfs merge=lfs -text^M$
*.gif filter=lfs diff=lfs merge=lfs -text^M$
*.jpg filter=lfs diff=lfs merge=lfs -text^M$"
[ "$expected" = "$(cat -e .gitattributes)" ]
)
end_test
begin_test "track with autocrlf=true"
(
set -e
mkdir autocrlf-true
cd autocrlf-true
git init
git config core.autocrlf true
printf "*.mov filter=lfs -text" > .gitattributes
[ "*.mov filter=lfs -text" = "$(cat .gitattributes)" ]
git lfs track "*.gif"
expected="*.mov filter=lfs -text^M$
*.gif filter=lfs diff=lfs merge=lfs -text^M$"
[ "$expected" = "$(cat -e .gitattributes)" ]
)
end_test
begin_test "track with autocrlf=input"
(
set -e
mkdir autocrlf-input
cd autocrlf-input
git init
git config core.autocrlf input
printf "*.mov filter=lfs -text" > .gitattributes
[ "*.mov filter=lfs -text" = "$(cat .gitattributes)" ]
git lfs track "*.gif"
if [ $IS_WINDOWS -eq 1 ]
then
cat -e .gitattributes | grep '\^M\$'
else
cat -e .gitattributes | grep -v '\^M'
fi
)
end_test
begin_test "track outside git repo"
(
set -e
git lfs track "*.foo" || {
# this fails if it's run outside of a git repo using GIT_LFS_TEST_DIR
# git itself returns an exit status of 128
# $ git show
# fatal: Not a git repository (or any of the parent directories): .git
# $ echo "$?"
# 128
[ "$?" = "128" ]
exit 0
}
if [ -n "$GIT_LFS_TEST_DIR" ]; then
echo "GIT_LFS_TEST_DIR should be set outside of any Git repository"
exit 1
fi
git init track-outside
cd track-outside
git lfs track "*.file"
git lfs track "../*.foo" || {
# git itself returns an exit status of 128
# $ git add ../test.foo
# fatal: ../test.foo: '../test.foo' is outside repository
# $ echo "$?"
# 128
[ "$?" = "128" ]
exit 0
}
exit 1
)
end_test
begin_test "track representation"
(
set -e
git init track-representation
cd track-representation
git lfs track "*.jpg"
mkdir a
git lfs track "a/test.file"
cd a
out3=$(git lfs track "test.file")
if [ "$out3" != "\"test.file\" already supported" ]; then
echo "Track didn't recognize duplicate path"
cat .gitattributes
exit 1
fi
git lfs track "file.bin"
cd ..
out4=$(git lfs track "a/file.bin")
if [ "$out4" != "\"a/file.bin\" already supported" ]; then
echo "Track didn't recognize duplicate path"
cat .gitattributes
exit 1
fi
)
end_test
begin_test "track absolute"
(
# MinGW bash intercepts '/images' and passes 'C:/Program Files/Git/images' as arg!
if [[ $(uname) == *"MINGW"* ]]; then
echo "Skipping track absolute on Windows"
exit 0
fi
set -e
git init track-absolute
cd track-absolute
git lfs track "/images"
cat .gitattributes
grep "^/images" .gitattributes
)
end_test
begin_test "track in gitDir"
(
set -e
git init track-in-dot-git
cd track-in-dot-git
echo "some content" > test.file
cd .git
git lfs track "../test.file" || {
# this fails if it's run inside a .git directory
# git itself returns an exit status of 128
# $ git add ../test.file
# fatal: This operation must be run in a work tree
# $ echo "$?"
# 128
[ "$?" = "128" ]
exit 0
}
# fail if track passed
exit 1
)
end_test
begin_test "track in symlinked dir"
(
set -e
git init track-symlinkdst
ln -s track-symlinkdst track-symlinksrc
cd track-symlinksrc
git lfs track "*.png"
grep "^*.png" .gitattributes || {
echo ".gitattributes doesn't contain the expected relative path *.png:"
cat .gitattributes
exit 1
}
)
end_test
begin_test "track blocklisted files by name"
(
set -e
repo="track_blocklisted_by_name"
mkdir "$repo"
cd "$repo"
git init
touch .gitattributes
git add .gitattributes
git commit -m 'Initial commit'
git lfs track .gitattributes 2>&1 > track.log && exit 1
grep "Pattern '.gitattributes' matches forbidden file '.gitattributes'" track.log
[ -z "$(git status --porcelain | grep -v '^??')" ]
)
end_test
begin_test "track blocklisted files with glob"
(
set -e
repo="track_blocklisted_glob"
mkdir "$repo"
cd "$repo"
git init
touch .gitattributes
git add .gitattributes
git commit -m 'Initial commit'
git lfs track ".git*" 2>&1 > track.log && exit 1
grep "Pattern '.git\*' matches forbidden file" track.log
[ -z "$(git status --porcelain | grep -v '^??')" ]
git lfs track "*" 2>&1 > track.log && exit 1
grep "Pattern '\*' matches forbidden file" track.log
[ -z "$(git status --porcelain | grep -v '^??')" ]
)
end_test
begin_test "track lockable"
(
set -e
repo="track_lockable"
mkdir "$repo"
cd "$repo"
git init
# track *.jpg once, lockable
git lfs track --lockable "*.jpg" | grep "Tracking \"\*.jpg\""
assert_attributes_count "jpg" "lockable" 1
# track *.jpg again, don't change anything. Should retain lockable
git lfs track "*.jpg" | grep "\"*.jpg\" already supported"
assert_attributes_count "jpg" "lockable" 1
# track *.png once, not lockable yet
git lfs track "*.png" | grep "Tracking \"\*.png\""
assert_attributes_count "png" "filter=lfs" 1
assert_attributes_count "png" "lockable" 0
# track png again, enable lockable, should replace
git lfs track --lockable "*.png" | grep "Tracking \"\*.png\""
assert_attributes_count "png" "filter=lfs" 1
assert_attributes_count "png" "lockable" 1
# track png again, disable lockable, should replace
git lfs track --not-lockable "*.png" | grep "Tracking \"\*.png\""
assert_attributes_count "png" "filter=lfs" 1
assert_attributes_count "png" "lockable" 0
# check output reflects lockable
out=$(git lfs track)
echo "$out" | grep "Listing tracked patterns"
echo "$out" | grep "*.jpg \[lockable\] (.gitattributes)"
echo "$out" | grep "*.png (.gitattributes)"
)
end_test
begin_test "track lockable read-only/read-write"
(
set -e
repo="track_lockable_ro_rw"
mkdir "$repo"
cd "$repo"
git init
echo "blah blah" > test.bin
echo "foo bar" > test.dat
mkdir subfolder
echo "sub blah blah" > subfolder/test.bin
echo "sub foo bar" > subfolder/test.dat
git add *.bin *.dat subfolder
# should start writeable
assert_file_writeable test.bin
assert_file_writeable test.dat
assert_file_writeable subfolder/test.bin
assert_file_writeable subfolder/test.dat
# track *.bin, not lockable yet
git lfs track "*.bin" | grep "Tracking \"\*.bin\""
# track *.dat, lockable immediately
git lfs track --lockable "*.dat" | grep "Tracking \"\*.dat\""
# bin should remain writeable, dat should have been made read-only
assert_file_writeable test.bin
refute_file_writeable test.dat
assert_file_writeable subfolder/test.bin
refute_file_writeable subfolder/test.dat
git add .gitattributes test.bin test.dat
git commit -m "First commit"
# bin should still be writeable
assert_file_writeable test.bin
assert_file_writeable subfolder/test.bin
# now make bin lockable
git lfs track --lockable "*.bin" | grep "Tracking \"\*.bin\""
# bin should now be read-only
refute_file_writeable test.bin
refute_file_writeable subfolder/test.bin
# remove lockable again
git lfs track --not-lockable "*.bin" | grep "Tracking \"\*.bin\""
# bin should now be writeable again
assert_file_writeable test.bin
assert_file_writeable subfolder/test.bin
)
end_test
begin_test "track escaped pattern"
(
set -e
reponame="track-escaped-pattern"
git init "$reponame"
cd "$reponame"
git lfs track " " | grep "Tracking \" \""
assert_attributes_count "[[:space:]]" "filter=lfs" 1
git lfs track "#" | grep "Tracking \"#\""
assert_attributes_count "\\#" "filter=lfs" 1
)
end_test
begin_test "track (symlinked repository)"
(
set -e
reponame="tracked-symlinked-repository"
git init "$reponame"
cd "$reponame"
touch a.dat
pushd .. > /dev/null
dir="tracked-symlinked-repository-tmp"
mkdir -p "$dir"
ln -s "../$reponame" "./$dir"
cd "$dir/$reponame"
[ "Tracking \"a.dat\"" = "$(git lfs track "a.dat")" ]
[ "\"a.dat\" already supported" = "$(git lfs track "a.dat")" ]
popd > /dev/null
)
end_test
begin_test "track (\$GIT_LFS_TRACK_NO_INSTALL_HOOKS)"
(
set -e
reponame="track-no-setup-hooks"
git init "$reponame"
cd "$reponame"
[ ! -f .git/hooks/pre-push ]
[ ! -f .git/hooks/post-checkout ]
[ ! -f .git/hooks/post-commit ]
[ ! -f .git/hooks/post-merge ]
GIT_LFS_TRACK_NO_INSTALL_HOOKS=1 git lfs track
[ ! -f .git/hooks/pre-push ]
[ ! -f .git/hooks/post-checkout ]
[ ! -f .git/hooks/post-commit ]
[ ! -f .git/hooks/post-merge ]
)
end_test
begin_test "track (with comments)"
(
set -e
reponame="track-with=comments"
git init "$reponame"
cd "$reponame"
echo "*.jpg filter=lfs diff=lfs merge=lfs -text" >> .gitattributes
echo "# *.png filter=lfs diff=lfs merge=lfs -text" >> .gitattributes
echo "*.pdf filter=lfs diff=lfs merge=lfs -text" >> .gitattributes
git add .gitattributes
git commit -m "initial commit"
git lfs track 2>&1 | tee track.log
if [ "0" -ne "${PIPESTATUS[0]}" ]; then
echo >&2 "expected \`git lfs track\` command to exit cleanly, didn't"
exit 1
fi
[ "1" -eq "$(grep -c "\.jpg" track.log)" ]
[ "1" -eq "$(grep -c "\.pdf" track.log)" ]
[ "0" -eq "$(grep -c "\.png" track.log)" ]
)
end_test
begin_test "track (with current-directory prefix)"
(
set -e
reponame="track-with-current-directory-prefix"
git init "$reponame"
cd "$reponame"
git lfs track "./a.dat"
printf "a" > a.dat
git add .gitattributes a.dat
git commit -m "initial commit"
grep -e "^a.dat" .gitattributes
)
end_test
begin_test "track (global gitattributes)"
(
set -e
reponame="track-global-gitattributes"
git init "$reponame"
cd "$reponame"
global="$(cd .. && pwd)/gitattributes-global"
echo "*.dat filter=lfs diff=lfs merge=lfs -text" > "$global"
git config --local core.attributesfile "$global"
git lfs track 2>&1 | tee track.log
grep "*.dat" track.log
)
end_test
begin_test "track (system gitattributes)"
(
set -e
gitversion=$(git version | cut -d" " -f3)
set +e
compare_version "$gitversion" 2.42.0
result=$?
set -e
# We no longer read the PREFIX variable as of Git 2.42.0.
[ "$result" -ne "$VERSION_LOWER" ] && exit 0
reponame="track-system-gitattributes"
git init "$reponame"
cd "$reponame"
pushd "$TRASHDIR" > /dev/null
mkdir -p "prefix/${reponame}/etc"
cd "prefix/${reponame}/etc"
echo "*.dat filter=lfs diff=lfs merge=lfs -text" > gitattributes
popd > /dev/null
PREFIX="${TRASHDIR}/prefix/${reponame}" git lfs track 2>&1 | tee track.log
grep "*.dat" track.log
)
end_test
begin_test "track: escaped pattern in .gitattributes"
(
set -e
reponame="track-escaped"
git init "$reponame"
cd "$reponame"
filename="file with spaces.#"
echo "I need escaping" > "$filename"
[ "Tracking \"$filename\"" = "$(git lfs track "$filename")" ]
[ "\"$filename\" already supported" = "$(git lfs track "$filename")" ]
#changing flags should track the file again
[ "Tracking \"$filename\"" = "$(git lfs track -l "$filename")" ]
if [ 1 -ne "$(wc -l .gitattributes | awk '{ print $1 }')" ]; then
echo >&2 "changing flag for an existing tracked file shouldn't add another line"
exit 1
fi
[ "Tracking \"foo/bar/$filename\"" = "$(git lfs track "foo/bar/$filename")" ]
[ "\"foo/bar/$filename\" already supported" = "$(git lfs track "foo/bar/$filename")" ]
)
end_test
begin_test "track: escaped glob pattern in .gitattributes"
(
set -e
reponame="track-escaped-glob"
git init "$reponame"
cd "$reponame"
filename='[foo]bar.txt'
contents='I need escaping'
contents_oid=$(calc_oid "$contents")
git lfs track --filename "$filename"
git lfs track --filename "$filename" | grep 'already supported'
git add .
cat .gitattributes
printf "%s" "$contents" > "$filename"
git add .
git commit -m 'Add unusually named file'
# If Git understood our escaping, we'll have a pointer. Otherwise, we won't.
assert_pointer "main" "$filename" "$contents_oid" 15
)
end_test
begin_test "track: escaped glob pattern with spaces in .gitattributes"
(
set -e
# None of these characters are valid in the Win32 subsystem.
[ "$IS_WINDOWS" -eq 1 ] && exit 0
reponame="track-escaped-glob-spaces"
git init "$reponame"
cd "$reponame"
# Note that the \n is literally just that; it is not a newline.
filename='*[foo] \n bar?.txt'
contents='I need escaping'
contents_oid=$(calc_oid "$contents")
git lfs track --filename "$filename" >output 2>&1
# This error would occur if `git ls-files` didn't handle the backslash
# properly.
grep 'Error marking' output && exit 1
rm -f output
git add .
cat .gitattributes
printf "%s" "$contents" > "$filename"
git add .
git commit -m 'Add unusually named file'
# If Git understood our escaping, we'll have a pointer. Otherwise, we won't.
assert_pointer "main" "$filename" "$contents_oid" 15
)
end_test
begin_test "track: verbose logging"
(
set -e
reponame="track-verbose-logging"
git init "$reponame"
cd "$reponame"
filename='[foo]bar.bin'
contents='I need escaping'
contents_oid=$(calc_oid "$contents")
printf "%s" "$contents" > "$filename"
printf 'Hello, world!\n' > a.txt
git add a.txt "$filename"
git commit -m 'some files'
git lfs track -v "*.txt" 2>&1 | tee output
grep "Found 1 files previously added to Git matching pattern:" output
git lfs track -v --filename "$filename" 2>&1 | tee output
grep "Found 1 files previously added to Git matching pattern:" output
)
end_test
begin_test "--json output"
(
set -e
reponame="track-json"
git init "$reponame"
cd "$reponame"
git lfs track '*.dat'
git lfs track --lockable '*.bin'
echo 'a.dat !filter' >>.gitattributes
git lfs track --json > actual
cat >expected <<-EOF
{
"patterns": [
{
"pattern": "*.dat",
"source": ".gitattributes",
"lockable": false,
"tracked": true
},
{
"pattern": "*.bin",
"source": ".gitattributes",
"lockable": true,
"tracked": true
},
{
"pattern": "a.dat",
"source": ".gitattributes",
"lockable": false,
"tracked": false
}
]
}
EOF
diff -u actual expected
)
end_test
|