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
|
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
begin_test "batch upload causes retries"
(
set -e
reponame="upload-batch-retry-later"
setup_remote_repo "$reponame"
clone_repo "$reponame" batch-repo-upload
contents="content"
oid="$(calc_oid "$contents")"
printf "%s" "$contents" > a.dat
git lfs track "*.dat"
git add .gitattributes a.dat
git commit -m "initial commit"
GIT_TRACE=1 git push origin main 2>&1 | tee push.log
if [ "0" -ne "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected \`git push origin main\` to succeed ..."
exit 1
fi
[ 1 -eq $(grep -c "tq: enqueue retry" push.log) ]
assert_server_object "$reponame" "$oid"
)
end_test
begin_test "batch upload with multiple files causes retries"
(
set -e
reponame="upload-multiple-batch-retry-later"
setup_remote_repo "$reponame"
clone_repo "$reponame" batch-repo-upload-multiple
contents1="content 1"
oid1="$(calc_oid "$contents1")"
printf "%s" "$contents1" > a.dat
contents2="content 2"
oid2="$(calc_oid "$contents2")"
printf "%s" "$contents2" > b.dat
git lfs track "*.dat"
git add .gitattributes a.dat b.dat
git commit -m "initial commit"
GIT_TRACE=1 git push origin main 2>&1 | tee push.log
if [ "0" -ne "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected \`git push origin main\` to succeed ..."
exit 1
fi
[ 2 -eq $(grep -c "tq: enqueue retry" push.log) ]
[ 2 -eq $(grep -c "tq: enqueue retry #1" push.log) ]
assert_server_object "$reponame" "$oid1"
assert_server_object "$reponame" "$oid2"
)
end_test
begin_test "batch clone causes retries"
(
set -e
reponame="clone-batch-retry-later"
setup_remote_repo "$reponame"
clone_repo "$reponame" batch-repo-clone
contents="content"
oid="$(calc_oid "$contents")"
printf "%s" "$contents" > a.dat
git lfs track "*.dat"
git add .gitattributes a.dat
git commit -m "initial commit"
# Note that the server would apply the default rate limit delay only
# to this push operation, not the subsequent clone whose handling of
# 429 responses we want to test. To avoid this, we first set the
# available non-rate-limited requests for the repository to the maximum
# allowed, which allows the push to proceed without delay. Then we
# reset the available requests to zero afterwards so the clone will
# receive a 429 response.
set_server_rate_limit "batch" "" "$reponame" "" "max"
git push origin main
assert_server_object "$reponame" "$oid"
set_server_rate_limit "batch" "" "$reponame" "" 0
pushd ..
GIT_TRACE=1 git lfs clone "$GITSERVER/$reponame" "$reponame-assert" 2>&1 | tee clone.log
if [ "0" -ne "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected \`git lfs clone \"$GITSERVER/$reponame\" \"$reponame-assert\"\` to succeed ..."
exit 1
fi
[ 1 -eq $(grep -c "tq: enqueue retry" clone.log) ]
cd "$reponame-assert"
assert_local_object "$oid" "${#contents}"
popd
)
end_test
begin_test "batch clone with multiple files causes retries"
(
set -e
reponame="clone-multiple-batch-retry-later"
setup_remote_repo "$reponame"
clone_repo "$reponame" batch-repo-clone-multiple
contents1="content 1"
oid1="$(calc_oid "$contents1")"
printf "%s" "$contents1" > a.dat
contents2="content 2"
oid2="$(calc_oid "$contents2")"
printf "%s" "$contents2" > b.dat
git lfs track "*.dat"
git add .gitattributes a.dat b.dat
git commit -m "initial commit"
# Note that the server would apply the default rate limit delay only
# to this push operation, not the subsequent clone whose handling of
# 429 responses we want to test. To avoid this, we first set the
# available non-rate-limited requests for the repository to the maximum
# allowed, which allows the push to proceed without delay. Then we
# reset the available requests to zero afterwards so the clone will
# receive a 429 response.
set_server_rate_limit "batch" "" "$reponame" "" "max"
git push origin main
assert_server_object "$reponame" "$oid1"
assert_server_object "$reponame" "$oid2"
set_server_rate_limit "batch" "" "$reponame" "" 0
pushd ..
GIT_TRACE=1 git lfs clone "$GITSERVER/$reponame" "$reponame-assert" 2>&1 | tee clone.log
if [ "0" -ne "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected \`git lfs clone \"$GITSERVER/$reponame\" \"$reponame-assert\"\` to succeed ..."
exit 1
fi
[ 2 -eq $(grep -c "tq: enqueue retry" clone.log) ]
[ 2 -eq $(grep -c "tq: enqueue retry #1" clone.log) ]
cd "$reponame-assert"
assert_local_object "$oid1" "${#contents1}"
assert_local_object "$oid2" "${#contents2}"
popd
)
end_test
begin_test "batch upload causes retries (missing header)"
(
set -e
reponame="upload-batch-retry-later-no-header"
setup_remote_repo "$reponame"
clone_repo "$reponame" batch-repo-upload-no-header
contents="content"
oid="$(calc_oid "$contents")"
printf "%s" "$contents" > a.dat
git lfs track "*.dat"
git add .gitattributes a.dat
git commit -m "initial commit"
GIT_TRACE=1 git push origin main 2>&1 | tee push.log
if [ "0" -ne "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected \`git push origin main\` to succeed ..."
exit 1
fi
[ 1 -lt $(grep -c "tq: enqueue retry" push.log) ]
[ 1 -eq $(grep -c "tq: enqueue retry #1" push.log) ]
[ 1 -eq $(grep -c "tq: enqueue retry #2" push.log) ]
assert_server_object "$reponame" "$oid"
)
end_test
|