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 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
|
#!/bin/sh
#
# Usage: git-ftp-test.sh
#
# You can define environment variables to choose the FTP server to test on.
#
# Example:
# export GIT_FTP_ROOT='localhost/git-ftp-tests'
# export GIT_FTP_USER='git-ftp-test'
# export GIT_FTP_PASSWD='s3cr3t'
# ./git-ftp-test.sh
#
# You can choose test cases as well:
# export TEST_CASES='test_displays_usage test_prints_version'
# ./git-ftp-test.sh
#
# Or you can write it in one line:
# TEST_CASES='test_displays_usage' GIT_FTP_PASSWD='s3cr3t' ./git-ftp-test.sh
readonly VERSION='1.5.1'
suite() {
for testcase in ${TEST_CASES}; do
suite_addTest "$testcase"
done
}
oneTimeSetUp() {
GIT_FTP_CMD="$(dirname "$TESTDIR")/git-ftp"
: ${GIT_FTP_USER=ftp}
: ${GIT_FTP_PASSWD=}
: ${GIT_FTP_HOST=localhost}
: ${GIT_FTP_PORT=:21}
: ${GIT_FTP_ROOT=}
START=$(date +%s)
}
oneTimeTearDown() {
END=$(date +%s)
DIFF=$(( $END - $START ))
echo "It took $DIFF seconds"
}
setUp() {
if command -v mktemp > /dev/null 2>&1; then
GIT_PROJECT_PATH="$(mktemp -d -t git-ftp-XXXX)"
else
GIT_PROJECT_PATH="git-ftp-test-repo-$(date | md5sum | cut -d ' ' -f1)"
mkdir -p "$GIT_PROJECT_PATH"
fi
GIT_PROJECT_NAME="$(basename $GIT_PROJECT_PATH)"
REMOTE_BASE_URL="ftp://$GIT_FTP_HOST$GIT_FTP_PORT"
REMOTE_PATH="$GIT_FTP_ROOT/$GIT_PROJECT_NAME"
GIT_FTP_URL="$REMOTE_BASE_URL/$REMOTE_PATH"
[ -n "$GIT_FTP_USER" ] && CURL_ARGS=" -u $GIT_FTP_USER:$GIT_FTP_PASSWD"
CURL="curl $CURL_ARGS"
CURL_URL="$GIT_FTP_URL"
[ -n "$GIT_FTP_USER" ] && GIT_FTP_USER_ARG="-u $GIT_FTP_USER"
[ -n "$GIT_FTP_PASSWD" ] && GIT_FTP_PASSWD_ARG="-p $GIT_FTP_PASSWD"
GIT_FTP="$GIT_FTP_CMD $GIT_FTP_USER_ARG $GIT_FTP_PASSWD_ARG $GIT_FTP_URL"
cd $GIT_PROJECT_PATH
# make some content
for i in 1 2 3 4 5
do
echo "$i" >> ./"test $i.txt"
mkdir -p "dir $i"
echo "$i" >> "dir $i/test $i.txt"
done;
# git them
git init > /dev/null 2>&1
git add . > /dev/null 2>&1
git commit -a -m "init" > /dev/null 2>&1
}
tearDown() {
tmpfiles=$(ls .git-ftp*-tmp 2> /dev/null)
assertEquals '' "$tmpfiles"
rm -rf $GIT_PROJECT_PATH
command -v lftp >/dev/null 2>&1 && {
lftp -u "$GIT_FTP_USER,$GIT_FTP_PASSWD" "$GIT_FTP_URL" -e "set ftp:list-options -a; rm -rf '$GIT_PROJECT_NAME'; exit" > /dev/null 2>&1
}
}
test_displays_usage() {
usage=$($GIT_FTP_CMD 2>&1)
assertEquals "git-ftp <action> [<options>] [<url>]" "$usage"
}
test_prints_version() {
version=$($GIT_FTP_CMD 2>&1 --version)
assertEquals "git-ftp version $VERSION" "$version"
}
test_unknown_protocol() {
output="$($GIT_FTP_CMD init badProtocol://localhost/ 2>&1)"
assertEquals 6 $?
assertEquals "fatal: Protocol unknown 'badProtocol://'." "$output"
}
test_supported_protocol_ftp() {
output="$($GIT_FTP_CMD init ftp://localhost/ 2>&1)"
status=$?
assertNotEquals 6 $status
assertNotEquals "fatal: Protocol unknown 'ftp://'." "$output"
assertNotEquals "fatal: Protocol 'ftp' not supported by curl, exiting..." "$output"
}
test_supported_protocol_ftpes() {
output="$($GIT_FTP_CMD init ftpes://localhost/ 2>&1)"
status=$?
assertNotEquals 6 $status
assertNotEquals "fatal: Protocol unknown 'ftpes://'." "$output"
assertNotEquals "fatal: Protocol 'ftpes' not supported by curl, exiting..." "$output"
}
test_inits() {
init=$($GIT_FTP init)
assertEquals 0 $?
assertTrue 'file does not exist' "remote_file_exists 'test 1.txt'"
assertTrue 'file differs' "remote_file_equals 'test 1.txt'"
}
test_init_fails() {
init=$($GIT_FTP_CMD -v -u wrong_user -p wrong_passwd $GIT_FTP_URL init 2>&1)
assertEquals 5 $?
# Not all servers respond correctly
#error_count=$(echo "$init" | grep -F 'Access denied' | wc -l)
#assertEquals 1 $error_count
}
test_inits_and_pushes() {
cd $GIT_PROJECT_PATH
# this should pass
init=$($GIT_FTP init)
rtrn=$?
assertEquals 0 $rtrn
# this should fail
init2=$($GIT_FTP init 2>&1)
rtrn=$?
assertEquals 2 $rtrn
assertEquals "fatal: Commit found, use 'git ftp push' to sync. Exiting..." "$init2"
# make some changes
echo "1" >> "./test 1.txt"
git commit -a -m "change" > /dev/null 2>&1
# this should pass
push=$($GIT_FTP push)
rtrn=$?
assertEquals 0 $rtrn
}
test_auto_init() {
push="$($GIT_FTP push --auto-init)"
assertEquals 0 $?
assertTrue ' upload "test 1.txt"' "remote_file_equals 'test 1.txt'"
init2="$($GIT_FTP init 2>&1)"
assertEquals 2 $?
assertEquals "fatal: Commit found, use 'git ftp push' to sync. Exiting..." "$init2"
# make some changes
echo "1" >> "./test 1.txt"
git commit -a -m "change" > /dev/null 2>&1
push="$($GIT_FTP push --auto-init)"
assertEquals 0 $?
assertTrue ' upload "test 1.txt"' "remote_file_equals 'test 1.txt'"
}
test_pushes_and_fails() {
cd $GIT_PROJECT_PATH
push="$($GIT_FTP push 2>&1)"
rtrn=$?
assertEquals "fatal: Could not get last commit. Network down? Wrong URL? Use 'git ftp init' for the initial push., exiting..." "$push"
assertEquals 5 $rtrn
}
test_push_nothing() {
init=$($GIT_FTP init)
# make some changes
echo "1" >> "./test 1.txt"
git commit -a -m "change" > /dev/null 2>&1
push=$($GIT_FTP push --dry-run)
assertEquals 0 $?
assertTrue "$push" "echo \"$push\" | grep '1 file to sync:'"
echo 'test 1.txt' >> .git-ftp-ignore
push=$($GIT_FTP push)
assertEquals 0 $?
firstline=$(echo "$push" | head -n 1)
assertEquals 'There are no files to sync.' "$firstline"
}
test_push_added() {
cd $GIT_PROJECT_PATH
init=$($GIT_FTP init)
# add a file
file='newfile.txt'
echo "1" > "./$file"
git add $file
git commit -m "change" > /dev/null 2>&1
push=$($GIT_FTP push)
assertEquals 0 $? || echo "Push: $push"
assertEquals "1" "$($CURL -s $CURL_URL/$file)"
}
test_push_twice() {
cd $GIT_PROJECT_PATH
init=$($GIT_FTP init)
# make some changes
echo "1" >> "./test 1.txt"
git commit -a -m "change" > /dev/null 2>&1
push=$($GIT_FTP push)
assertEquals 0 $? || echo "First push: $push"
push=$($GIT_FTP push)
assertEquals 0 $? || echo "Second push: $push"
assertTrue "$push" "echo \"$push\" | grep 'Everything up-to-date.'"
}
test_push_different_branches() {
init="$($GIT_FTP init)"
git checkout master -b branch1 -q
echo "1" >> "test 1.txt"
git commit -a -m "change 1" -q
push="$($GIT_FTP push)"
git checkout master -b branch2 -q
echo "2" >> "test 2.txt"
git commit -a -m "change 2" -q
push="$($GIT_FTP push)"
assertTrue "$push" "echo \"$push\" | grep '2 files to sync:'"
assertTrue ' test 1.txt uploaded' "remote_file_equals 'test 1.txt'"
assertTrue ' test 2.txt uploaded' "remote_file_equals 'test 2.txt'"
}
test_push_unknown_commit_say_nothing() {
$GIT_FTP init > /dev/null
# change remote SHA1
echo '000000000' | $CURL -s -T - $CURL_URL/.git-ftp.log
# make some changes
echo "1" >> "./test 1.txt"
git commit -a -m "change" > /dev/null 2>&1
push="$(echo '' | $GIT_FTP push)"
assertEquals 2 $?
assertContains 'Unknown SHA1 object' "$push"
assertContains 'Do you want to ignore' "$push"
assertFalse ' test 1.txt uploaded' "remote_file_equals 'test 1.txt'"
}
test_push_unknown_commit_say_no() {
$GIT_FTP init > /dev/null
# change remote SHA1
echo '000000000' | $CURL -s -T - $CURL_URL/.git-ftp.log
# make some changes
echo "1" >> "./test 1.txt"
git commit -a -m "change" > /dev/null 2>&1
push="$(echo 'N' | $GIT_FTP push)"
assertEquals 0 $?
assertContains 'Unknown SHA1 object' "$push"
assertContains 'Do you want to ignore' "$push"
assertFalse ' test 1.txt uploaded' "remote_file_equals 'test 1.txt'"
}
test_push_unknown_commit_say_yes() {
$GIT_FTP init > /dev/null
# change remote SHA1
echo '000000000' | $CURL -s -T - $CURL_URL/.git-ftp.log
# make some changes
echo "1" >> "./test 1.txt"
git commit -a -m "change" > /dev/null 2>&1
push="$(echo 'Y' | $GIT_FTP push)"
assertEquals 0 $?
assertContains 'Unknown SHA1 object' "$push"
assertContains 'Do you want to ignore' "$push"
assertTrue ' test 1.txt uploaded' "remote_file_equals 'test 1.txt'"
}
test_defaults() {
cd $GIT_PROJECT_PATH
git config git-ftp.user $GIT_FTP_USER
git config git-ftp.password $GIT_FTP_PASSWD
git config git-ftp.url $GIT_FTP_URL
init=$($GIT_FTP_CMD init)
rtrn=$?
assertEquals 0 $rtrn
}
test_defaults_uses_url_by_cli() {
cd $GIT_PROJECT_PATH
git config git-ftp.user $GIT_FTP_USER
git config git-ftp.password $GIT_FTP_PASSWD
git config git-ftp.url notexisits
init=$($GIT_FTP_CMD init $GIT_FTP_URL)
rtrn=$?
assertEquals 0 $rtrn
}
test_defaults_uses_user_by_cli() {
[ -z "$GIT_FTP_USER" ] && startSkipping
cd $GIT_PROJECT_PATH
git config git-ftp.user johndoe
git config git-ftp.password $GIT_FTP_PASSWD
git config git-ftp.url $GIT_FTP_URL
init=$($GIT_FTP_CMD init $GIT_FTP_USER_ARG)
rtrn=$?
assertEquals 0 $rtrn
}
test_defaults_uses_password_by_cli() {
[ -z "$GIT_FTP_PASSWD" ] && startSkipping
cd $GIT_PROJECT_PATH
git config git-ftp.user $GIT_FTP_USER
git config git-ftp.password wrongpasswd
git config git-ftp.url $GIT_FTP_URL
init=$($GIT_FTP_CMD init $GIT_FTP_PASSWD_ARG)
rtrn=$?
assertEquals 0 $rtrn
}
test_deployedsha1file_rename() {
local file='git-ftp.txt'
git config git-ftp.deployedsha1file "$file"
init=$($GIT_FTP init)
assertEquals 0 $?
assertTrue " '$file' does not exist" "remote_file_exists '$file'"
assertFalse " '.git-ftp.log' does exist" "remote_file_exists '.git-ftp.log'"
}
test_scopes() {
cd $GIT_PROJECT_PATH
git config git-ftp.user $GIT_FTP_USER
git config git-ftp.password wrongpasswd
git config git-ftp.url $GIT_FTP_URL
git config git-ftp.testing.password $GIT_FTP_PASSWD
init=$($GIT_FTP_CMD init -s testing)
rtrn=$?
assertEquals 0 $rtrn
}
test_invalid_scope_name() {
out=$($GIT_FTP_CMD init -s invalid:scope 2>&1)
assertEquals 2 $?
assertEquals 'fatal: Invalid scope name.' "$out"
out=$($GIT_FTP_CMD add-scope invalid:scope 2>&1)
assertEquals 2 $?
assertEquals 'fatal: Invalid scope name.' "$out"
}
test_scopes_using_branchname_as_scope() {
cd $GIT_PROJECT_PATH
git config git-ftp.production.user $GIT_FTP_USER
git config git-ftp.production.password $GIT_FTP_PASSWD
git config git-ftp.production.url $GIT_FTP_URL
git checkout -b production > /dev/null 2>&1
init=$($GIT_FTP_CMD init -s)
rtrn=$?
assertEquals 0 $rtrn
}
test_overwrite_defaults_by_scopes_emtpy_string() {
cd $GIT_PROJECT_PATH
git config git-ftp.user $GIT_FTP_USER
git config git-ftp.password $GIT_FTP_PASSWD
git config git-ftp.url $GIT_FTP_URL
git config git-ftp.testing.url ''
init=$($GIT_FTP_CMD init -s testing 2>/dev/null)
rtrn=$?
assertEquals 3 $rtrn
}
test_scopes_uses_password_by_cli() {
cd $GIT_PROJECT_PATH
git config git-ftp.user $GIT_FTP_USER
git config git-ftp.password wrongpasswd
git config git-ftp.url $GIT_FTP_URL
git config git-ftp.testing.password wrongpasswdtoo
init=$($GIT_FTP_CMD init -s testing $GIT_FTP_PASSWD_ARG)
rtrn=$?
assertEquals 0 $rtrn
}
test_scopes_add() {
add=$($GIT_FTP_CMD add-scope xyz ftpes://user:password@ftp.example.com/xyz)
assertEquals 0 $?
assertFalse 'Does not display warning with valid URL' "echo $add | grep ^Warning -q"
add=$($GIT_FTP_CMD add-scope xyz ftpes://user:pass:word@ftp.example.com/xyz)
assertEquals 0 $?
assertTrue 'Does display warning invalid URL' "echo $add | grep ^Warning -q"
}
test_delete() {
cd $GIT_PROJECT_PATH
init=$($GIT_FTP init)
assertTrue 'test failed: file does not exist' "remote_file_exists 'test 1.txt'"
git rm "test 1.txt" > /dev/null 2>&1
git commit -a -m "delete file" > /dev/null 2>&1
push=$($GIT_FTP push)
rtrn=$?
assertEquals 0 $rtrn
assertFalse 'test failed: file still exists' "remote_file_exists 'test 1.txt'"
assertTrue 'test failed: file does not exist' "remote_file_exists 'dir 1/test 1.txt'"
git rm -r "dir 1" > /dev/null 2>&1
git commit -a -m "delete dir" > /dev/null 2>&1
push=$($GIT_FTP push)
assertFalse 'test failed: dir and file still exists' "remote_file_exists 'dir 1/test 1.txt'"
# See https://github.com/git-ftp/git-ftp/issues/168
# assertFalse 'test failed: dir still exists' "remote_file_exists 'dir 1/'"
}
test_ignore_single_file() {
cd $GIT_PROJECT_PATH
echo "test 1.txt" > .git-ftp-ignore
init=$($GIT_FTP init)
assertFalse 'test failed: file was not ignored' "remote_file_exists 'test 1.txt'"
}
test_ignore_single_file_force_unknown_commit() {
init=$($GIT_FTP init)
local file='ignored.txt'
touch $file
echo $file > .git-ftp-ignore
git add .
git commit -m 'added new file that should be ignored' -q
echo '000000000' | $CURL -s -T - $CURL_URL/.git-ftp.log
push=$($GIT_FTP push -f)
assertFalse 'test failed: file was not ignored' "remote_file_exists '$file'"
}
test_ignore_dir() {
cd $GIT_PROJECT_PATH
echo "dir 1/*" > .git-ftp-ignore
init=$($GIT_FTP init)
assertFalse 'test failed: dir was not ignored' "remote_file_exists 'dir 1/test 1.txt'"
assertTrue 'test failed: wrong dir was ignored' "remote_file_exists 'dir 2/test 2.txt'"
}
test_ignore_pattern() {
cd $GIT_PROJECT_PATH
echo "test*" > .git-ftp-ignore
init=$($GIT_FTP init)
for i in 1 2 3 4 5
do
assertFalse 'test failed: was not ignored' "remote_file_exists 'test $i.txt'"
done;
}
test_ignore_pattern_single() {
cd $GIT_PROJECT_PATH
echo 'test' > 'test'
echo 'test' > .git-ftp-ignore
git add .
git commit -m 'adding file that should not be uploaded' > /dev/null
init=$($GIT_FTP init)
assertFalse 'test failed: was not ignored' "remote_file_exists 'test'"
for i in 1 2 3 4 5
do
assertTrue 'test failed: was ignored' "remote_file_exists 'test $i.txt'"
done;
}
test_ignore_wildcard_files() {
cd $GIT_PROJECT_PATH
echo "test *.txt" > .git-ftp-ignore
init=$($GIT_FTP init)
for i in 1 2 3 4 5
do
assertFalse 'test failed: was not ignored' "remote_file_exists 'test $i.txt'"
done;
}
test_ignore_git_files() {
echo ".gitignore" >> .git-ftp-ignore
echo "*/.gitkeep" >> .git-ftp-ignore
echo ".git-ftp-ignore" >> .git-ftp-ignore
echo "Please keep this directory." > "dir 1/.gitkeep"
git add .
git commit -m "Ignoring Git files" -q
init="$($GIT_FTP init)"
assertRemoteFileMissing ".git-ftp-ignore"
assertRemoteFileMissing "dir 1/.gitkeep"
}
test_include_init() {
echo 'unversioned' > unversioned.txt
echo 'unversioned.txt' >> .gitignore
echo 'unversioned.txt:test 1.txt' > .git-ftp-include
git add .
git commit -m 'unversioned file unversioned.txt should be uploaded with test 1.txt' > /dev/null
init=$($GIT_FTP init)
assertTrue 'unversioned.txt was not uploaded' "remote_file_exists 'unversioned.txt'"
}
test_include_directory() {
mkdir unversioned
touch unversioned/file.txt
echo 'unversioned/:test 1.txt' > .git-ftp-include
mkdir unversioned-not-included
touch unversioned-not-included/file.txt
init=$($GIT_FTP init)
assertTrue 'unversioned/file.txt was not uploaded' "remote_file_exists 'unversioned/file.txt'"
assertFalse 'unversioned-not-included/file.txt was uploaded' "remote_file_exists 'unversioned-not-included/file.txt'"
}
test_include_directory_always() {
mkdir unversioned
touch unversioned/file.txt
echo '!unversioned/' > .git-ftp-include
mkdir unversioned-not-included
touch unversioned-not-included/file.txt
init=$($GIT_FTP init)
assertTrue 'unversioned/file.txt was not uploaded' "remote_file_exists 'unversioned/file.txt'"
assertFalse 'unversioned-not-included/file.txt was uploaded' "remote_file_exists 'unversioned-not-included/file.txt'"
}
test_include_whitespace_init() {
cd $GIT_PROJECT_PATH
echo 'unversioned' > unversioned.txt
echo 'unversioned.txt' >> .gitignore
echo 'unversioned.txt:test X.txt' > .git-ftp-include
git add .
git commit -m 'unversioned file unversioned.txt should not be uploaded. test X.txt does not exist.' > /dev/null
init=$($GIT_FTP init)
assertFalse 'unversioned.txt was uploaded' "remote_file_exists 'unversioned.txt'"
}
test_include_push() {
cd $GIT_PROJECT_PATH
init=$($GIT_FTP init)
echo 'unversioned' > unversioned.txt
echo 'unversioned.txt' >> .gitignore
echo 'unversioned.txt:test 1.txt' > .git-ftp-include
echo 'new content' >> 'test 1.txt'
git add .
git commit -m 'unversioned file unversioned.txt should be uploaded with test 1.txt' > /dev/null
push=$($GIT_FTP push)
assertTrue 'unversioned.txt was not uploaded' "remote_file_exists 'unversioned.txt'"
}
test_include_push_delete() {
echo 'unversioned' > unversioned.txt
echo 'unversioned.txt' >> .gitignore
echo 'unversioned.txt:test 1.txt' > .git-ftp-include
echo 'unversioned.txt:test 2.txt' >> .git-ftp-include
echo 'new content' >> 'test 1.txt'
git add .
git commit -m 'unversioned file unversioned.txt should be uploaded with test 1.txt' -q
init=$($GIT_FTP init)
git rm 'test 1.txt' -q
git commit -m 'the trigger file of unversioned.txt is deleted which deletes the target file' -q
push=$($GIT_FTP push)
assertTrue 'unversioned.txt was deleted' "remote_file_exists 'unversioned.txt'"
echo 'new content' >> 'test 2.txt'
rm 'unversioned.txt'
git commit -a -m 'the local deletion of unversioned.txt should delete remote file' -q
push=$($GIT_FTP push)
assertFalse 'unversioned.txt was not deleted' "remote_file_exists 'unversioned.txt'"
}
test_include_ignore_init() {
cd $GIT_PROJECT_PATH
echo 'htaccess' > .htaccess
echo 'htaccess.prod' > .htaccess.prod
echo '.htaccess:.htaccess.prod' > .git-ftp-include
echo '.htaccess.prod' > .gitignore
git add .
git commit -m 'htaccess setup' > /dev/null
init=$($GIT_FTP init)
assertTrue ' .htaccess was ignored' "remote_file_exists '.htaccess'"
assertFalse ' .htaccess.prod was uploaded' "remote_file_exists '.htaccess.prod'"
}
test_include_ignore_push() {
cd $GIT_PROJECT_PATH
init=$($GIT_FTP init)
echo 'htaccess' > .htaccess
echo 'htaccess.prod' > .htaccess.prod
echo '.htaccess:.htaccess.prod' > .git-ftp-include
echo '.htaccess.prod' > .gitignore
git add .
git commit -m 'htaccess setup' > /dev/null
push=$($GIT_FTP push)
assertTrue ' .htaccess was ignored' "remote_file_exists '.htaccess'"
assertFalse ' .htaccess.prod was uploaded' "remote_file_exists '.htaccess.prod'"
}
# Testing Github issue #245
test_include_ignore_all_push() {
init=$($GIT_FTP init)
echo 'always include me' > untracked.txt
echo '!untracked.txt' > .git-ftp-include
git commit --allow-empty -m 'There are no changed files in this commit.' -q
push=$($GIT_FTP push)
assertTrue ' include file always' "remote_file_exists 'untracked.txt'"
}
test_include_ftp_ignore_init() {
cd $GIT_PROJECT_PATH
echo 'htaccess' > .htaccess
echo 'htaccess.prod' > .htaccess.prod
echo '.htaccess:.htaccess.prod' > .git-ftp-include
echo '.htaccess.prod' > .git-ftp-ignore
git add .
git commit -m 'htaccess setup' > /dev/null
init=$($GIT_FTP init)
assertTrue ' .htaccess was ignored' "remote_file_exists '.htaccess'"
assertFalse ' .htaccess.prod was uploaded' "remote_file_exists '.htaccess.prod'"
}
test_include_ftp_ignore_push() {
cd $GIT_PROJECT_PATH
init=$($GIT_FTP init)
echo 'htaccess' > .htaccess
echo 'htaccess.prod' > .htaccess.prod
echo '.htaccess:.htaccess.prod' > .git-ftp-include
echo '.htaccess.prod' > .git-ftp-ignore
git add .
git commit -m 'htaccess setup' > /dev/null
push=$($GIT_FTP push)
assertTrue ' .htaccess was ignored' "remote_file_exists '.htaccess'"
assertFalse ' .htaccess.prod was uploaded' "remote_file_exists '.htaccess.prod'"
}
test_include_always_syncroot_push() {
init=$($GIT_FTP init)
mkdir "public_html"
echo "public_html" > .gitignore
echo "content" > "public_html/always.html"
echo "!public_html/always.html" > .git-ftp-include
git add .
git commit -m "setup" > /dev/null
push="$($GIT_FTP push --syncroot "public_html")"
assertTrue " upload always.html" "remote_file_exists 'always.html'"
}
test_include_syncroot_push() {
init=$($GIT_FTP init)
mkdir "public_html"
echo "content" > "public_html/style.sass"
echo "content" > "public_html/style.css"
echo "public_html/style.css" > .gitignore
echo "public_html/style.css:style.sass" > .git-ftp-include
git add .
git commit -m "setup" > /dev/null
push="$($GIT_FTP push --syncroot "public_html")"
assertTrue " upload style.css" "remote_file_exists 'style.css'"
}
# addresses issue #41
test_include_similar() {
cd $GIT_PROJECT_PATH
echo 'unversioned' > foo.html
echo '/foo.html' >> .gitignore
echo 'foo.html:templates/foo.html' > .git-ftp-include
mkdir templates
echo 'new content' >> 'templates/foo.html'
git add .
git commit -m 'unversioned file foo.html should be uploaded with templates/foo.html' > /dev/null
init=$($GIT_FTP init)
assertTrue 'foo.html was not uploaded' "remote_file_exists 'foo.html'"
assertTrue 'templates/foo.html was not uploaded' "remote_file_exists 'templates/foo.html'"
}
# resolves issue #245
test_include_syncroot() {
source1="main.scss"
source2="other.scss"
source3="three.scss"
targetfile1="main.css"
targetfile2="other.css"
targetfile3="three.css"
syncroot="dist"
target1="$syncroot/$targetfile1"
target2="$syncroot/$targetfile2"
target3="$syncroot/$targetfile3"
touch "$source1" "$source2" "$source3"
mkdir "$syncroot"
touch "$target1" "$target2" "$target3"
echo "$syncroot" > ".gitignore"
echo "$target1:/$source1" >> ".git-ftp-include"
git add .
git commit -a -m "no dist files included" -q
init="$($GIT_FTP init --syncroot "$syncroot")"
assertTrue "remote file '$targetfile1'" "remote_file_exists '$targetfile1'"
assertFalse "remote file '$targetfile2'" "remote_file_exists '$targetfile2'"
assertFalse "remote file '$targetfile3'" "remote_file_exists '$targetfile3'"
# push no files
echo "$target2:/$source2" >> ".git-ftp-include"
echo "$target3:/$source3" >> ".git-ftp-include"
git add .
git commit -a -m "test not uploading dist files" -q
push="$($GIT_FTP push --syncroot "$syncroot")"
assertTrue "remote file '$targetfile1'" "remote_file_exists '$targetfile1'"
assertFalse "remote file '$targetfile2'" "remote_file_exists '$targetfile2'"
assertFalse "remote file '$targetfile3'" "remote_file_exists '$targetfile3'"
# push no files
echo "content" >> "$source2"
git add .
git commit -a -m "test uploading some dist files" -q
push="$($GIT_FTP push --syncroot "$syncroot")"
assertTrue "remote file '$targetfile1'" "remote_file_exists '$targetfile1'"
assertTrue "remote file '$targetfile2'" "remote_file_exists '$targetfile2'"
assertFalse "remote file '$targetfile3'" "remote_file_exists '$targetfile3'"
}
test_hidden_file_only() {
cd $GIT_PROJECT_PATH
echo "test" > .htaccess
git add . > /dev/null 2>&1
git commit -a -m "init" > /dev/null 2>&1
init=$($GIT_FTP init)
assertTrue 'test failed: .htaccess not uploaded' "remote_file_exists '.htaccess'"
}
# issue #23
test_file_with_nonchar() {
file1='#4253-Release Contest.md'
file1enc='%234253-Release%20Contest.md'
file2='v1.2.0 #8950 - Custom Partner Player.md'
file2enc='v1.2.0%20%238950%20-%20Custom%20Partner%20Player.md'
echo 'content1' > "$file1"
echo 'content2' > "$file2"
git add .
git commit -a -m 'added special filenames' -q
init=$($GIT_FTP init)
assertTrue " file $file1 not uploaded" "remote_file_equals '$file1' '$file1enc'"
assertTrue " file $file2 not uploaded" "remote_file_equals '$file2' '$file2enc'"
git rm "$file1" -q
git rm "$file2" -q
git commit -m 'delete' -q
push=$($GIT_FTP push)
assertFalse "file $file1 still exists in $CURL_URL" "remote_file_exists '$file1enc'"
assertFalse "file $file2 still exists in $CURL_URL" "remote_file_exists '$file2enc'"
}
# issue #209
test_file_with_unicode() {
supports_unicode || startSkipping
# TODO: Get this working on MacOS if possible with curl
[ "$TRAVIS_OS_NAME" = "osx" ] && startSkipping
file1='umlaut_ä.md'
file1enc='umlaut_%C3%A4.md'
echo 'content' > "$file1"
git add .
git commit -a -m 'added special filenames' -q
init=$($GIT_FTP init)
assertTrue " file $file1 not uploaded" "remote_file_equals '$file1' '$file1enc'"
git rm "$file1" -q
git commit -m 'delete' -q
push=$($GIT_FTP push)
assertFalse "file $file1 still exists in $CURL_URL" "remote_file_exists '$file1enc'"
}
# issue #259
test_file_with_dash() {
dir='-dashdir'
file='-dash'
mkdir -- "$dir"
echo 'content' > "$file"
echo 'content' > "$dir/$file"
git add .
git commit -a -m 'added special filenames' -q
init="$($GIT_FTP init)"
assertTrue " file $file not uploaded" "remote_file_equals '$file'"
assertTrue " file $dir/$file not uploaded" "remote_file_equals '$dir/$file'"
git rm -q -- "$file"
git rm -q -- "$dir/$file"
git commit -m 'delete' -q
push="$($GIT_FTP push)"
assertFalse "file $file still exists in $CURL_URL" "remote_file_exists '$file'"
assertFalse "file $dir/$file still exists in $CURL_URL" "remote_file_exists '$dir/$file'"
}
test_syncroot() {
cd $GIT_PROJECT_PATH
syncroot='foo bar'
mkdir "$syncroot" && echo "test" > "$syncroot/syncroot.txt"
git add . > /dev/null 2>&1
git commit -a -m "syncroot test" > /dev/null 2>&1
init=$($GIT_FTP init --syncroot "$syncroot")
assertTrue 'test failed: syncroot.txt not there as expected' "remote_file_exists 'syncroot.txt'"
}
test_syncroot_config() {
syncroot='foo bar'
mkdir "$syncroot" && echo "test" > "$syncroot/syncroot.txt"
git add . > /dev/null 2>&1
git commit -a -m "syncroot test" > /dev/null 2>&1
git config git-ftp.syncroot "$syncroot"
init="$($GIT_FTP init)"
assertTrue 'test failed: syncroot.txt not there as expected' "remote_file_exists 'syncroot.txt'"
}
test_download() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' > external.txt
$CURL -T external.txt $CURL_URL/ 2> /dev/null
rtrn=$?
assertEquals 0 $rtrn
rm external.txt
$GIT_FTP download > /dev/null 2>&1
rtrn=$?
assertEquals 0 $rtrn
assertTrue ' external file not downloaded' "[ -r 'external.txt' ]"
}
test_download_untracked() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' | $CURL -T - $CURL_URL/external.txt 2> /dev/null
touch 'untracked.file'
$GIT_FTP download > /dev/null 2>&1
assertEquals 8 $?
assertFalse ' external file downloaded' "[ -f 'external.txt' ]"
assertTrue ' untracked file deleted' "[ -r 'untracked.file' ]"
}
test_download_syncroot() {
skip_without lftp
cd $GIT_PROJECT_PATH
mkdir foobar && echo "test" > foobar/syncroot.txt
git add . > /dev/null 2>&1
git commit -a -m "syncroot test" > /dev/null 2>&1
init=$($GIT_FTP init --syncroot foobar)
echo 'foreign content' > external.txt
$CURL -T external.txt $CURL_URL/ 2> /dev/null
rm external.txt
$GIT_FTP download --syncroot foobar/ > /dev/null 2>&1
rtrn=$?
assertEquals 0 $rtrn
assertFalse ' external file downloaded to git root' "[ -r 'external.txt' ]"
assertTrue ' external file not downloaded to syncroot' "[ -r 'foobar/external.txt' ]"
}
test_download_dry_run() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' | $CURL -T - $CURL_URL/external.txt 2> /dev/null
$GIT_FTP download --dry-run > /dev/null 2>&1
assertEquals 0 $?
assertTrue ' external file downloaded' "[ ! -e 'external.txt' ]"
}
test_pull() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' > external.txt
$CURL -T external.txt $CURL_URL/ 2> /dev/null
rm external.txt
echo 'own content' > internal.txt
git add . > /dev/null 2>&1
git commit -a -m "local modification" > /dev/null 2>&1
$GIT_FTP pull > /dev/null 2>&1
rtrn=$?
assertEquals 0 $rtrn
assertTrue ' external file not downloaded' "[ -r 'external.txt' ]"
assertTrue ' external file not listed in commit message' "git log | grep 'external.txt'"
}
test_pull_nothing() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
$GIT_FTP pull > /dev/null 2>&1
assertEquals 0 $?
}
test_pull_branch() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' > external.txt
$CURL -T external.txt $CURL_URL/ 2> /dev/null
rm external.txt
echo 'own content' > internal.txt
git add . > /dev/null 2>&1
git commit -a -m "local modification" > /dev/null 2>&1
git checkout -b deploy-branch > /dev/null 2>&1
echo '1' > version.txt
git add -A .
git commit -m 'branch modification' > /dev/null 2>&1
$GIT_FTP pull > /dev/null 2>&1
rtrn=$?
assertEquals 0 $rtrn
assertTrue ' external file not downloaded' "[ -r 'external.txt' ]"
assertTrue ' version.txt of deploy-branch not found' "[ -r 'version.txt' ]"
assertEquals '## deploy-branch' "$(git status -sb)"
}
test_pull_no_commit() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' > external.txt
$CURL -T external.txt $CURL_URL/ 2> /dev/null
rm external.txt
echo 'own content' > internal.txt
git add . > /dev/null 2>&1
git commit -a -m "local modification" > /dev/null 2>&1
LOCAL_SHA1=$(git log -n 1 --pretty=format:%H)
$GIT_FTP pull --no-commit > /dev/null 2>&1
rtrn=$?
assertEquals 0 $rtrn
assertTrue ' external file not downloaded' "[ -r 'external.txt' ]"
assertEquals $LOCAL_SHA1 $(git log -n 1 --pretty=format:%H)
}
test_pull_dry_run() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' | $CURL -T - $CURL_URL/external.txt 2> /dev/null
echo 'own content' > internal.txt
git add . > /dev/null 2>&1
git commit -a -m "local modification" > /dev/null 2>&1
pull=$($GIT_FTP pull --dry-run 2> /dev/null)
assertEquals 0 $?
assertTrue ' external file downloaded' "[ ! -e 'external.txt' ]"
assertFalse "$pull" "echo \"$pull\" | grep 'Last deployment changed to '"
# TODO: idea: really download files and show `git diff` and `git diff --stat`, then reset
}
test_pull_untracked() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' | $CURL -T - $CURL_URL/external.txt 2> /dev/null
echo 'own content' > internal.txt
echo 'internal.txt' >> .gitignore
git add . > /dev/null 2>&1
git commit -a -m "ignore some file" > /dev/null 2>&1
pull=$($GIT_FTP pull 2> /dev/null)
assertEquals 0 $?
assertTrue 'internal.txt is missing' "[ -f internal.txt ]"
assertEquals '' "$(git log -- 'internal.txt')"
}
test_pull_stash() {
skip_without lftp
cd $GIT_PROJECT_PATH
$GIT_FTP init > /dev/null
echo 'foreign content' | $CURL -T - $CURL_URL/external.txt 2> /dev/null
echo 'own content' > internal.txt
git stash -u -q
pull=$($GIT_FTP pull 2> /dev/null)
assertEquals 0 $?
stash_count="$(git stash list | wc -l)"
stash_count=$((stash_count+0)) # trims whitespaces produced by wc on OSX
assertEquals 1 "$stash_count"
assertFalse 'internal.txt appeared' "[ -f internal.txt ]"
assertEquals '' "$(git log -- 'internal.txt')"
}
test_pull_changedonly() {
skip_without lftp
echo 'foreign content' > external.txt
curl -T external.txt "$CURL_URL/" 2> /dev/null
rm external.txt
echo 'own content' > not_modified.txt
echo 'own content' > locally_modified.txt
echo 'own content' > locallyremotely_modified.txt
git add . > /dev/null 2>&1
git commit -a -m "init" -q
$GIT_FTP init -n
echo 'own content local modification' > locally_modified.txt
echo 'own content\nforeign content' > locallyremotely_modified.txt
$CURL -s -T "locallyremotely_modified.txt" "$CURL_URL/"
echo 'local modification\nown content' > locallyremotely_modified.txt
git add . > /dev/null 2>&1
git commit -a -m "local modification" -q
$GIT_FTP pull --changed-only > /dev/null 2>&1
assertEquals 0 $?
assertFalse ' external file downloaded' "[ -r 'external.txt' ]"
assertFalse ' external file listed in commit message' "git log | grep 'external.txt'"
assertFalse ' not_modified file listed in commit message' "git log | grep 'not_modified.txt'"
assertFalse ' locally_modified file listed in commit message' "git log | grep 'locally_modified.txt'"
assertTrue ' locallyremotely_modified file not listed in commit message' "git log | grep 'locallyremotely_modified.txt'"
lines="$(wc -l < locallyremotely_modified.txt | tr -d ' ')"
assertEquals ' locallremotely_modified not correctly merged' 3 "$lines"
}
test_snapshot_fail() {
skip_without lftp
$GIT_FTP init -n
$GIT_FTP snapshot -n
assertEquals 2 $?
}
test_snapshot() {
skip_without lftp
$GIT_FTP init -n
$CURL -s -Q "-*DELE $REMOTE_PATH/.git-ftp.log" "$REMOTE_BASE_URL" > /dev/null
$GIT_FTP snapshot -n
assertEquals 0 $?
}
test_submodule() {
submodule='sub'
file='file.txt'
mkdir "$submodule"
cd "$submodule"
touch "$file"
git init -q
git add .
git commit -m 'initial submodule commit' -q
cd ..
git submodule -q add "/$submodule" > /dev/null
git commit -m 'adding submodule' -q
init=$($GIT_FTP init)
assertTrue "test failed: $file not there as expected" "remote_file_exists '$submodule/$file'"
}
test_submodule_netrc() {
submodule='sub'
file='file.txt'
mkdir "$submodule"
cd "$submodule"
touch "$file"
git init -q
git add .
git commit -m 'initial submodule commit' -q
cd ..
git submodule -q add "/$submodule" > /dev/null
echo "machine localhost login $GIT_FTP_USER password $GIT_FTP_PASSWD" > .netrc
chmod 600 .netrc
git add .
git commit -m 'adding submodule' -q
# Setting $HOME to look for .netrc file
init="$(HOME="$(pwd)" $GIT_FTP_CMD init "$GIT_FTP_URL")"
assertTrue "test failed: $file not there as expected" "remote_file_exists '$submodule/$file'"
}
test_submodule_catchup() {
submodule='sub'
file='file.txt'
mkdir "$submodule"
cd "$submodule"
touch "$file"
git init -q
git add .
git commit -m 'initial submodule commit' -q
cd ..
git submodule -q add "/$submodule" > /dev/null
git commit -m 'adding submodule' -q
catchup=$($GIT_FTP catchup)
assertTrue "test failed: $submodule/.git-ftp.log not there as expected" "remote_file_exists '$submodule/.git-ftp.log'"
}
test_submodule_syncroot() {
syncroot='dist'
submodule="sub"
submodule_path="$syncroot/sub"
file='file.txt'
mkdir -p "$submodule_path"
cd "$submodule_path"
touch "$file"
git init -q
git add .
git commit -m 'initial submodule commit' -q
cd - > /dev/null
git submodule -q add "./$submodule_path" "$submodule_path" > /dev/null
git commit -m 'adding submodule' -q
init="$($GIT_FTP init --syncroot "$syncroot")"
assertTrue "test failed: $file not there as expected" "remote_file_exists '$submodule/$file'"
}
test_pre_push() {
# init
hook=".git/hooks/pre-ftp-push"
message="pre-ftp-push executed."
echo "echo '$message'" > "$hook"
chmod +x "$hook"
out="$($GIT_FTP init)"
firstline="$(echo "$out" | head -n 1)"
assertEquals "$message" "$firstline"
# push
echo 'new content' >> 'test 1.txt'
git rm 'test 2.txt' -q
git commit -a -m 'new content' -q
echo 'while read -r -d "" status file; do echo "$status - $file"; done' > "$hook"
out="$($GIT_FTP push -n)"
firstline="$(echo "$out" | head -n 1)"
lastline="$(echo "$out" | tail -n 1)"
assertEquals "A - test 1.txt" "$firstline"
assertEquals "D - test 2.txt" "$lastline"
# push fail
echo 'new content' >> 'test 1.txt'
git commit -a -m 'new content' -q
echo 'exit 1' > "$hook"
out="$($GIT_FTP push -n)"
assertEquals 9 "$?"
assertEquals "" "$out"
# ignore hook
out="$($GIT_FTP push -n --no-verify)"
assertEquals 0 "$?"
assertEquals "" "$out"
}
test_post_push() {
# init
hook=".git/hooks/post-ftp-push"
message="post-ftp-push executed."
echo "echo '$message'" > "$hook"
chmod +x "$hook"
out="$($GIT_FTP init -n)"
assertEquals "$message" "$out"
}
test_insecure_defaults_value() {
out="$($GIT_FTP init -v 2>/dev/null)"
echo "$out" | grep --quiet "Insecure is '0'"
assertEquals 0 $?
}
test_insecure_from_config() {
git config git-ftp.insecure 1
out="$($GIT_FTP init -v 2>/dev/null)"
echo "$out" | grep --quiet "Insecure is '1'"
assertEquals 0 $?
}
test_insecure_options() {
out="$($GIT_FTP --insecure init -v 2>/dev/null)"
echo "$out" | grep --quiet "Insecure is '1'"
assertEquals 0 $?
}
test_post_push_arguments_first() {
hook=".git/hooks/post-ftp-push"
echo 'echo "arguments: $1 $2 $3 $4"' > "$hook"
scope="$GIT_FTP_HOST$GIT_FTP_PORT"
url="ftp://$GIT_FTP_USER:***@$GIT_FTP_HOST$GIT_FTP_PORT/$REMOTE_PATH/"
local_commit="$(git log -n 1 --pretty=format:%H)"
remote_commit=""
expected="arguments: $scope $url $local_commit $remote_commit"
chmod +x "$hook"
out="$($GIT_FTP init -n)"
rtrn=$?
assertEquals 0 $rtrn
assertEquals "$expected" "$out"
}
test_post_push_arguments_repeated() {
first_commit="$(git log -n 1 --pretty=format:%H)"
$GIT_FTP init -n
touch newfile
git add . > /dev/null 2>&1
git commit -m 'Second commit' -q
hook=".git/hooks/post-ftp-push"
echo 'echo "arguments: $1 $2 $3 $4"' > "$hook"
scope="$GIT_FTP_HOST$GIT_FTP_PORT"
url="ftp://$GIT_FTP_USER:***@$GIT_FTP_HOST$GIT_FTP_PORT/$REMOTE_PATH/"
local_commit="$(git log -n 1 --pretty=format:%H)"
remote_commit="$first_commit"
expected="arguments: $scope $url $local_commit $remote_commit"
chmod +x "$hook"
out="$($GIT_FTP push -n)"
rtrn=$?
assertEquals 0 $rtrn
assertEquals "$expected" "$out"
}
test_post_push_no_fail() {
hook=".git/hooks/post-ftp-push"
echo 'exit 99' > "$hook"
chmod +x "$hook"
$GIT_FTP init -n
rtrn=$?
assertEquals 0 $rtrn
}
test_post_push_fail() {
hook=".git/hooks/post-ftp-push"
echo 'exit 99' > "$hook"
chmod +x "$hook"
$GIT_FTP init -n --enable-post-errors
rtrn=$?
assertEquals 9 $rtrn
}
disabled_test_file_named_dash() {
cd $GIT_PROJECT_PATH
echo "foobar" > -
assertTrue 'test failed: file named - not there as expected' "[ -f '$GIT_PROJECT_PATH/-' ]"
git add . > /dev/null 2>&1
git commit -a -m "file named - test" > /dev/null 2>&1
init=$($GIT_FTP init)
rtrn=$?
assertEquals 0 $rtrn
}
remote_file_exists() {
$CURL "$CURL_URL/$1" --head > /dev/null
}
remote_file_equals() {
local file="$1"
local remote="$2"
[ -z "$remote" ] && remote="$file"
$CURL -s "$CURL_URL/$remote" | diff - -- "$file" > /dev/null
}
assertRemoteFileExists() {
local file="$1"
assertTrue " File '$file' does not exist on remote." "remote_file_exists '$file'"
}
assertRemoteFileMissing() {
local file="$1"
assertFalse " File '$file' exists on remote." "remote_file_exists '$file'"
}
assertContains() {
assertTrue "Could not find expression: $1\nTested: $2" "echo \"$2\" | grep '$1'"
}
skip_without() {
command -v $1 > /dev/null || startSkipping
}
# Git for Windows running with Wine doesn't handle unicode well.
# Unicode filenames don't work on Windows at the moment.
# - `sort -u` thinks that 'a' equals 'ä' and therefore omits 'ä'.
# - `curl` fails to open files with unicode in their name bagder/curl#345
supports_unicode() {
count="$(printf 'a\nä\n' | sort -u | wc -l)"
count=$((count+0)) # trims whitespaces produced by wc on OSX
test "$count" = "2"
}
abs_dirname() {
# Some systems don't know the `realpath` command and `readlink -f` doesn't work on OSX ...
# use workaround from http://stackoverflow.com/a/3572105
(cd "$(dirname "$1")" && echo "$PWD")
}
# load and run shUnit2
TESTDIR="$(abs_dirname "$0")"
. $TESTDIR/shunit2-2.1.6/src/shunit2
|