t / t7412-submodule-absorbgitdirs.shon commit Merge branch 'jk/fsck-connectivity-check-fix' (4ba6197)
   1#!/bin/sh
   2
   3test_description='Test submodule absorbgitdirs
   4
   5This test verifies that `git submodue absorbgitdirs` moves a submodules git
   6directory into the superproject.
   7'
   8
   9. ./test-lib.sh
  10
  11test_expect_success 'setup a real submodule' '
  12        git init sub1 &&
  13        test_commit -C sub1 first &&
  14        git submodule add ./sub1 &&
  15        test_tick &&
  16        git commit -m superproject
  17'
  18
  19test_expect_success 'absorb the git dir' '
  20        >expect.1 &&
  21        >expect.2 &&
  22        >actual.1 &&
  23        >actual.2 &&
  24        git status >expect.1 &&
  25        git -C sub1 rev-parse HEAD >expect.2 &&
  26        git submodule absorbgitdirs &&
  27        git fsck &&
  28        test -f sub1/.git &&
  29        test -d .git/modules/sub1 &&
  30        git status >actual.1 &&
  31        git -C sub1 rev-parse HEAD >actual.2 &&
  32        test_cmp expect.1 actual.1 &&
  33        test_cmp expect.2 actual.2
  34'
  35
  36test_expect_success 'absorbing does not fail for deinitalized submodules' '
  37        test_when_finished "git submodule update --init" &&
  38        git submodule deinit --all &&
  39        git submodule absorbgitdirs &&
  40        test -d .git/modules/sub1 &&
  41        test -d sub1 &&
  42        ! test -e sub1/.git
  43'
  44
  45test_expect_success 'setup nested submodule' '
  46        git init sub1/nested &&
  47        test_commit -C sub1/nested first_nested &&
  48        git -C sub1 submodule add ./nested &&
  49        test_tick &&
  50        git -C sub1 commit -m "add nested" &&
  51        git add sub1 &&
  52        git commit -m "sub1 to include nested submodule"
  53'
  54
  55test_expect_success 'absorb the git dir in a nested submodule' '
  56        git status >expect.1 &&
  57        git -C sub1/nested rev-parse HEAD >expect.2 &&
  58        git submodule absorbgitdirs &&
  59        test -f sub1/nested/.git &&
  60        test -d .git/modules/sub1/modules/nested &&
  61        git status >actual.1 &&
  62        git -C sub1/nested rev-parse HEAD >actual.2 &&
  63        test_cmp expect.1 actual.1 &&
  64        test_cmp expect.2 actual.2
  65'
  66
  67test_expect_success 'setup a gitlink with missing .gitmodules entry' '
  68        git init sub2 &&
  69        test_commit -C sub2 first &&
  70        git add sub2 &&
  71        git commit -m superproject
  72'
  73
  74test_expect_success 'absorbing the git dir fails for incomplete submodules' '
  75        git status >expect.1 &&
  76        git -C sub2 rev-parse HEAD >expect.2 &&
  77        test_must_fail git submodule absorbgitdirs &&
  78        git -C sub2 fsck &&
  79        test -d sub2/.git &&
  80        git status >actual &&
  81        git -C sub2 rev-parse HEAD >actual.2 &&
  82        test_cmp expect.1 actual.1 &&
  83        test_cmp expect.2 actual.2
  84'
  85
  86test_expect_success 'setup a submodule with multiple worktrees' '
  87        # first create another unembedded git dir in a new submodule
  88        git init sub3 &&
  89        test_commit -C sub3 first &&
  90        git submodule add ./sub3 &&
  91        test_tick &&
  92        git commit -m "add another submodule" &&
  93        git -C sub3 worktree add ../sub3_second_work_tree
  94'
  95
  96test_expect_success 'absorbing fails for a submodule with multiple worktrees' '
  97        test_must_fail git submodule absorbgitdirs sub3 2>error &&
  98        test_i18ngrep "not supported" error
  99'
 100
 101test_done