summaryrefslogtreecommitdiff
path: root/t/t2028-worktree-move.sh
blob: deb486cd8e38a229217a752f47dc11a34984933c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/bin/sh
 
test_description='test git worktree move, remove, lock and unlock'
 
. ./test-lib.sh
 
test_expect_success 'setup' '
	test_commit init &&
	git worktree add source &&
	git worktree list --porcelain | grep "^worktree" >actual &&
	cat <<-EOF >expected &&
	worktree $(pwd)
	worktree $(pwd)/source
	EOF
	test_cmp expected actual
'
 
test_expect_success 'lock main worktree' '
	test_must_fail git worktree lock .
'
 
test_expect_success 'lock linked worktree' '
	git worktree lock --reason hahaha source &&
	echo hahaha >expected &&
	test_cmp expected .git/worktrees/source/locked
'
 
test_expect_success 'lock linked worktree from another worktree' '
	rm .git/worktrees/source/locked &&
	git worktree add elsewhere &&
	git -C elsewhere worktree lock --reason hahaha ../source &&
	echo hahaha >expected &&
	test_cmp expected .git/worktrees/source/locked
'
 
test_expect_success 'lock worktree twice' '
	test_must_fail git worktree lock source &&
	echo hahaha >expected &&
	test_cmp expected .git/worktrees/source/locked
'
 
test_expect_success 'lock worktree twice (from the locked worktree)' '
	test_must_fail git -C source worktree lock . &&
	echo hahaha >expected &&
	test_cmp expected .git/worktrees/source/locked
'
 
test_expect_success 'unlock main worktree' '
	test_must_fail git worktree unlock .
'
 
test_expect_success 'unlock linked worktree' '
	git worktree unlock source &&
	test_path_is_missing .git/worktrees/source/locked
'
 
test_expect_success 'unlock worktree twice' '
	test_must_fail git worktree unlock source &&
	test_path_is_missing .git/worktrees/source/locked
'
 
test_expect_success 'move non-worktree' '
	mkdir abc &&
	test_must_fail git worktree move abc def
'
 
test_expect_success 'move locked worktree' '
	git worktree lock source &&
	test_when_finished "git worktree unlock source" &&
	test_must_fail git worktree move source destination
'
 
test_expect_success 'move worktree' '
	toplevel="$(pwd)" &&
	git worktree move source destination &&
	test_path_is_missing source &&
	git worktree list --porcelain | grep "^worktree.*/destination" &&
	! git worktree list --porcelain | grep "^worktree.*/source" >empty &&
	git -C destination log --format=%s >actual2 &&
	echo init >expected2 &&
	test_cmp expected2 actual2
'
 
test_expect_success 'move main worktree' '
	test_must_fail git worktree move . def
'
 
test_expect_success 'move worktree to another dir' '
	toplevel="$(pwd)" &&
	mkdir some-dir &&
	git worktree move destination some-dir &&
	test_path_is_missing source &&
	git worktree list --porcelain | grep "^worktree.*/some-dir/destination" &&
	git -C some-dir/destination log --format=%s >actual2 &&
	echo init >expected2 &&
	test_cmp expected2 actual2
'
 
test_done