blob: e2dbb4eabae2aa141b3b1d5a1a5b0e4cdd9d0e65 [file] [log] [blame]
Ben Avison4c691012019-05-19 15:26:49 +01001#!/bin/sh
2
3test_description='Test cloning repos with submodules using remote-tracking branches'
4
Johannes Schindelin95cf2c02020-11-18 23:44:35 +00005GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
Johannes Schindelin334afbc2020-11-18 23:44:19 +00006export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
7
Ben Avison4c691012019-05-19 15:26:49 +01008. ./test-lib.sh
9
10pwd=$(pwd)
11
12test_expect_success 'setup' '
Johannes Schindelin95cf2c02020-11-18 23:44:35 +000013 git checkout -b main &&
Ben Avison4c691012019-05-19 15:26:49 +010014 test_commit commit1 &&
15 mkdir sub &&
16 (
17 cd sub &&
18 git init &&
19 test_commit subcommit1 &&
Emily Shaffer132f6002020-02-20 19:10:27 -080020 git tag sub_when_added_to_super &&
21 git branch other
Ben Avison4c691012019-05-19 15:26:49 +010022 ) &&
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 &&
Johannes Schindelin95cf2c02020-11-18 23:44:35 +000045 git diff --exit-code remotes/origin/main
Ben Avison4c691012019-05-19 15:26:49 +010046 )
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
Emily Shaffer132f6002020-02-20 19:10:27 -080058test_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 &&
Johannes Schindelin95cf2c02020-11-18 23:44:35 +000063 git rev-parse --verify origin/main &&
Emily Shaffer132f6002020-02-20 19:10:27 -080064 test_must_fail git rev-parse --verify origin/other
65 )
66'
67
Ben Avison4c691012019-05-19 15:26:49 +010068test_done