3 test_description='pull can handle submodules'
 
   6 . "$TEST_DIRECTORY"/lib-submodule-update.sh
 
   8 reset_branch_to_HEAD () {
 
  10         git checkout -b "$1" HEAD &&
 
  11         git branch --set-upstream-to="origin/$1" "$1"
 
  15         reset_branch_to_HEAD "$1" &&
 
  19 # pulls without conflicts
 
  20 test_submodule_switch "git_pull"
 
  23         reset_branch_to_HEAD "$1" &&
 
  27 test_submodule_switch "git_pull_ff"
 
  30         reset_branch_to_HEAD "$1" &&
 
  34 test_submodule_switch "git_pull_ff_only"
 
  37         reset_branch_to_HEAD "$1" &&
 
  41 KNOWN_FAILURE_NOFF_MERGE_DOESNT_CREATE_EMPTY_SUBMODULE_DIR=1
 
  42 KNOWN_FAILURE_NOFF_MERGE_ATTEMPTS_TO_MERGE_REMOVED_SUBMODULE_FILES=1
 
  43 test_submodule_switch "git_pull_noff"
 
  45 test_expect_success 'pull --recurse-submodule setup' '
 
  46         test_create_repo child &&
 
  47         test_commit -C child bar &&
 
  49         test_create_repo parent &&
 
  50         test_commit -C child foo &&
 
  52         git -C parent submodule add ../child sub &&
 
  53         git -C parent commit -m "add submodule" &&
 
  55         git clone --recurse-submodules parent super
 
  58 test_expect_success 'recursive pull updates working tree' '
 
  59         test_commit -C child merge_strategy &&
 
  60         git -C parent submodule update --remote &&
 
  61         git -C parent add sub &&
 
  62         git -C parent commit -m "update submodule" &&
 
  64         git -C super pull --no-rebase --recurse-submodules &&
 
  65         test_path_is_file super/sub/merge_strategy.t
 
  68 test_expect_success "submodule.recurse option triggers recursive pull" '
 
  69         test_commit -C child merge_strategy_2 &&
 
  70         git -C parent submodule update --remote &&
 
  71         git -C parent add sub &&
 
  72         git -C parent commit -m "update submodule" &&
 
  74         git -C super -c submodule.recurse pull --no-rebase &&
 
  75         test_path_is_file super/sub/merge_strategy_2.t
 
  78 test_expect_success " --[no-]recurse-submodule and submodule.recurse" '
 
  79         test_commit -C child merge_strategy_3 &&
 
  80         git -C parent submodule update --remote &&
 
  81         git -C parent add sub &&
 
  82         git -C parent commit -m "update submodule" &&
 
  84         git -C super -c submodule.recurse pull --no-recurse-submodules --no-rebase &&
 
  85         test_path_is_missing super/sub/merge_strategy_3.t &&
 
  86         git -C super -c submodule.recurse=false pull --recurse-submodules --no-rebase &&
 
  87         test_path_is_file super/sub/merge_strategy_3.t &&
 
  89         test_commit -C child merge_strategy_4 &&
 
  90         git -C parent submodule update --remote &&
 
  91         git -C parent add sub &&
 
  92         git -C parent commit -m "update submodule" &&
 
  94         git -C super -c submodule.recurse=false pull --no-recurse-submodules --no-rebase &&
 
  95         test_path_is_missing super/sub/merge_strategy_4.t &&
 
  96         git -C super -c submodule.recurse=true pull --recurse-submodules --no-rebase &&
 
  97         test_path_is_file super/sub/merge_strategy_4.t
 
 100 test_expect_success 'recursive rebasing pull' '
 
 102         test_commit -C child rebase_strategy &&
 
 103         git -C parent submodule update --remote &&
 
 104         git -C parent add sub &&
 
 105         git -C parent commit -m "update submodule" &&
 
 107         # also have local commits
 
 108         test_commit -C super/sub local_stuff &&
 
 110         git -C super pull --rebase --recurse-submodules &&
 
 111         test_path_is_file super/sub/rebase_strategy.t &&
 
 112         test_path_is_file super/sub/local_stuff.t
 
 115 test_expect_success 'pull rebase recursing fails with conflicts' '
 
 117         # local changes in submodule recorded in superproject:
 
 118         test_commit -C super/sub local_stuff_2 &&
 
 119         git -C super add sub &&
 
 120         git -C super commit -m "local update submodule" &&
 
 122         # and in the remote as well:
 
 123         test_commit -C child important_upstream_work &&
 
 124         git -C parent submodule update --remote &&
 
 125         git -C parent add sub &&
 
 126         git -C parent commit -m "remote update submodule" &&
 
 128         # Unfortunately we fail here, despite no conflict in the
 
 129         # submodule itself, but the merge strategy in submodules
 
 130         # does not support rebase:
 
 131         test_must_fail git -C super pull --rebase --recurse-submodules 2>err &&
 
 132         test_i18ngrep "locally recorded submodule modifications" err
 
 135 test_expect_success 'branch has no merge base with remote-tracking counterpart' '
 
 136         rm -rf parent child &&
 
 138         test_create_repo a-submodule &&
 
 139         test_commit -C a-submodule foo &&
 
 141         test_create_repo parent &&
 
 142         git -C parent submodule add "$(pwd)/a-submodule" &&
 
 143         git -C parent commit -m foo &&
 
 145         git clone parent child &&
 
 147         # Reset master so that it has no merge base with
 
 148         # refs/remotes/origin/master.
 
 149         OTHER=$(git -C child commit-tree -m bar \
 
 150                 $(git -C child rev-parse HEAD^{tree})) &&
 
 151         git -C child reset --hard "$OTHER" &&
 
 153         git -C child pull --recurse-submodules --rebase