git-lfs/test/test-worktree.sh

89 lines
2.8 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
. "test/testlib.sh"
ensure_git_version_isnt $VERSION_LOWER "2.5.0"
envInitConfig='git config filter.lfs.process = "git-lfs filter-process"
2016-10-24 06:13:49 +00:00
git config filter.lfs.smudge = "git-lfs smudge -- %f"
git config filter.lfs.clean = "git-lfs clean -- %f"'
begin_test "git worktree"
(
set -e
reponame="worktree-main"
mkdir $reponame
cd $reponame
git init
# can't create a worktree until there's 1 commit at least
echo "a" > tmp.txt
git add tmp.txt
git commit -m "Initial commit"
expected=$(printf "%s\n%s\n
2015-10-22 14:56:34 +00:00
LocalWorkingDir=$(native_path_escaped "$TRASHDIR/$reponame")
LocalGitDir=$(native_path_escaped "$TRASHDIR/$reponame/.git")
LocalGitStorageDir=$(native_path_escaped "$TRASHDIR/$reponame/.git")
LocalMediaDir=$(native_path_escaped "$TRASHDIR/$reponame/.git/lfs/objects")
2016-01-31 21:06:40 +00:00
LocalReferenceDir=
2015-10-22 14:56:34 +00:00
TempDir=$(native_path_escaped "$TRASHDIR/$reponame/.git/lfs/tmp")
ConcurrentTransfers=3
2016-07-26 15:08:21 +00:00
TusTransfers=false
BasicTransfersOnly=false
SkipDownloadErrors=false
FetchRecentAlways=false
FetchRecentRefsDays=7
FetchRecentCommitsDays=0
FetchRecentRefsIncludeRemotes=true
PruneOffsetDays=3
PruneVerifyRemoteAlways=false
PruneRemoteName=origin
LfsStorageDir=$(native_path_escaped "$TRASHDIR/$reponame/.git/lfs")
AccessDownload=none
AccessUpload=none
2016-07-27 13:29:00 +00:00
DownloadTransfers=basic
UploadTransfers=basic
$(escape_path "$(env | grep "^GIT")")
2015-09-30 22:27:58 +00:00
%s
" "$(git lfs version)" "$(git version)" "$envInitConfig")
actual=$(git lfs env)
2015-10-22 14:56:34 +00:00
contains_same_elements "$expected" "$actual"
worktreename="worktree-2"
git worktree add "$TRASHDIR/$worktreename"
cd "$TRASHDIR/$worktreename"
# git dir in worktree is like submodules (except path is worktrees) but this
# is only for index, temp etc
# storage of git objects and lfs objects is in the original .git
expected=$(printf "%s\n%s\n
2015-10-22 14:56:34 +00:00
LocalWorkingDir=$(native_path_escaped "$TRASHDIR/$worktreename")
LocalGitDir=$(native_path_escaped "$TRASHDIR/$reponame/.git/worktrees/$worktreename")
LocalGitStorageDir=$(native_path_escaped "$TRASHDIR/$reponame/.git")
LocalMediaDir=$(native_path_escaped "$TRASHDIR/$reponame/.git/lfs/objects")
2016-01-31 21:06:40 +00:00
LocalReferenceDir=
2015-10-22 14:56:34 +00:00
TempDir=$(native_path_escaped "$TRASHDIR/$reponame/.git/worktrees/$worktreename/lfs/tmp")
ConcurrentTransfers=3
2016-07-26 15:08:21 +00:00
TusTransfers=false
BasicTransfersOnly=false
SkipDownloadErrors=false
FetchRecentAlways=false
FetchRecentRefsDays=7
FetchRecentCommitsDays=0
FetchRecentRefsIncludeRemotes=true
PruneOffsetDays=3
PruneVerifyRemoteAlways=false
PruneRemoteName=origin
LfsStorageDir=$(native_path_escaped "$TRASHDIR/$reponame/.git/lfs")
AccessDownload=none
AccessUpload=none
2016-07-27 13:29:00 +00:00
DownloadTransfers=basic
UploadTransfers=basic
$(escape_path "$(env | grep "^GIT")")
2015-09-30 22:27:58 +00:00
%s
" "$(git lfs version)" "$(git version)" "$envInitConfig")
actual=$(git lfs env)
2015-10-22 14:56:34 +00:00
contains_same_elements "$expected" "$actual"
)
end_test