2021-03-30 21:10:45 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test_description="test performance of Git operations using the index"
|
|
|
|
|
|
|
|
. ./perf-lib.sh
|
|
|
|
|
|
|
|
test_perf_default_repo
|
|
|
|
|
2021-06-29 10:13:02 +08:00
|
|
|
SPARSE_CONE=f2/f4
|
2021-03-30 21:10:45 +08:00
|
|
|
|
|
|
|
test_expect_success 'setup repo and indexes' '
|
|
|
|
git reset --hard HEAD &&
|
|
|
|
|
|
|
|
# Remove submodules from the example repo, because our
|
|
|
|
# duplication of the entire repo creates an unlikely data shape.
|
|
|
|
if git config --file .gitmodules --get-regexp "submodule.*.path" >modules
|
|
|
|
then
|
|
|
|
git rm $(awk "{print \$2}" modules) &&
|
|
|
|
git commit -m "remove submodules" || return 1
|
|
|
|
fi &&
|
|
|
|
|
|
|
|
echo bogus >a &&
|
|
|
|
cp a b &&
|
|
|
|
git add a b &&
|
|
|
|
git commit -m "level 0" &&
|
|
|
|
BLOB=$(git rev-parse HEAD:a) &&
|
|
|
|
OLD_COMMIT=$(git rev-parse HEAD) &&
|
|
|
|
OLD_TREE=$(git rev-parse HEAD^{tree}) &&
|
|
|
|
|
2021-06-29 10:13:02 +08:00
|
|
|
for i in $(test_seq 1 3)
|
2021-03-30 21:10:45 +08:00
|
|
|
do
|
|
|
|
cat >in <<-EOF &&
|
|
|
|
100755 blob $BLOB a
|
|
|
|
040000 tree $OLD_TREE f1
|
|
|
|
040000 tree $OLD_TREE f2
|
|
|
|
040000 tree $OLD_TREE f3
|
|
|
|
040000 tree $OLD_TREE f4
|
|
|
|
EOF
|
|
|
|
NEW_TREE=$(git mktree <in) &&
|
|
|
|
NEW_COMMIT=$(git commit-tree $NEW_TREE -p $OLD_COMMIT -m "level $i") &&
|
|
|
|
OLD_TREE=$NEW_TREE &&
|
|
|
|
OLD_COMMIT=$NEW_COMMIT || return 1
|
|
|
|
done &&
|
|
|
|
|
|
|
|
git sparse-checkout init --cone &&
|
2021-06-29 10:13:02 +08:00
|
|
|
git sparse-checkout set $SPARSE_CONE &&
|
|
|
|
git checkout -b wide $OLD_COMMIT &&
|
|
|
|
|
|
|
|
for l2 in f1 f2 f3 f4
|
|
|
|
do
|
|
|
|
echo more bogus >>$SPARSE_CONE/$l2/a &&
|
|
|
|
git commit -a -m "edit $SPARSE_CONE/$l2/a" || return 1
|
|
|
|
done &&
|
|
|
|
|
2021-06-29 10:13:03 +08:00
|
|
|
git -c core.sparseCheckoutCone=true clone --branch=wide --sparse . full-v3 &&
|
2021-03-30 21:10:45 +08:00
|
|
|
(
|
2021-06-29 10:13:03 +08:00
|
|
|
cd full-v3 &&
|
2021-03-30 21:10:45 +08:00
|
|
|
git sparse-checkout init --cone &&
|
|
|
|
git sparse-checkout set $SPARSE_CONE &&
|
|
|
|
git config index.version 3 &&
|
2021-06-29 10:13:02 +08:00
|
|
|
git update-index --index-version=3 &&
|
|
|
|
git checkout HEAD~4
|
2021-03-30 21:10:45 +08:00
|
|
|
) &&
|
2021-06-29 10:13:03 +08:00
|
|
|
git -c core.sparseCheckoutCone=true clone --branch=wide --sparse . full-v4 &&
|
2021-03-30 21:10:45 +08:00
|
|
|
(
|
2021-06-29 10:13:03 +08:00
|
|
|
cd full-v4 &&
|
2021-03-30 21:10:45 +08:00
|
|
|
git sparse-checkout init --cone &&
|
|
|
|
git sparse-checkout set $SPARSE_CONE &&
|
|
|
|
git config index.version 4 &&
|
2021-06-29 10:13:02 +08:00
|
|
|
git update-index --index-version=4 &&
|
|
|
|
git checkout HEAD~4
|
2021-03-30 21:11:04 +08:00
|
|
|
) &&
|
2021-06-29 10:13:03 +08:00
|
|
|
git -c core.sparseCheckoutCone=true clone --branch=wide --sparse . sparse-v3 &&
|
2021-03-30 21:11:04 +08:00
|
|
|
(
|
2021-06-29 10:13:03 +08:00
|
|
|
cd sparse-v3 &&
|
2021-03-30 21:11:04 +08:00
|
|
|
git sparse-checkout init --cone --sparse-index &&
|
|
|
|
git sparse-checkout set $SPARSE_CONE &&
|
|
|
|
git config index.version 3 &&
|
2021-06-29 10:13:02 +08:00
|
|
|
git update-index --index-version=3 &&
|
|
|
|
git checkout HEAD~4
|
2021-03-30 21:11:04 +08:00
|
|
|
) &&
|
2021-06-29 10:13:03 +08:00
|
|
|
git -c core.sparseCheckoutCone=true clone --branch=wide --sparse . sparse-v4 &&
|
2021-03-30 21:11:04 +08:00
|
|
|
(
|
2021-06-29 10:13:03 +08:00
|
|
|
cd sparse-v4 &&
|
2021-03-30 21:11:04 +08:00
|
|
|
git sparse-checkout init --cone --sparse-index &&
|
|
|
|
git sparse-checkout set $SPARSE_CONE &&
|
|
|
|
git config index.version 4 &&
|
2021-06-29 10:13:02 +08:00
|
|
|
git update-index --index-version=4 &&
|
|
|
|
git checkout HEAD~4
|
2021-03-30 21:10:45 +08:00
|
|
|
)
|
|
|
|
'
|
|
|
|
|
|
|
|
test_perf_on_all () {
|
|
|
|
command="$@"
|
2021-06-29 10:13:03 +08:00
|
|
|
for repo in full-v3 full-v4 \
|
|
|
|
sparse-v3 sparse-v4
|
2021-03-30 21:10:45 +08:00
|
|
|
do
|
|
|
|
test_perf "$command ($repo)" "
|
|
|
|
(
|
|
|
|
cd $repo &&
|
|
|
|
echo >>$SPARSE_CONE/a &&
|
|
|
|
$command
|
|
|
|
)
|
|
|
|
"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
test_perf_on_all git status
|
2022-05-11 07:32:27 +08:00
|
|
|
test_perf_on_all 'git stash && git stash pop'
|
|
|
|
test_perf_on_all 'echo >>new && git stash -u && git stash pop'
|
2021-03-30 21:10:45 +08:00
|
|
|
test_perf_on_all git add -A
|
|
|
|
test_perf_on_all git add .
|
|
|
|
test_perf_on_all git commit -a -m A
|
2021-06-29 10:13:02 +08:00
|
|
|
test_perf_on_all git checkout -f -
|
2022-05-23 21:48:45 +08:00
|
|
|
test_perf_on_all "git sparse-checkout add f2/f3/f1 && git sparse-checkout set $SPARSE_CONE"
|
2021-11-29 23:52:39 +08:00
|
|
|
test_perf_on_all git reset
|
|
|
|
test_perf_on_all git reset --hard
|
|
|
|
test_perf_on_all git reset -- does-not-exist
|
2021-12-06 23:56:00 +08:00
|
|
|
test_perf_on_all git diff
|
|
|
|
test_perf_on_all git diff --cached
|
2021-12-06 23:56:01 +08:00
|
|
|
test_perf_on_all git blame $SPARSE_CONE/a
|
|
|
|
test_perf_on_all git blame $SPARSE_CONE/f3/a
|
2022-03-02 04:24:27 +08:00
|
|
|
test_perf_on_all git read-tree -mu HEAD
|
2022-01-12 02:05:01 +08:00
|
|
|
test_perf_on_all git checkout-index -f --all
|
update-index: add tests for sparse-checkout compatibility
Introduce tests for a variety of `git update-index` use cases, including
performance scenarios. Tests are intended to exercise `update-index` with
options that change the commands interaction with the index (e.g.,
`--again`) and with files/directories inside and outside a sparse checkout
cone.
Of note is that these tests clearly establish the behavior of `git
update-index --add` with untracked, outside-of-cone files. Unlike `git add`,
which fails with an error when provided with such files, `update-index`
succeeds in adding them to the index. Additionally, the `skip-worktree` flag
is *not* automatically added to the new entry. Although this is pre-existing
behavior, there are a couple of reasons to avoid changing it in favor of
consistency with e.g. `git add`:
* `update-index` is low-level command for modifying the index; while it can
perform operations similar to those of `add`, it traditionally has fewer
"guardrails" preventing a user from doing something they may not want to
do (in this case, adding an outside-of-cone, non-`skip-worktree` file to
the index)
* `update-index` typically only exits with an error code if it is incapable
of performing an operation (e.g., if an internal function call fails);
adding a new file outside the sparse checkout definition is still a valid
operation, albeit an inadvisable one
* `update-index` does not implicitly set flags (e.g., `skip-worktree`) when
creating new index entries with `--add`; if flags need to be updated,
options like `--[no-]skip-worktree` allow a user to intentionally set them
All this to say that, while there are valid reasons to consider changing the
treatment of outside-of-cone files in `update-index`, there are also
sufficient reasons for leaving it as-is.
Co-authored-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Victoria Dye <vdye@github.com>
Reviewed-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2022-01-12 02:05:04 +08:00
|
|
|
test_perf_on_all git update-index --add --remove $SPARSE_CONE/a
|
2021-03-30 21:10:45 +08:00
|
|
|
|
|
|
|
test_done
|