Skip to content

Commit e942292

Browse files
avargitster
authored andcommitted
tests: don't depend on template-created .git/branches
As noted in c8a58ac (Revert "Don't create the $GIT_DIR/branches directory on init", 2009-10-31) there was an attempt long ago in 0cc5691 (Don't create the $GIT_DIR/branches directory on init, 2009-10-30) to get rid of the legacy "branches" directory. We should probably get rid of its creation by removing the "templates/branches--" file. But whatever our default behavior, our tests should be tightened up to explicitly create the .git/branches directory if they rely on our default templates, to make the dependency on those templates clear. So let's amend the two tests that would fail if .git/branches wasn't created. To do this introduce a new "TEST_CREATE_REPO_NO_TEMPLATE" variable, which we'll set before sourcing test-lib.sh, and change the "git clone" and "git init" commands in the tests themselves to explicitly pass "--template=". This way they won't get a .git/branches in either their top-level .git, or in the ones they create. We can then amend the tests that rely on the ".git/branches" directory existing to create it explicitly, and to remove it after its creation. This new "TEST_CREATE_REPO_NO_TEMPLATE" variable is a less heavy-handed version of the "NO_SET_GIT_TEMPLATE_DIR" variable. See a94d305 (t/t0001-init.sh: add test for 'init with init.templatedir set', 2010-02-26) for its implementation. Unlike "TEST_CREATE_REPO_NO_TEMPLATE", this new "TEST_CREATE_REPO_NO_TEMPLATE" variable is narrowly scoped to what the "git init" in test-lib.sh does, as opposed to the global effect of "NO_SET_GIT_TEMPLATE_DIR" and the setting of "GIT_TEMPLATE_DIR" in wrap-for-bin.sh. I experimented with adding a new "GIT_WRAP_FOR_BIN_VIA_TEST_LIB" variable set in test-lib.sh, which would cause wrap-for-bin.sh to not set GIT_TEMPLATE_DIR, GITPERLLIB etc, as we set those in test-lib.sh. I think that's a viable approach, but it would interact e.g. with the appending feature of GITPERLLIB added in 8bade1e (wrap-for-bin: make bin-wrappers chainable, 2013-07-04). Doing so would allow us to convert the tests in t0001-init.sh that now use "NO_SET_GIT_TEMPLATE_DIR" to simply unset "GIT_TEMPLATE_DIR" in a sub-shell before invoking "git init" or "git clone". I think that approach is worth pursuing, but let's table it for now. Some future wrap-for-bin.sh refactoring can try to address it. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent dbbb8c5 commit e942292

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

t/t5505-remote.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -923,11 +923,12 @@ test_expect_success 'migrate a remote from named file in $GIT_DIR/remotes' '
923923
'
924924

925925
test_expect_success 'migrate a remote from named file in $GIT_DIR/branches' '
926-
git clone one six &&
926+
git clone --template= one six &&
927927
origin_url=$(pwd)/one &&
928928
(
929929
cd six &&
930930
git remote rm origin &&
931+
mkdir .git/branches &&
931932
echo "$origin_url#main" >.git/branches/origin &&
932933
git remote rename origin origin &&
933934
test_path_is_missing .git/branches/origin &&
@@ -938,10 +939,11 @@ test_expect_success 'migrate a remote from named file in $GIT_DIR/branches' '
938939
'
939940

940941
test_expect_success 'migrate a remote from named file in $GIT_DIR/branches (2)' '
941-
git clone one seven &&
942+
git clone --template= one seven &&
942943
(
943944
cd seven &&
944945
git remote rm origin &&
946+
mkdir .git/branches &&
945947
echo "quux#foom" > .git/branches/origin &&
946948
git remote rename origin origin &&
947949
test_path_is_missing .git/branches/origin &&

t/t5516-fetch-push.sh

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ This test checks the following functionality:
1717
GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
1818
export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
1919

20+
TEST_CREATE_REPO_NO_TEMPLATE=1
2021
. ./test-lib.sh
2122

2223
D=$(pwd)
@@ -25,7 +26,8 @@ mk_empty () {
2526
repo_name="$1"
2627
test_when_finished "rm -rf \"$repo_name\"" &&
2728
test_path_is_missing "$repo_name" &&
28-
git init "$repo_name" &&
29+
git init --template= "$repo_name" &&
30+
mkdir "$repo_name"/.git/hooks &&
2931
git -C "$repo_name" config receive.denyCurrentBranch warn
3032
}
3133

@@ -77,7 +79,7 @@ mk_test_with_hooks() {
7779

7880
mk_child() {
7981
test_when_finished "rm -rf \"$2\"" &&
80-
git clone "$1" "$2"
82+
git clone --template= "$1" "$2"
8183
}
8284

8385
check_push_result () {
@@ -916,6 +918,7 @@ test_expect_success 'fetch with branches' '
916918
mk_empty testrepo &&
917919
git branch second $the_first_commit &&
918920
git checkout second &&
921+
mkdir testrepo/.git/branches &&
919922
echo ".." > testrepo/.git/branches/branch1 &&
920923
(
921924
cd testrepo &&
@@ -929,6 +932,7 @@ test_expect_success 'fetch with branches' '
929932

930933
test_expect_success 'fetch with branches containing #' '
931934
mk_empty testrepo &&
935+
mkdir testrepo/.git/branches &&
932936
echo "..#second" > testrepo/.git/branches/branch2 &&
933937
(
934938
cd testrepo &&
@@ -943,7 +947,11 @@ test_expect_success 'fetch with branches containing #' '
943947
test_expect_success 'push with branches' '
944948
mk_empty testrepo &&
945949
git checkout second &&
950+
951+
test_when_finished "rm -rf .git/branches" &&
952+
mkdir .git/branches &&
946953
echo "testrepo" > .git/branches/branch1 &&
954+
947955
git push branch1 &&
948956
(
949957
cd testrepo &&
@@ -955,7 +963,11 @@ test_expect_success 'push with branches' '
955963

956964
test_expect_success 'push with branches containing #' '
957965
mk_empty testrepo &&
966+
967+
test_when_finished "rm -rf .git/branches" &&
968+
mkdir .git/branches &&
958969
echo "testrepo#branch3" > .git/branches/branch2 &&
970+
959971
git push branch2 &&
960972
(
961973
cd testrepo &&

t/test-lib.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1528,7 +1528,9 @@ remove_trash_directory "$TRASH_DIRECTORY" || {
15281528
remove_trash=t
15291529
if test -z "$TEST_NO_CREATE_REPO"
15301530
then
1531-
git init "$TRASH_DIRECTORY" >&3 2>&4 ||
1531+
git init \
1532+
${TEST_CREATE_REPO_NO_TEMPLATE:+--template=} \
1533+
"$TRASH_DIRECTORY" >&3 2>&4 ||
15321534
error "cannot run git init"
15331535
else
15341536
mkdir -p "$TRASH_DIRECTORY"

0 commit comments

Comments
 (0)