git-lfs/test/test-install.sh
Lars Schneider d874af9ac1 wip
2016-11-02 16:51:14 -06:00

209 lines
5.2 KiB
Bash
Executable File

#!/usr/bin/env bash
. "test/testlib.sh"
begin_test "install again"
(
set -e
# TODO: add process filter here
smudge="$(git config filter.lfs.smudge)"
clean="$(git config filter.lfs.clean)"
printf "$smudge" | grep "git-lfs smudge"
printf "$clean" | grep "git-lfs clean"
git lfs install
[ "$smudge" = "$(git config filter.lfs.smudge)" ]
[ "$clean" = "$(git config filter.lfs.clean)" ]
)
end_test
begin_test "install with old (non-upgradeable) settings"
(
set -e
git config --global filter.lfs.smudge "git-lfs smudge --something %f"
git config --global filter.lfs.clean "git-lfs clean --something %f"
set +e
git lfs install 2> install.log
res=$?
set -e
[ "$res" = 2 ]
cat install.log
grep -E "(clean|smudge) attribute should be" install.log
[ `grep -c "(MISSING)" install.log` = "0" ]
[ "git-lfs smudge --something %f" = "$(git config --global filter.lfs.smudge)" ]
[ "git-lfs clean --something %f" = "$(git config --global filter.lfs.clean)" ]
git lfs install --force
[ "git-lfs smudge -- %f" = "$(git config --global filter.lfs.smudge)" ]
[ "git-lfs clean -- %f" = "$(git config --global filter.lfs.clean)" ]
)
end_test
begin_test "install with upgradeable settings"
(
set -e
git config --global filter.lfs.smudge "git-lfs smudge %f"
git config --global filter.lfs.clean "git-lfs clean %f"
# should not need force, should upgrade this old style
git lfs install
[ "git-lfs smudge -- %f" = "$(git config --global filter.lfs.smudge)" ]
[ "git-lfs clean -- %f" = "$(git config --global filter.lfs.clean)" ]
)
end_test
begin_test "install updates repo hooks"
(
set -e
mkdir install-repo-hooks
cd install-repo-hooks
git init
pre_push_hook="#!/bin/sh
command -v git-lfs >/dev/null 2>&1 || { echo >&2 \"\\nThis repository is configured for Git LFS but 'git-lfs' was not found on your path. If you no longer wish to use Git LFS, remove this hook by deleting .git/hooks/pre-push.\\n\"; exit 2; }
git lfs pre-push \"\$@\""
[ "Updated pre-push hook.
Git LFS initialized." = "$(git lfs install)" ]
[ "$pre_push_hook" = "$(cat .git/hooks/pre-push)" ]
# replace old hook
# more-comprehensive hook update tests are in test-update.sh
echo "#!/bin/sh
git lfs push --stdin \$*" > .git/hooks/pre-push
[ "Updated pre-push hook.
Git LFS initialized." = "$(git lfs install)" ]
[ "$pre_push_hook" = "$(cat .git/hooks/pre-push)" ]
# don't replace unexpected hook
expected="Hook already exists: pre-push
test
To resolve this, either:
1: run \`git lfs update --manual\` for instructions on how to merge hooks.
2: run \`git lfs update --force\` to overwrite your hook."
echo "test" > .git/hooks/pre-push
[ "test" = "$(cat .git/hooks/pre-push)" ]
[ "$expected" = "$(git lfs install 2>&1)" ]
[ "test" = "$(cat .git/hooks/pre-push)" ]
# Make sure returns non-zero
set +e
git lfs install
if [ $? -eq 0 ]
then
exit 1
fi
set -e
# force replace unexpected hook
[ "Updated pre-push hook.
Git LFS initialized." = "$(git lfs install --force)" ]
[ "$pre_push_hook" = "$(cat .git/hooks/pre-push)" ]
has_test_dir || exit 0
echo "test with bare repository"
cd ..
git clone --mirror install-repo-hooks bare-install-repo-hooks
cd bare-install-repo-hooks
git lfs env
git lfs install
ls -al hooks
[ "$pre_push_hook" = "$(cat hooks/pre-push)" ]
)
end_test
begin_test "install outside repository directory"
(
set -e
if [ -d "hooks" ]; then
ls -al
echo "hooks dir exists"
exit 1
fi
git lfs install 2>&1 > check.log
if [ -d "hooks" ]; then
ls -al
echo "hooks dir exists"
exit 1
fi
cat check.log
# doesn't print this because being in a git repo is not necessary for install
[ "$(grep -c "Not in a git repository" check.log)" = "0" ]
)
end_test
begin_test "install --skip-smudge"
(
set -e
git lfs install
[ "git-lfs clean -- %f" = "$(git config --global filter.lfs.clean)" ]
[ "git-lfs smudge -- %f" = "$(git config --global filter.lfs.smudge)" ]
git lfs install --skip-smudge
[ "git-lfs clean -- %f" = "$(git config --global filter.lfs.clean)" ]
[ "git-lfs smudge --skip -- %f" = "$(git config --global filter.lfs.smudge)" ]
git lfs install --force
[ "git-lfs clean -- %f" = "$(git config --global filter.lfs.clean)" ]
[ "git-lfs smudge -- %f" = "$(git config --global filter.lfs.smudge)" ]
)
end_test
begin_test "install --local"
(
set -e
# old values that should be ignored by `install --local`
git config --global filter.lfs.smudge "git lfs smudge %f"
git config --global filter.lfs.clean "git lfs clean %f"
mkdir install-local-repo
cd install-local-repo
git init
git lfs install --local
[ "git-lfs clean -- %f" = "$(git config filter.lfs.clean)" ]
[ "git-lfs clean -- %f" = "$(git config --local filter.lfs.clean)" ]
[ "git lfs clean %f" = "$(git config --global filter.lfs.clean)" ]
)
end_test
begin_test "install --local outside repository"
(
# If run inside the git-lfs source dir this will update its .git/config & cause issues
if [ "$GIT_LFS_TEST_DIR" == "" ]; then
echo "Skipping install --local because GIT_LFS_TEST_DIR is not set"
exit 0
fi
set +e
has_test_dir || exit 0
git lfs install --local 2> err.log
res=$?
[ "Not in a git repository." = "$(cat err.log)" ]
[ "0" != "$res" ]
)
end_test