]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5617-clone-submodules-remote.sh
Sync with 2.35.5
[thirdparty/git.git] / t / t5617-clone-submodules-remote.sh
index e2dbb4eabae2aa141b3b1d5a1a5b0e4cdd9d0e65..688433824934d89354669d920acd1fb06a5da725 100755 (executable)
@@ -10,6 +10,7 @@ export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
 pwd=$(pwd)
 
 test_expect_success 'setup' '
+       git config --global protocol.file.allow always &&
        git checkout -b main &&
        test_commit commit1 &&
        mkdir sub &&
@@ -28,6 +29,13 @@ test_expect_success 'setup' '
        )
 '
 
+# bare clone giving "srv.bare" for use as our server.
+test_expect_success 'setup bare clone for server' '
+       git clone --bare "file://$(pwd)/." srv.bare &&
+       git -C srv.bare config --local uploadpack.allowfilter 1 &&
+       git -C srv.bare config --local uploadpack.allowanysha1inwant 1
+'
+
 test_expect_success 'clone with --no-remote-submodules' '
        test_when_finished "rm -rf super_clone" &&
        git clone --recurse-submodules --no-remote-submodules "file://$pwd/." super_clone &&
@@ -65,4 +73,38 @@ test_expect_success 'clone with --single-branch' '
        )
 '
 
+# do basic partial clone from "srv.bare"
+# confirm partial clone was registered in the local config for super and sub.
+test_expect_success 'clone with --filter' '
+       git clone --recurse-submodules \
+               --filter blob:none --also-filter-submodules \
+               "file://$pwd/srv.bare" super_clone &&
+       test_cmp_config -C super_clone true remote.origin.promisor &&
+       test_cmp_config -C super_clone blob:none remote.origin.partialclonefilter &&
+       test_cmp_config -C super_clone/sub true remote.origin.promisor &&
+       test_cmp_config -C super_clone/sub blob:none remote.origin.partialclonefilter
+'
+
+# check that clone.filterSubmodules works (--also-filter-submodules can be
+# omitted)
+test_expect_success 'filters applied with clone.filterSubmodules' '
+       test_config_global clone.filterSubmodules true &&
+       git clone --recurse-submodules --filter blob:none \
+               "file://$pwd/srv.bare" super_clone2 &&
+       test_cmp_config -C super_clone2 true remote.origin.promisor &&
+       test_cmp_config -C super_clone2 blob:none remote.origin.partialclonefilter &&
+       test_cmp_config -C super_clone2/sub true remote.origin.promisor &&
+       test_cmp_config -C super_clone2/sub blob:none remote.origin.partialclonefilter
+'
+
+test_expect_success '--no-also-filter-submodules overrides clone.filterSubmodules=true' '
+       test_config_global clone.filterSubmodules true &&
+       git clone --recurse-submodules --filter blob:none \
+               --no-also-filter-submodules \
+               "file://$pwd/srv.bare" super_clone3 &&
+       test_cmp_config -C super_clone3 true remote.origin.promisor &&
+       test_cmp_config -C super_clone3 blob:none remote.origin.partialclonefilter &&
+       test_cmp_config -C super_clone3/sub false --default false remote.origin.promisor
+'
+
 test_done