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
|
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
begin_test "verify with retries"
(
set -e
reponame="verify-fail-2-times"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
git add .gitattributes
git commit -m "initial commit"
contents="send-verify-action"
contents_oid="$(calc_oid "$contents")"
contents_short_oid="$(echo "$contents_oid" | head -c 7)"
printf "%s" "$contents" > a.dat
git add a.dat
git commit -m "add a.dat"
GIT_TRACE=1 GIT_CURL_VERBOSE=1 git push origin main 2>&1 | tee push.log
grep "Authorization: Basic * * * * *" push.log
[ "0" -eq "${PIPESTATUS[0]}" ]
[ "2" -eq "$(grep -c "verify $contents_short_oid attempt" push.log)" ]
)
end_test
begin_test "verify with retries (success without retry)"
(
set -e
reponame="verify-fail-0-times"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
git add .gitattributes
git commit -m "initial commit"
contents="send-verify-action"
contents_oid="$(calc_oid "$contents")"
contents_short_oid="$(echo "$contents_oid" | head -c 7)"
printf "%s" "$contents" > a.dat
git add a.dat
git commit -m "add a.dat"
GIT_TRACE=1 GIT_CURL_VERBOSE=1 git push origin main 2>&1 | tee push.log
grep "Authorization: Basic * * * * *" push.log
[ "0" -eq "${PIPESTATUS[0]}" ]
[ "1" -eq "$(grep -c "verify $contents_short_oid attempt" push.log)" ]
)
end_test
begin_test "verify with retries (insufficient retries)"
(
set -e
reponame="verify-fail-10-times"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.dat"
git add .gitattributes
git commit -m "initial commit"
contents="send-verify-action"
contents_oid="$(calc_oid "$contents")"
contents_short_oid="$(echo "$contents_oid" | head -c 7)"
printf "%s" "$contents" > a.dat
git add a.dat
git commit -m "add a.dat"
set +e
GIT_TRACE=1 git push origin main 2>&1 | tee push.log
if [ "0" -eq "${PIPESTATUS[0]}" ]; then
echo >&2 "verify: expected \"git push\" to fail, didn't ..."
exit 1
fi
set -e
[ "3" -eq "$(grep -c "verify $contents_short_oid attempt" push.log)" ]
)
end_test
begin_test "verify with retries (bad .gitconfig)"
(
set -e
reponame="bad-config-verify-fail-2-times"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
# Invalid `lfs.transfer.maxverifies` will default to 3.
git config "lfs.transfer.maxverifies" "-1"
git lfs track "*.dat"
git add .gitattributes
git commit -m "initial commit"
contents="send-verify-action"
contents_oid="$(calc_oid "$contents")"
contents_short_oid="$(echo "$contents_oid" | head -c 7)"
printf "%s" "$contents" > a.dat
git add a.dat
git commit -m "add a.dat"
GIT_TRACE=1 GIT_CURL_VERBOSE=1 git push origin main 2>&1 | tee push.log
grep "Authorization: Basic * * * * *" push.log
[ "0" -eq "${PIPESTATUS[0]}" ]
[ "2" -eq "$(grep -c "verify $contents_short_oid attempt" push.log)" ]
)
end_test
|