git-lfs/test/test-init.sh

98 lines
2.5 KiB
Bash
Raw Normal View History

2015-07-30 02:37:31 +00:00
#!/usr/bin/env bash
2015-06-28 12:48:59 +00:00
. "test/testlib.sh"
begin_test "init again"
(
set -e
[ "git-lfs smudge %f" = "$(git config filter.lfs.smudge)" ]
[ "git-lfs clean %f" = "$(git config filter.lfs.clean)" ]
git lfs init
[ "git-lfs smudge %f" = "$(git config filter.lfs.smudge)" ]
[ "git-lfs clean %f" = "$(git config filter.lfs.clean)" ]
)
end_test
begin_test "init with old settings"
(
set -e
git config --global filter.lfs.smudge "git lfs smudge %f"
git config --global filter.lfs.clean "git lfs clean %f"
2015-07-06 23:12:31 +00:00
set +e
2015-06-28 12:48:59 +00:00
git lfs init 2> init.log
2015-07-06 23:12:31 +00:00
res=$?
set -e
[ "$res" = 2 ]
2015-06-28 12:48:59 +00:00
2015-09-04 16:29:38 +00:00
cat init.log
grep -E "(clean|smudge) attribute should be" init.log
2015-07-07 14:43:59 +00:00
[ `grep -c "(MISSING)" init.log` = "0" ]
2015-06-28 12:48:59 +00:00
[ "git lfs smudge %f" = "$(git config filter.lfs.smudge)" ]
[ "git lfs clean %f" = "$(git config filter.lfs.clean)" ]
2015-07-06 23:12:31 +00:00
git lfs init --force
[ "git-lfs smudge %f" = "$(git config filter.lfs.smudge)" ]
[ "git-lfs clean %f" = "$(git config filter.lfs.clean)" ]
2015-06-28 12:48:59 +00:00
)
end_test
begin_test "init updates repo hooks"
(
set -e
mkdir init-repo-hooks
cd init-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 init)" ]
[ "$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 init)" ]
[ "$pre_push_hook" = "$(cat .git/hooks/pre-push)" ]
# don't replace unexpected hook
expected="Hook already exists: pre-push
test
Run \`git lfs update --force\` to overwrite this hook.
Git LFS initialized."
echo "test" > .git/hooks/pre-push
[ "test" = "$(cat .git/hooks/pre-push)" ]
[ "$expected" = "$(git lfs init 2>&1)" ]
[ "test" = "$(cat .git/hooks/pre-push)" ]
# force replace unexpected hook
[ "Updated pre-push hook.
Git LFS initialized." = "$(git lfs init --force)" ]
[ "$pre_push_hook" = "$(cat .git/hooks/pre-push)" ]
2015-09-17 22:35:04 +00:00
echo "test with bare repository"
cd ..
git clone --mirror init-repo-hooks bare-init-repo-hooks
cd bare-init-repo-hooks
2015-09-17 22:37:25 +00:00
git lfs env
2015-09-17 22:35:04 +00:00
git lfs init
2015-09-17 22:37:25 +00:00
ls -al hooks
2015-09-17 22:35:04 +00:00
[ "$pre_push_hook" = "$(cat hooks/pre-push)" ]
)
end_test