git-svn tests: rewrite brittle tests to use "--[no-]merges".
[git] / t / t2406-worktree-repair.sh
1 #!/bin/sh
2
3 test_description='test git worktree repair'
4
5 . ./test-lib.sh
6
7 test_expect_success setup '
8         test_commit init
9 '
10
11 test_expect_success 'skip missing worktree' '
12         test_when_finished "git worktree prune" &&
13         git worktree add --detach missing &&
14         rm -rf missing &&
15         git worktree repair >out 2>err &&
16         test_must_be_empty out &&
17         test_must_be_empty err
18 '
19
20 test_expect_success 'worktree path not directory' '
21         test_when_finished "git worktree prune" &&
22         git worktree add --detach notdir &&
23         rm -rf notdir &&
24         >notdir &&
25         test_must_fail git worktree repair >out 2>err &&
26         test_must_be_empty out &&
27         test_i18ngrep "not a directory" err
28 '
29
30 test_expect_success "don't clobber .git repo" '
31         test_when_finished "rm -rf repo && git worktree prune" &&
32         git worktree add --detach repo &&
33         rm -rf repo &&
34         test_create_repo repo &&
35         test_must_fail git worktree repair >out 2>err &&
36         test_must_be_empty out &&
37         test_i18ngrep ".git is not a file" err
38 '
39
40 test_corrupt_gitfile () {
41         butcher=$1 &&
42         problem=$2 &&
43         repairdir=${3:-.} &&
44         test_when_finished 'rm -rf corrupt && git worktree prune' &&
45         git worktree add --detach corrupt &&
46         git -C corrupt rev-parse --absolute-git-dir >expect &&
47         eval "$butcher" &&
48         git -C "$repairdir" worktree repair >out 2>err &&
49         test_i18ngrep "$problem" out &&
50         test_must_be_empty err &&
51         git -C corrupt rev-parse --absolute-git-dir >actual &&
52         test_cmp expect actual
53 }
54
55 test_expect_success 'repair missing .git file' '
56         test_corrupt_gitfile "rm -f corrupt/.git" ".git file broken"
57 '
58
59 test_expect_success 'repair bogus .git file' '
60         test_corrupt_gitfile "echo \"gitdir: /nowhere\" >corrupt/.git" \
61                 ".git file broken"
62 '
63
64 test_expect_success 'repair incorrect .git file' '
65         test_when_finished "rm -rf other && git worktree prune" &&
66         test_create_repo other &&
67         other=$(git -C other rev-parse --absolute-git-dir) &&
68         test_corrupt_gitfile "echo \"gitdir: $other\" >corrupt/.git" \
69                 ".git file incorrect"
70 '
71
72 test_expect_success 'repair .git file from main/.git' '
73         test_corrupt_gitfile "rm -f corrupt/.git" ".git file broken" .git
74 '
75
76 test_expect_success 'repair .git file from linked worktree' '
77         test_when_finished "rm -rf other && git worktree prune" &&
78         git worktree add --detach other &&
79         test_corrupt_gitfile "rm -f corrupt/.git" ".git file broken" other
80 '
81
82 test_expect_success 'repair .git file from bare.git' '
83         test_when_finished "rm -rf bare.git corrupt && git worktree prune" &&
84         git clone --bare . bare.git &&
85         git -C bare.git worktree add --detach ../corrupt &&
86         git -C corrupt rev-parse --absolute-git-dir >expect &&
87         rm -f corrupt/.git &&
88         git -C bare.git worktree repair &&
89         git -C corrupt rev-parse --absolute-git-dir >actual &&
90         test_cmp expect actual
91 '
92
93 test_expect_success 'invalid worktree path' '
94         test_must_fail git worktree repair /notvalid >out 2>err &&
95         test_must_be_empty out &&
96         test_i18ngrep "not a valid path" err
97 '
98
99 test_expect_success 'repo not found; .git not file' '
100         test_when_finished "rm -rf not-a-worktree" &&
101         test_create_repo not-a-worktree &&
102         test_must_fail git worktree repair not-a-worktree >out 2>err &&
103         test_must_be_empty out &&
104         test_i18ngrep ".git is not a file" err
105 '
106
107 test_expect_success 'repo not found; .git not referencing repo' '
108         test_when_finished "rm -rf side not-a-repo && git worktree prune" &&
109         git worktree add --detach side &&
110         sed s,\.git/worktrees/side$,not-a-repo, side/.git >side/.newgit &&
111         mv side/.newgit side/.git &&
112         mkdir not-a-repo &&
113         test_must_fail git worktree repair side 2>err &&
114         test_i18ngrep ".git file does not reference a repository" err
115 '
116
117 test_expect_success 'repo not found; .git file broken' '
118         test_when_finished "rm -rf orig moved && git worktree prune" &&
119         git worktree add --detach orig &&
120         echo /invalid >orig/.git &&
121         mv orig moved &&
122         test_must_fail git worktree repair moved >out 2>err &&
123         test_must_be_empty out &&
124         test_i18ngrep ".git file broken" err
125 '
126
127 test_expect_success 'repair broken gitdir' '
128         test_when_finished "rm -rf orig moved && git worktree prune" &&
129         git worktree add --detach orig &&
130         sed s,orig/\.git$,moved/.git, .git/worktrees/orig/gitdir >expect &&
131         rm .git/worktrees/orig/gitdir &&
132         mv orig moved &&
133         git worktree repair moved >out 2>err &&
134         test_cmp expect .git/worktrees/orig/gitdir &&
135         test_i18ngrep "gitdir unreadable" out &&
136         test_must_be_empty err
137 '
138
139 test_expect_success 'repair incorrect gitdir' '
140         test_when_finished "rm -rf orig moved && git worktree prune" &&
141         git worktree add --detach orig &&
142         sed s,orig/\.git$,moved/.git, .git/worktrees/orig/gitdir >expect &&
143         mv orig moved &&
144         git worktree repair moved >out 2>err &&
145         test_cmp expect .git/worktrees/orig/gitdir &&
146         test_i18ngrep "gitdir incorrect" out &&
147         test_must_be_empty err
148 '
149
150 test_expect_success 'repair gitdir (implicit) from linked worktree' '
151         test_when_finished "rm -rf orig moved && git worktree prune" &&
152         git worktree add --detach orig &&
153         sed s,orig/\.git$,moved/.git, .git/worktrees/orig/gitdir >expect &&
154         mv orig moved &&
155         git -C moved worktree repair >out 2>err &&
156         test_cmp expect .git/worktrees/orig/gitdir &&
157         test_i18ngrep "gitdir incorrect" out &&
158         test_must_be_empty err
159 '
160
161 test_expect_success 'unable to repair gitdir (implicit) from main worktree' '
162         test_when_finished "rm -rf orig moved && git worktree prune" &&
163         git worktree add --detach orig &&
164         cat .git/worktrees/orig/gitdir >expect &&
165         mv orig moved &&
166         git worktree repair >out 2>err &&
167         test_cmp expect .git/worktrees/orig/gitdir &&
168         test_must_be_empty out &&
169         test_must_be_empty err
170 '
171
172 test_expect_success 'repair multiple gitdir files' '
173         test_when_finished "rm -rf orig1 orig2 moved1 moved2 &&
174                 git worktree prune" &&
175         git worktree add --detach orig1 &&
176         git worktree add --detach orig2 &&
177         sed s,orig1/\.git$,moved1/.git, .git/worktrees/orig1/gitdir >expect1 &&
178         sed s,orig2/\.git$,moved2/.git, .git/worktrees/orig2/gitdir >expect2 &&
179         mv orig1 moved1 &&
180         mv orig2 moved2 &&
181         git worktree repair moved1 moved2 >out 2>err &&
182         test_cmp expect1 .git/worktrees/orig1/gitdir &&
183         test_cmp expect2 .git/worktrees/orig2/gitdir &&
184         test_i18ngrep "gitdir incorrect:.*orig1/gitdir$" out &&
185         test_i18ngrep "gitdir incorrect:.*orig2/gitdir$" out &&
186         test_must_be_empty err
187 '
188
189 test_expect_success 'repair moved main and linked worktrees' '
190         test_when_finished "rm -rf main side mainmoved sidemoved" &&
191         test_create_repo main &&
192         test_commit -C main init &&
193         git -C main worktree add --detach ../side &&
194         sed "s,side/\.git$,sidemoved/.git," \
195                 main/.git/worktrees/side/gitdir >expect-gitdir &&
196         sed "s,main/.git/worktrees/side$,mainmoved/.git/worktrees/side," \
197                 side/.git >expect-gitfile &&
198         mv main mainmoved &&
199         mv side sidemoved &&
200         git -C mainmoved worktree repair ../sidemoved &&
201         test_cmp expect-gitdir mainmoved/.git/worktrees/side/gitdir &&
202         test_cmp expect-gitfile sidemoved/.git
203 '
204
205 test_done