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
|
#!/usr/bin/env bash
. "$(dirname "$0")/testlib.sh"
begin_test "content-type: is enabled by default"
(
set -e
reponame="content-type-enabled-default"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.tar.gz"
printf "aaaaaaaaaa" > a.txt
tar -czf a.tar.gz a.txt
rm a.txt
git add .gitattributes a.tar.gz
git commit -m "initial commit"
GIT_CURL_VERBOSE=1 git push origin main 2>&1 | tee push.log
[ 1 -eq "$(grep -c "Content-Type: application/x-gzip" push.log)" ]
[ 0 -eq "$(grep -c "Content-Type: application/octet-stream" push.log)" ]
)
end_test
begin_test "content-type: is disabled by configuration"
(
set -e
reponame="content-type-disabled-by-configuration"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.tar.gz"
printf "aaaaaaaaaa" > a.txt
tar -czf a.tar.gz a.txt
rm a.txt
git add .gitattributes a.tar.gz
git commit -m "initial commit"
git config "lfs.$GITSERVER.contenttype" 0
GIT_CURL_VERBOSE=1 git push origin main 2>&1 | tee push.log
[ 0 -eq "$(grep -c "Content-Type: application/x-gzip" push.log)" ]
[ 1 -eq "$(grep -c "Content-Type: application/octet-stream" push.log)" ]
)
end_test
begin_test "content-type: warning message"
(
set -e
reponame="content-type-warning-message"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
git lfs track "*.txt"
printf "status-storage-422" > a.txt
git add .gitattributes a.txt
git commit -m "initial commit"
git push origin main 2>&1 | tee push.log
grep "info: Uploading failed due to unsupported Content-Type header(s)." push.log
grep "info: Consider disabling Content-Type detection with:" push.log
grep "info: $ git config lfs.contenttype false" push.log
)
end_test
|