git-lfs/test/test-expired.sh

38 lines
791 B
Bash
Executable File

#!/usr/bin/env bash
. "test/testlib.sh"
declare -a expiration_types=("absolute" "relative" "both")
for typ in "${expiration_types[@]}"; do
begin_test "expired action ($typ time)"
(
set -e
reponame="expired-$typ"
setup_remote_repo "$reponame"
clone_repo "$reponame" "$reponame"
contents="contents"
contents_oid="$(calc_oid "$contents")"
git lfs track "*.dat"
git add .gitattributes
git commit -m "initial commit"
printf "$contents" > a.dat
git add a.dat
git commit -m "add a.dat"
GIT_TRACE=1 git push origin master 2>&1 | tee push.log
if [ "0" -eq "${PIPESTATUS[0]}" ]; then
echo >&2 "fatal: expected push to fail, didn't"
exit 1
fi
refute_server_object "$reponame" "$contents_oid"
)
end_test
done