зеркало из https://github.com/microsoft/git.git
379 строки
11 KiB
Bash
Executable File
379 строки
11 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
test_description='test the `scalar` command'
|
|
|
|
. ./test-lib.sh
|
|
|
|
GIT_TEST_MAINT_SCHEDULER="crontab:test-tool crontab cron.txt,launchctl:true,schtasks:true"
|
|
export GIT_TEST_MAINT_SCHEDULER
|
|
|
|
# Do not write any files outside the trash directory
|
|
Scalar_UNATTENDED=1
|
|
export Scalar_UNATTENDED
|
|
|
|
GIT_ASKPASS=true
|
|
export GIT_ASKPASS
|
|
|
|
test_expect_success 'scalar shows a usage' '
|
|
test_expect_code 129 scalar -h
|
|
'
|
|
|
|
test_expect_success 'scalar invoked on enlistment root' '
|
|
test_when_finished rm -rf test src deeper &&
|
|
|
|
for enlistment_root in test src deeper/test
|
|
do
|
|
git init ${enlistment_root}/src &&
|
|
|
|
# Register
|
|
scalar register ${enlistment_root} &&
|
|
scalar list >out &&
|
|
grep "$(pwd)/${enlistment_root}/src\$" out &&
|
|
|
|
# Delete (including enlistment root)
|
|
scalar delete $enlistment_root &&
|
|
test_path_is_missing $enlistment_root &&
|
|
scalar list >out &&
|
|
! grep "^$(pwd)/${enlistment_root}/src\$" out || return 1
|
|
done
|
|
'
|
|
|
|
test_expect_success 'scalar invoked on enlistment src repo' '
|
|
test_when_finished rm -rf test src deeper &&
|
|
|
|
for enlistment_root in test src deeper/test
|
|
do
|
|
git init ${enlistment_root}/src &&
|
|
|
|
# Register
|
|
scalar register ${enlistment_root}/src &&
|
|
scalar list >out &&
|
|
grep "$(pwd)/${enlistment_root}/src\$" out &&
|
|
|
|
# Delete (will not include enlistment root)
|
|
scalar delete ${enlistment_root}/src &&
|
|
test_path_is_dir $enlistment_root &&
|
|
scalar list >out &&
|
|
! grep "^$(pwd)/${enlistment_root}/src\$" out || return 1
|
|
done
|
|
'
|
|
|
|
test_expect_success 'scalar invoked when enlistment root and repo are the same' '
|
|
test_when_finished rm -rf test src deeper &&
|
|
|
|
for enlistment_root in test src deeper/test
|
|
do
|
|
git init ${enlistment_root} &&
|
|
|
|
# Register
|
|
scalar register ${enlistment_root} &&
|
|
scalar list >out &&
|
|
grep "$(pwd)/${enlistment_root}\$" out &&
|
|
|
|
# Delete (will not include enlistment root)
|
|
scalar delete ${enlistment_root} &&
|
|
test_path_is_missing $enlistment_root &&
|
|
scalar list >out &&
|
|
! grep "^$(pwd)/${enlistment_root}\$" out &&
|
|
|
|
# Make sure we did not accidentally delete the trash dir
|
|
test_path_is_dir "$TRASH_DIRECTORY" || return 1
|
|
done
|
|
'
|
|
|
|
test_expect_success 'scalar repo search respects GIT_CEILING_DIRECTORIES' '
|
|
test_when_finished rm -rf test &&
|
|
|
|
git init test/src &&
|
|
mkdir -p test/src/deep &&
|
|
GIT_CEILING_DIRECTORIES="$(pwd)/test/src" &&
|
|
! scalar register test/src/deep 2>err &&
|
|
grep "not a git repository" err
|
|
'
|
|
|
|
test_expect_success 'scalar enlistments need a worktree' '
|
|
test_when_finished rm -rf bare test &&
|
|
|
|
git init --bare bare/src &&
|
|
! scalar register bare/src 2>err &&
|
|
grep "Scalar enlistments require a worktree" err &&
|
|
|
|
git init test/src &&
|
|
! scalar register test/src/.git 2>err &&
|
|
grep "Scalar enlistments require a worktree" err
|
|
'
|
|
|
|
test_expect_success FSMONITOR_DAEMON 'scalar register starts fsmon daemon' '
|
|
git init test/src &&
|
|
test_must_fail git -C test/src fsmonitor--daemon status &&
|
|
scalar register test/src &&
|
|
git -C test/src fsmonitor--daemon status &&
|
|
test_cmp_config -C test/src true core.fsmonitor
|
|
'
|
|
|
|
test_expect_success 'scalar unregister' '
|
|
git init vanish/src &&
|
|
scalar register vanish/src &&
|
|
git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/vanish/src" &&
|
|
scalar list >scalar.repos &&
|
|
grep -F "$(pwd)/vanish/src" scalar.repos &&
|
|
rm -rf vanish/src/.git &&
|
|
scalar unregister vanish &&
|
|
test_must_fail git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/vanish/src" &&
|
|
scalar list >scalar.repos &&
|
|
! grep -F "$(pwd)/vanish/src" scalar.repos
|
|
'
|
|
|
|
test_expect_success 'set up repository to clone' '
|
|
test_commit first &&
|
|
test_commit second &&
|
|
test_commit third &&
|
|
git switch -c parallel first &&
|
|
mkdir -p 1/2 &&
|
|
test_commit 1/2/3 &&
|
|
git config uploadPack.allowFilter true &&
|
|
git config uploadPack.allowAnySHA1InWant true
|
|
'
|
|
|
|
test_expect_success 'scalar clone' '
|
|
second=$(git rev-parse --verify second:second.t) &&
|
|
scalar clone "file://$(pwd)" cloned --single-branch &&
|
|
(
|
|
cd cloned/src &&
|
|
|
|
git config --get --global --fixed-value maintenance.repo \
|
|
"$(pwd)" &&
|
|
|
|
git for-each-ref --format="%(refname)" refs/remotes/origin/ >actual &&
|
|
echo "refs/remotes/origin/parallel" >expect &&
|
|
test_cmp expect actual &&
|
|
|
|
test_path_is_missing 1/2 &&
|
|
test_must_fail git rev-list --missing=print $second &&
|
|
git rev-list $second &&
|
|
git cat-file blob $second >actual &&
|
|
echo "second" >expect &&
|
|
test_cmp expect actual
|
|
)
|
|
'
|
|
|
|
test_expect_success 'scalar reconfigure' '
|
|
git init one/src &&
|
|
scalar register one &&
|
|
git -C one/src config core.preloadIndex false &&
|
|
scalar reconfigure one &&
|
|
test true = "$(git -C one/src config core.preloadIndex)" &&
|
|
git -C one/src config core.preloadIndex false &&
|
|
scalar reconfigure -a &&
|
|
test true = "$(git -C one/src config core.preloadIndex)"
|
|
'
|
|
|
|
test_expect_success 'scalar delete without enlistment shows a usage' '
|
|
test_expect_code 129 scalar delete
|
|
'
|
|
|
|
test_expect_success 'scalar delete with enlistment' '
|
|
scalar delete cloned &&
|
|
test_path_is_missing cloned
|
|
'
|
|
|
|
test_expect_success 'scalar supports -c/-C' '
|
|
test_when_finished "scalar delete sub" &&
|
|
git init sub &&
|
|
scalar -C sub -c status.aheadBehind=bogus register &&
|
|
test -z "$(git -C sub config --local status.aheadBehind)" &&
|
|
test true = "$(git -C sub config core.preloadIndex)"
|
|
'
|
|
|
|
test_expect_success '`scalar [...] <dir>` errors out when dir is missing' '
|
|
! scalar run config cloned 2>err &&
|
|
grep "cloned. does not exist" err
|
|
'
|
|
|
|
SQ="'"
|
|
test_expect_success UNZIP 'scalar diagnose' '
|
|
scalar clone "file://$(pwd)" cloned --single-branch &&
|
|
git repack &&
|
|
echo "$(pwd)/.git/objects/" >>cloned/src/.git/objects/info/alternates &&
|
|
test_commit -C cloned/src loose &&
|
|
scalar diagnose cloned >out 2>err &&
|
|
grep "Available space" out &&
|
|
sed -n "s/.*$SQ\\(.*\\.zip\\)$SQ.*/\\1/p" <err >zip_path &&
|
|
zip_path=$(cat zip_path) &&
|
|
test -n "$zip_path" &&
|
|
"$GIT_UNZIP" -v "$zip_path" &&
|
|
folder=${zip_path%.zip} &&
|
|
test_path_is_missing "$folder" &&
|
|
"$GIT_UNZIP" -p "$zip_path" diagnostics.log >out &&
|
|
test_file_not_empty out &&
|
|
"$GIT_UNZIP" -p "$zip_path" packs-local.txt >out &&
|
|
grep "$(pwd)/.git/objects" out &&
|
|
"$GIT_UNZIP" -p "$zip_path" objects-local.txt >out &&
|
|
grep "^Total: [1-9]" out
|
|
'
|
|
|
|
GIT_TEST_ALLOW_GVFS_VIA_HTTP=1
|
|
export GIT_TEST_ALLOW_GVFS_VIA_HTTP
|
|
|
|
test_set_port GIT_TEST_GVFS_PROTOCOL_PORT
|
|
HOST_PORT=127.0.0.1:$GIT_TEST_GVFS_PROTOCOL_PORT
|
|
PID_FILE="$(pwd)"/pid-file.pid
|
|
SERVER_LOG="$(pwd)"/OUT.server.log
|
|
|
|
test_atexit '
|
|
test -f "$PID_FILE" || return 0
|
|
|
|
# The server will shutdown automatically when we delete the pid-file.
|
|
rm -f "$PID_FILE"
|
|
|
|
test -z "$verbose$verbose_log" || {
|
|
echo "server log:"
|
|
cat "$SERVER_LOG"
|
|
}
|
|
|
|
# Give it a few seconds to shutdown (mainly to completely release the
|
|
# port before the next test start another instance and it attempts to
|
|
# bind to it).
|
|
for k in $(test_seq 5)
|
|
do
|
|
grep -q "Starting graceful shutdown" "$SERVER_LOG" &&
|
|
return 0 ||
|
|
sleep 1
|
|
done
|
|
|
|
echo "stop_gvfs_protocol_server: timeout waiting for server shutdown"
|
|
return 1
|
|
'
|
|
|
|
start_gvfs_enabled_http_server () {
|
|
GIT_HTTP_EXPORT_ALL=1 \
|
|
test-gvfs-protocol --verbose \
|
|
--listen=127.0.0.1 \
|
|
--port=$GIT_TEST_GVFS_PROTOCOL_PORT \
|
|
--reuseaddr \
|
|
--pid-file="$PID_FILE" \
|
|
2>"$SERVER_LOG" &
|
|
|
|
for k in 0 1 2 3 4
|
|
do
|
|
if test -f "$PID_FILE"
|
|
then
|
|
return 0
|
|
fi
|
|
sleep 1
|
|
done
|
|
return 1
|
|
}
|
|
|
|
test_expect_success 'start GVFS-enabled server' '
|
|
git config uploadPack.allowFilter false &&
|
|
git config uploadPack.allowAnySHA1InWant false &&
|
|
start_gvfs_enabled_http_server
|
|
'
|
|
|
|
test_expect_success '`scalar clone` with GVFS-enabled server' '
|
|
: the fake cache server requires fake authentication &&
|
|
git config --global core.askPass true &&
|
|
scalar clone --single-branch -- http://$HOST_PORT/ using-gvfs &&
|
|
|
|
: verify that the shared cache has been configured &&
|
|
cache_key="url_$(printf "%s" http://$HOST_PORT/ |
|
|
tr A-Z a-z |
|
|
test-tool sha1)" &&
|
|
echo "$(pwd)/.scalarCache/$cache_key" >expect &&
|
|
git -C using-gvfs/src config gvfs.sharedCache >actual &&
|
|
test_cmp expect actual &&
|
|
|
|
second=$(git rev-parse --verify second:second.t) &&
|
|
(
|
|
cd using-gvfs/src &&
|
|
test_path_is_missing 1/2 &&
|
|
GIT_TRACE=$PWD/trace.txt git cat-file blob $second >actual &&
|
|
: verify that the gvfs-helper was invoked to fetch it &&
|
|
test_i18ngrep gvfs-helper trace.txt &&
|
|
echo "second" >expect &&
|
|
test_cmp expect actual
|
|
)
|
|
'
|
|
|
|
test_expect_success '`scalar register` parallel to worktree is unsupported' '
|
|
git init test-repo/src &&
|
|
mkdir -p test-repo/out &&
|
|
|
|
: parallel to worktree is unsupported &&
|
|
test_must_fail env GIT_CEILING_DIRECTORIES="$(pwd)" \
|
|
scalar register test-repo/out &&
|
|
test_must_fail git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/test-repo/src" &&
|
|
scalar list >scalar.repos &&
|
|
! grep -F "$(pwd)/test-repo/src" scalar.repos &&
|
|
|
|
: at enlistment root, i.e. parent of repository, is supported &&
|
|
GIT_CEILING_DIRECTORIES="$(pwd)" scalar register test-repo &&
|
|
git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/test-repo/src" &&
|
|
scalar list >scalar.repos &&
|
|
grep -F "$(pwd)/test-repo/src" scalar.repos &&
|
|
|
|
: scalar delete properly unregisters enlistment &&
|
|
scalar delete test-repo &&
|
|
test_must_fail git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/test-repo/src" &&
|
|
scalar list >scalar.repos &&
|
|
! grep -F "$(pwd)/test-repo/src" scalar.repos
|
|
'
|
|
|
|
test_expect_success '`scalar register` & `unregister` with existing repo' '
|
|
git init existing &&
|
|
scalar register existing &&
|
|
git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/existing" &&
|
|
scalar list >scalar.repos &&
|
|
grep -F "$(pwd)/existing" scalar.repos &&
|
|
scalar unregister existing &&
|
|
test_must_fail git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/existing" &&
|
|
scalar list >scalar.repos &&
|
|
! grep -F "$(pwd)/existing" scalar.repos
|
|
'
|
|
|
|
test_expect_success '`scalar unregister` with existing repo, deleted .git' '
|
|
scalar register existing &&
|
|
rm -rf existing/.git &&
|
|
scalar unregister existing &&
|
|
test_must_fail git config --get --global --fixed-value \
|
|
maintenance.repo "$(pwd)/existing" &&
|
|
scalar list >scalar.repos &&
|
|
! grep -F "$(pwd)/existing" scalar.repos
|
|
'
|
|
|
|
test_expect_success '`scalar register` existing repo with `src` folder' '
|
|
git init existing &&
|
|
mkdir -p existing/src &&
|
|
scalar register existing/src &&
|
|
scalar list >scalar.repos &&
|
|
grep -F "$(pwd)/existing" scalar.repos &&
|
|
scalar unregister existing &&
|
|
scalar list >scalar.repos &&
|
|
! grep -F "$(pwd)/existing" scalar.repos
|
|
'
|
|
|
|
test_expect_success '`scalar delete` with existing repo' '
|
|
git init existing &&
|
|
scalar register existing &&
|
|
scalar delete existing &&
|
|
test_path_is_missing existing
|
|
'
|
|
|
|
test_expect_success '`scalar clone --no-src`' '
|
|
scalar clone --src "file://$(pwd)" with-src &&
|
|
scalar clone --no-src "file://$(pwd)" without-src &&
|
|
|
|
test_path_is_dir with-src/src &&
|
|
test_path_is_missing without-src/src
|
|
'
|
|
|
|
test_done
|