]> git.ipfire.org Git - thirdparty/git.git/blame - t/t2028-worktree-move.sh
Merge branch 'jt/transfer-fsck-with-promissor'
[thirdparty/git.git] / t / t2028-worktree-move.sh
CommitLineData
58142c09
NTND
1#!/bin/sh
2
3test_description='test git worktree move, remove, lock and unlock'
4
5. ./test-lib.sh
6
7test_expect_success 'setup' '
8 test_commit init &&
9 git worktree add source &&
7f19def0
ES
10 git worktree list --porcelain >out &&
11 grep "^worktree" out >actual &&
58142c09
NTND
12 cat <<-EOF >expected &&
13 worktree $(pwd)
14 worktree $(pwd)/source
15 EOF
16 test_cmp expected actual
17'
18
19test_expect_success 'lock main worktree' '
20 test_must_fail git worktree lock .
21'
22
23test_expect_success 'lock linked worktree' '
24 git worktree lock --reason hahaha source &&
25 echo hahaha >expected &&
26 test_cmp expected .git/worktrees/source/locked
27'
28
29test_expect_success 'lock linked worktree from another worktree' '
30 rm .git/worktrees/source/locked &&
31 git worktree add elsewhere &&
32 git -C elsewhere worktree lock --reason hahaha ../source &&
33 echo hahaha >expected &&
34 test_cmp expected .git/worktrees/source/locked
35'
36
37test_expect_success 'lock worktree twice' '
38 test_must_fail git worktree lock source &&
39 echo hahaha >expected &&
40 test_cmp expected .git/worktrees/source/locked
41'
42
43test_expect_success 'lock worktree twice (from the locked worktree)' '
44 test_must_fail git -C source worktree lock . &&
45 echo hahaha >expected &&
46 test_cmp expected .git/worktrees/source/locked
47'
48
6d308627
NTND
49test_expect_success 'unlock main worktree' '
50 test_must_fail git worktree unlock .
51'
52
53test_expect_success 'unlock linked worktree' '
54 git worktree unlock source &&
55 test_path_is_missing .git/worktrees/source/locked
56'
57
58test_expect_success 'unlock worktree twice' '
59 test_must_fail git worktree unlock source &&
60 test_path_is_missing .git/worktrees/source/locked
61'
62
9f792bb4
NTND
63test_expect_success 'move non-worktree' '
64 mkdir abc &&
65 test_must_fail git worktree move abc def
66'
67
68test_expect_success 'move locked worktree' '
69 git worktree lock source &&
70 test_when_finished "git worktree unlock source" &&
71 test_must_fail git worktree move source destination
72'
73
74test_expect_success 'move worktree' '
75 toplevel="$(pwd)" &&
76 git worktree move source destination &&
77 test_path_is_missing source &&
7f19def0
ES
78 git worktree list --porcelain >out &&
79 grep "^worktree.*/destination" out &&
80 ! grep "^worktree.*/source" out &&
9f792bb4
NTND
81 git -C destination log --format=%s >actual2 &&
82 echo init >expected2 &&
83 test_cmp expected2 actual2
84'
85
86test_expect_success 'move main worktree' '
87 test_must_fail git worktree move . def
88'
89
c64a8d20 90test_expect_success 'move worktree to another dir' '
c64a8d20
NTND
91 mkdir some-dir &&
92 git worktree move destination some-dir &&
7f19def0
ES
93 test_when_finished "git worktree move some-dir/destination destination" &&
94 test_path_is_missing destination &&
95 git worktree list --porcelain >out &&
96 grep "^worktree.*/some-dir/destination" out &&
c64a8d20
NTND
97 git -C some-dir/destination log --format=%s >actual2 &&
98 echo init >expected2 &&
99 test_cmp expected2 actual2
100'
101
cc73385c
NTND
102test_expect_success 'remove main worktree' '
103 test_must_fail git worktree remove .
104'
105
cc73385c
NTND
106test_expect_success 'remove locked worktree' '
107 git worktree lock destination &&
108 test_when_finished "git worktree unlock destination" &&
109 test_must_fail git worktree remove destination
110'
111
112test_expect_success 'remove worktree with dirty tracked file' '
113 echo dirty >>destination/init.t &&
114 test_when_finished "git -C destination checkout init.t" &&
115 test_must_fail git worktree remove destination
116'
117
118test_expect_success 'remove worktree with untracked file' '
119 : >destination/untracked &&
120 test_must_fail git worktree remove destination
121'
122
123test_expect_success 'force remove worktree with untracked file' '
124 git worktree remove --force destination &&
125 test_path_is_missing destination
126'
127
ee6763af
NTND
128test_expect_success 'remove missing worktree' '
129 git worktree add to-be-gone &&
130 test -d .git/worktrees/to-be-gone &&
131 mv to-be-gone gone &&
132 git worktree remove to-be-gone &&
133 test_path_is_missing .git/worktrees/to-be-gone
134'
135
136test_expect_success 'NOT remove missing-but-locked worktree' '
137 git worktree add gone-but-locked &&
138 git worktree lock gone-but-locked &&
139 test -d .git/worktrees/gone-but-locked &&
140 mv gone-but-locked really-gone-now &&
141 test_must_fail git worktree remove gone-but-locked &&
142 test_path_is_dir .git/worktrees/gone-but-locked
143'
144
58142c09 145test_done