3 test_description='test git worktree list'
 
   7 test_expect_success 'setup' '
 
  11 test_expect_success 'rev-parse --git-common-dir on main worktree' '
 
  12         git rev-parse --git-common-dir >actual &&
 
  13         echo .git >expected &&
 
  14         test_cmp expected actual &&
 
  16         git -C sub rev-parse --git-common-dir >actual2 &&
 
  17         echo ../.git >expected2 &&
 
  18         test_cmp expected2 actual2
 
  21 test_expect_success 'rev-parse --git-path objects linked worktree' '
 
  22         echo "$(git rev-parse --show-toplevel)/.git/objects" >expect &&
 
  23         test_when_finished "rm -rf linked-tree actual expect && git worktree prune" &&
 
  24         git worktree add --detach linked-tree master &&
 
  25         git -C linked-tree rev-parse --git-path objects >actual &&
 
  26         test_cmp expect actual
 
  29 test_expect_success '"list" all worktrees from main' '
 
  30         echo "$(git rev-parse --show-toplevel) $(git rev-parse --short HEAD) [$(git symbolic-ref --short HEAD)]" >expect &&
 
  31         test_when_finished "rm -rf here out actual expect && git worktree prune" &&
 
  32         git worktree add --detach here master &&
 
  33         echo "$(git -C here rev-parse --show-toplevel) $(git rev-parse --short HEAD) (detached HEAD)" >>expect &&
 
  34         git worktree list >out &&
 
  35         sed "s/  */ /g" <out >actual &&
 
  36         test_cmp expect actual
 
  39 test_expect_success '"list" all worktrees from linked' '
 
  40         echo "$(git rev-parse --show-toplevel) $(git rev-parse --short HEAD) [$(git symbolic-ref --short HEAD)]" >expect &&
 
  41         test_when_finished "rm -rf here out actual expect && git worktree prune" &&
 
  42         git worktree add --detach here master &&
 
  43         echo "$(git -C here rev-parse --show-toplevel) $(git rev-parse --short HEAD) (detached HEAD)" >>expect &&
 
  44         git -C here worktree list >out &&
 
  45         sed "s/  */ /g" <out >actual &&
 
  46         test_cmp expect actual
 
  49 test_expect_success '"list" all worktrees --porcelain' '
 
  50         echo "worktree $(git rev-parse --show-toplevel)" >expect &&
 
  51         echo "HEAD $(git rev-parse HEAD)" >>expect &&
 
  52         echo "branch $(git symbolic-ref HEAD)" >>expect &&
 
  54         test_when_finished "rm -rf here actual expect && git worktree prune" &&
 
  55         git worktree add --detach here master &&
 
  56         echo "worktree $(git -C here rev-parse --show-toplevel)" >>expect &&
 
  57         echo "HEAD $(git rev-parse HEAD)" >>expect &&
 
  58         echo "detached" >>expect &&
 
  60         git worktree list --porcelain >actual &&
 
  61         test_cmp expect actual
 
  64 test_expect_success 'bare repo setup' '
 
  65         git init --bare bare1 &&
 
  68         git commit -m"File1: add data" &&
 
  69         git push bare1 master &&
 
  70         git reset --hard HEAD^
 
  73 test_expect_success '"list" all worktrees from bare main' '
 
  74         test_when_finished "rm -rf there out actual expect && git -C bare1 worktree prune" &&
 
  75         git -C bare1 worktree add --detach ../there master &&
 
  76         echo "$(pwd)/bare1 (bare)" >expect &&
 
  77         echo "$(git -C there rev-parse --show-toplevel) $(git -C there rev-parse --short HEAD) (detached HEAD)" >>expect &&
 
  78         git -C bare1 worktree list >out &&
 
  79         sed "s/  */ /g" <out >actual &&
 
  80         test_cmp expect actual
 
  83 test_expect_success '"list" all worktrees --porcelain from bare main' '
 
  84         test_when_finished "rm -rf there actual expect && git -C bare1 worktree prune" &&
 
  85         git -C bare1 worktree add --detach ../there master &&
 
  86         echo "worktree $(pwd)/bare1" >expect &&
 
  87         echo "bare" >>expect &&
 
  89         echo "worktree $(git -C there rev-parse --show-toplevel)" >>expect &&
 
  90         echo "HEAD $(git -C there rev-parse HEAD)" >>expect &&
 
  91         echo "detached" >>expect &&
 
  93         git -C bare1 worktree list --porcelain >actual &&
 
  94         test_cmp expect actual
 
  97 test_expect_success '"list" all worktrees from linked with a bare main' '
 
  98         test_when_finished "rm -rf there out actual expect && git -C bare1 worktree prune" &&
 
  99         git -C bare1 worktree add --detach ../there master &&
 
 100         echo "$(pwd)/bare1 (bare)" >expect &&
 
 101         echo "$(git -C there rev-parse --show-toplevel) $(git -C there rev-parse --short HEAD) (detached HEAD)" >>expect &&
 
 102         git -C there worktree list >out &&
 
 103         sed "s/  */ /g" <out >actual &&
 
 104         test_cmp expect actual
 
 107 test_expect_success 'bare repo cleanup' '
 
 111 test_expect_success 'broken main worktree still at the top' '
 
 112         git init broken-main &&
 
 116                 git worktree add linked &&
 
 117                 cat >expected <<-EOF &&
 
 123                 echo "worktree $(pwd)" >expected &&
 
 124                 echo "ref: .broken" >../.git/HEAD &&
 
 125                 git worktree list --porcelain >out &&
 
 126                 head -n 3 out >actual &&
 
 127                 test_cmp ../expected actual &&
 
 128                 git worktree list >out &&
 
 129                 head -n 1 out >actual.2 &&
 
 130                 grep -F "(error)" actual.2
 
 134 test_expect_success 'linked worktrees are sorted' '
 
 136         git init sorted/main &&
 
 141                 git worktree add ../first &&
 
 142                 git worktree add ../second &&
 
 143                 git worktree list --porcelain >out &&
 
 144                 grep ^worktree out >actual
 
 146         cat >expected <<-EOF &&
 
 147         worktree $(pwd)/sorted/main
 
 148         worktree $(pwd)/sorted/first
 
 149         worktree $(pwd)/sorted/second
 
 151         test_cmp expected sorted/main/actual
 
 154 test_expect_success 'worktree path when called in .git directory' '
 
 155         git worktree list >list1&&
 
 156         git -C .git worktree list >list2 &&