blob: bb6fb9b12cb7f41cea671a7df830ccc97c592e4f [file] [log] [blame]
Michael Rappazzobb9c03b2015-10-08 13:01:05 -04001#!/bin/sh
2
3test_description='test git worktree list'
4
5. ./test-lib.sh
6
7test_expect_success 'setup' '
8 test_commit init
9'
10
Johannes Schindelin098aa862017-02-17 17:59:06 +010011test_expect_success 'rev-parse --git-common-dir on main worktree' '
Nguyễn Thái Ngọc Duy17f13652016-02-12 11:31:45 +070012 git rev-parse --git-common-dir >actual &&
13 echo .git >expected &&
14 test_cmp expected actual &&
15 mkdir sub &&
16 git -C sub rev-parse --git-common-dir >actual2 &&
Michael Rappazzo5de8a542017-02-17 17:59:02 +010017 echo ../.git >expected2 &&
Nguyễn Thái Ngọc Duy17f13652016-02-12 11:31:45 +070018 test_cmp expected2 actual2
19'
20
Johannes Schindelin098aa862017-02-17 17:59:06 +010021test_expect_success 'rev-parse --git-path objects linked worktree' '
Michael Rappazzo5de8a542017-02-17 17:59:02 +010022 echo "$(git rev-parse --show-toplevel)/.git/objects" >expect &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053023 test_when_finished "rm -rf linked-tree actual expect && git worktree prune" &&
Michael Rappazzo5de8a542017-02-17 17:59:02 +010024 git worktree add --detach linked-tree master &&
25 git -C linked-tree rev-parse --git-path objects >actual &&
26 test_cmp expect actual
27'
28
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040029test_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 &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053031 test_when_finished "rm -rf here out actual expect && git worktree prune" &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040032 git worktree add --detach here master &&
33 echo "$(git -C here rev-parse --show-toplevel) $(git rev-parse --short HEAD) (detached HEAD)" >>expect &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053034 git worktree list >out &&
35 sed "s/ */ /g" <out >actual &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040036 test_cmp expect actual
37'
38
39test_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 &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053041 test_when_finished "rm -rf here out actual expect && git worktree prune" &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040042 git worktree add --detach here master &&
43 echo "$(git -C here rev-parse --show-toplevel) $(git rev-parse --short HEAD) (detached HEAD)" >>expect &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053044 git -C here worktree list >out &&
45 sed "s/ */ /g" <out >actual &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040046 test_cmp expect actual
47'
48
49test_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 &&
53 echo >>expect &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053054 test_when_finished "rm -rf here actual expect && git worktree prune" &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040055 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 &&
59 echo >>expect &&
60 git worktree list --porcelain >actual &&
61 test_cmp expect actual
62'
63
64test_expect_success 'bare repo setup' '
65 git init --bare bare1 &&
66 echo "data" >file1 &&
67 git add file1 &&
68 git commit -m"File1: add data" &&
69 git push bare1 master &&
70 git reset --hard HEAD^
71'
72
73test_expect_success '"list" all worktrees from bare main' '
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053074 test_when_finished "rm -rf there out actual expect && git -C bare1 worktree prune" &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040075 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 &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053078 git -C bare1 worktree list >out &&
79 sed "s/ */ /g" <out >actual &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040080 test_cmp expect actual
81'
82
83test_expect_success '"list" all worktrees --porcelain from bare main' '
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053084 test_when_finished "rm -rf there actual expect && git -C bare1 worktree prune" &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040085 git -C bare1 worktree add --detach ../there master &&
86 echo "worktree $(pwd)/bare1" >expect &&
87 echo "bare" >>expect &&
88 echo >>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 &&
92 echo >>expect &&
93 git -C bare1 worktree list --porcelain >actual &&
94 test_cmp expect actual
95'
96
97test_expect_success '"list" all worktrees from linked with a bare main' '
Prathamesh Chavan210e5db2017-04-04 03:05:57 +053098 test_when_finished "rm -rf there out actual expect && git -C bare1 worktree prune" &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -040099 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 &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +0530102 git -C there worktree list >out &&
103 sed "s/ */ /g" <out >actual &&
Michael Rappazzobb9c03b2015-10-08 13:01:05 -0400104 test_cmp expect actual
105'
106
107test_expect_success 'bare repo cleanup' '
108 rm -rf bare1
109'
110
Nguyễn Thái Ngọc Duya2345632016-11-28 16:36:54 +0700111test_expect_success 'broken main worktree still at the top' '
112 git init broken-main &&
113 (
114 cd broken-main &&
115 test_commit new &&
116 git worktree add linked &&
117 cat >expected <<-EOF &&
118 worktree $(pwd)
brian m. carlson8125a582018-05-13 02:24:13 +0000119 HEAD $ZERO_OID
Nguyễn Thái Ngọc Duya2345632016-11-28 16:36:54 +0700120
121 EOF
122 cd linked &&
123 echo "worktree $(pwd)" >expected &&
124 echo "ref: .broken" >../.git/HEAD &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +0530125 git worktree list --porcelain >out &&
126 head -n 3 out >actual &&
Nguyễn Thái Ngọc Duya2345632016-11-28 16:36:54 +0700127 test_cmp ../expected actual &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +0530128 git worktree list >out &&
129 head -n 1 out >actual.2 &&
Nguyễn Thái Ngọc Duya2345632016-11-28 16:36:54 +0700130 grep -F "(error)" actual.2
131 )
132'
133
Nguyễn Thái Ngọc Duy4df1d4d2016-11-28 16:36:56 +0700134test_expect_success 'linked worktrees are sorted' '
135 mkdir sorted &&
136 git init sorted/main &&
137 (
138 cd sorted/main &&
139 test_tick &&
140 test_commit new &&
141 git worktree add ../first &&
142 git worktree add ../second &&
Prathamesh Chavan210e5db2017-04-04 03:05:57 +0530143 git worktree list --porcelain >out &&
144 grep ^worktree out >actual
Nguyễn Thái Ngọc Duy4df1d4d2016-11-28 16:36:56 +0700145 ) &&
146 cat >expected <<-EOF &&
147 worktree $(pwd)/sorted/main
148 worktree $(pwd)/sorted/first
149 worktree $(pwd)/sorted/second
150 EOF
151 test_cmp expected sorted/main/actual
152'
153
Michael Rappazzobb9c03b2015-10-08 13:01:05 -0400154test_done