sequencer: make refs generated by the `label` command worktree-local
[git] / t / t3430-rebase-recreate-merges.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2017 Johannes E. Schindelin
4 #
5
6 test_description='git rebase -i --recreate-merges
7
8 This test runs git rebase "interactively", retaining the branch structure by
9 recreating merge commits.
10
11 Initial setup:
12
13     -- B --                   (first)
14    /       \
15  A - C - D - E - H            (master)
16        \       /
17          F - G                (second)
18 '
19 . ./test-lib.sh
20 . "$TEST_DIRECTORY"/lib-rebase.sh
21
22 test_expect_success 'setup' '
23         write_script replace-editor.sh <<-\EOF &&
24         mv "$1" "$(git rev-parse --git-path ORIGINAL-TODO)"
25         cp script-from-scratch "$1"
26         EOF
27
28         test_commit A &&
29         git checkout -b first &&
30         test_commit B &&
31         git checkout master &&
32         test_commit C &&
33         test_commit D &&
34         git merge --no-commit B &&
35         test_tick &&
36         git commit -m E &&
37         git tag -m E E &&
38         git checkout -b second C &&
39         test_commit F &&
40         test_commit G &&
41         git checkout master &&
42         git merge --no-commit G &&
43         test_tick &&
44         git commit -m H &&
45         git tag -m H H
46 '
47
48 cat >script-from-scratch <<\EOF
49 label onto
50
51 # onebranch
52 pick G
53 pick D
54 label onebranch
55
56 # second
57 reset onto
58 pick B
59 label second
60
61 reset onto
62 merge -C H second
63 merge onebranch # Merge the topic branch 'onebranch'
64 EOF
65
66 test_cmp_graph () {
67         cat >expect &&
68         git log --graph --boundary --format=%s "$@" >output &&
69         sed "s/ *$//" <output >output.trimmed &&
70         test_cmp expect output.trimmed
71 }
72
73 test_expect_success 'create completely different structure' '
74         test_config sequence.editor \""$PWD"/replace-editor.sh\" &&
75         test_tick &&
76         git rebase -i --recreate-merges A &&
77         test_cmp_graph <<-\EOF
78         *   Merge the topic branch '\''onebranch'\''
79         |\
80         | * D
81         | * G
82         * |   H
83         |\ \
84         | |/
85         |/|
86         | * B
87         |/
88         * A
89         EOF
90 '
91
92 test_expect_success 'generate correct todo list' '
93         cat >expect <<-\EOF &&
94         label onto
95
96         reset onto
97         pick d9df450 B
98         label E
99
100         reset onto
101         pick 5dee784 C
102         label branch-point
103         pick ca2c861 F
104         pick 088b00a G
105         label H
106
107         reset branch-point # C
108         pick 12bd07b D
109         merge -C 2051b56 E # E
110         merge -C 233d48a H # H
111
112         EOF
113
114         grep -v "^#" <.git/ORIGINAL-TODO >output &&
115         test_cmp expect output
116 '
117
118 test_expect_success 'with a branch tip that was cherry-picked already' '
119         git checkout -b already-upstream master &&
120         base="$(git rev-parse --verify HEAD)" &&
121
122         test_commit A1 &&
123         test_commit A2 &&
124         git reset --hard $base &&
125         test_commit B1 &&
126         test_tick &&
127         git merge -m "Merge branch A" A2 &&
128
129         git checkout -b upstream-with-a2 $base &&
130         test_tick &&
131         git cherry-pick A2 &&
132
133         git checkout already-upstream &&
134         test_tick &&
135         git rebase -i --recreate-merges upstream-with-a2 &&
136         test_cmp_graph upstream-with-a2.. <<-\EOF
137         *   Merge branch A
138         |\
139         | * A1
140         * | B1
141         |/
142         o A2
143         EOF
144 '
145
146 test_expect_success 'refs/rewritten/* is worktree-local' '
147         git worktree add wt &&
148         cat >wt/script-from-scratch <<-\EOF &&
149         label xyz
150         exec GIT_DIR=../.git git rev-parse --verify refs/rewritten/xyz >a || :
151         exec git rev-parse --verify refs/rewritten/xyz >b
152         EOF
153
154         test_config -C wt sequence.editor \""$PWD"/replace-editor.sh\" &&
155         git -C wt rebase -i HEAD &&
156         test_must_be_empty wt/a &&
157         test_cmp_rev HEAD "$(cat wt/b)"
158 '
159
160 test_done