summaryrefslogtreecommitdiff
path: root/t/t3401-rebase-and-am-rename.sh
blob: 8f832957fc38110b7653ad0a058172ed9fc8bf1f (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
100
101
102
103
104
105
#!/bin/sh
 
test_description='git rebase + directory rename tests'
 
. ./test-lib.sh
. "$TEST_DIRECTORY"/lib-rebase.sh
 
test_expect_success 'setup testcase' '
	test_create_repo dir-rename &&
	(
		cd dir-rename &&
 
		mkdir x &&
		test_seq  1 10 >x/a &&
		test_seq 11 20 >x/b &&
		test_seq 21 30 >x/c &&
		test_write_lines a b c d e f g h i >l &&
		git add x l &&
		git commit -m "Initial" &&
 
		git branch O &&
		git branch A &&
		git branch B &&
 
		git checkout A &&
		git mv x y &&
		git mv l letters &&
		git commit -m "Rename x to y, l to letters" &&
 
		git checkout B &&
		echo j >>l &&
		test_seq 31 40 >x/d &&
		git add l x/d &&
		git commit -m "Modify l, add x/d"
	)
'
 
test_expect_success 'rebase --interactive: directory rename detected' '
	(
		cd dir-rename &&
 
		git checkout B^0 &&
 
		set_fake_editor &&
		FAKE_LINES="1" git rebase --interactive A &&
 
		git ls-files -s >out &&
		test_line_count = 5 out &&
 
		test_path_is_file y/d &&
		test_path_is_missing x/d
	)
'
 
test_expect_failure 'rebase (am): directory rename detected' '
	(
		cd dir-rename &&
 
		git checkout B^0 &&
 
		git rebase A &&
 
		git ls-files -s >out &&
		test_line_count = 5 out &&
 
		test_path_is_file y/d &&
		test_path_is_missing x/d
	)
'
 
test_expect_success 'rebase --merge: directory rename detected' '
	(
		cd dir-rename &&
 
		git checkout B^0 &&
 
		git rebase --merge A &&
 
		git ls-files -s >out &&
		test_line_count = 5 out &&
 
		test_path_is_file y/d &&
		test_path_is_missing x/d
	)
'
 
test_expect_failure 'am: directory rename detected' '
	(
		cd dir-rename &&
 
		git checkout A^0 &&
 
		git format-patch -1 B &&
 
		git am --3way 0001*.patch &&
 
		git ls-files -s >out &&
		test_line_count = 5 out &&
 
		test_path_is_file y/d &&
		test_path_is_missing x/d
	)
'
 
test_done