]> git.ipfire.org Git - thirdparty/git.git/blame - t/t5617-clone-submodules-remote.sh
tests: mark tests relying on the current default for `init.defaultBranch`
[thirdparty/git.git] / t / t5617-clone-submodules-remote.sh
CommitLineData
4c691016
BA
1#!/bin/sh
2
3test_description='Test cloning repos with submodules using remote-tracking branches'
4
334afbc7
JS
5GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=master
6export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
4c691016
BA
8. ./test-lib.sh
9
10pwd=$(pwd)
11
12test_expect_success 'setup' '
13 git checkout -b master &&
14 test_commit commit1 &&
15 mkdir sub &&
16 (
17 cd sub &&
18 git init &&
19 test_commit subcommit1 &&
132f600b
ES
20 git tag sub_when_added_to_super &&
21 git branch other
4c691016
BA
22 ) &&
23 git submodule add "file://$pwd/sub" sub &&
24 git commit -m "add submodule" &&
25 (
26 cd sub &&
27 test_commit subcommit2
28 )
29'
30
31test_expect_success 'clone with --no-remote-submodules' '
32 test_when_finished "rm -rf super_clone" &&
33 git clone --recurse-submodules --no-remote-submodules "file://$pwd/." super_clone &&
34 (
35 cd super_clone/sub &&
36 git diff --exit-code sub_when_added_to_super
37 )
38'
39
40test_expect_success 'clone with --remote-submodules' '
41 test_when_finished "rm -rf super_clone" &&
42 git clone --recurse-submodules --remote-submodules "file://$pwd/." super_clone &&
43 (
44 cd super_clone/sub &&
45 git diff --exit-code remotes/origin/master
46 )
47'
48
49test_expect_success 'check the default is --no-remote-submodules' '
50 test_when_finished "rm -rf super_clone" &&
51 git clone --recurse-submodules "file://$pwd/." super_clone &&
52 (
53 cd super_clone/sub &&
54 git diff --exit-code sub_when_added_to_super
55 )
56'
57
132f600b
ES
58test_expect_success 'clone with --single-branch' '
59 test_when_finished "rm -rf super_clone" &&
60 git clone --recurse-submodules --single-branch "file://$pwd/." super_clone &&
61 (
62 cd super_clone/sub &&
63 git rev-parse --verify origin/master &&
64 test_must_fail git rev-parse --verify origin/other
65 )
66'
67
4c691016 68test_done