blob: 54b0a6f5f8a4b2996bd49ab3251837967f8fd57a [file] [log] [blame]
Adam Simpkinsb97c4702009-08-21 11:20:34 -07001#!/bin/sh
2
3# There's more than one "correct" way to represent the history graphically.
4# These tests depend on the current behavior of the graphing code. If the
5# graphing code is ever changed to draw the output differently, these tests
6# cases will need to be updated to know about the new layout.
7
8test_description='--graph and simplified history'
9
Johannes Schindelin1550bb62020-11-18 23:44:36 +000010GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
Johannes Schindelin334afbc2020-11-18 23:44:19 +000011export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
12
Adam Simpkinsb97c4702009-08-21 11:20:34 -070013. ./test-lib.sh
Antonio Russoc8302c62021-01-03 19:30:35 -070014. "$TEST_DIRECTORY"/lib-log-graph.sh
15
16check_graph () {
17 cat >expect &&
18 lib_test_cmp_graph --format=%s "$@"
19}
Adam Simpkinsb97c4702009-08-21 11:20:34 -070020
21test_expect_success 'set up rev-list --graph test' '
22 # 3 commits on branch A
23 test_commit A1 foo.txt &&
24 test_commit A2 bar.txt &&
25 test_commit A3 bar.txt &&
Johannes Schindelin1550bb62020-11-18 23:44:36 +000026 git branch -m main A &&
Adam Simpkinsb97c4702009-08-21 11:20:34 -070027
28 # 2 commits on branch B, started from A1
29 git checkout -b B A1 &&
30 test_commit B1 foo.txt &&
31 test_commit B2 abc.txt &&
32
33 # 2 commits on branch C, started from A2
34 git checkout -b C A2 &&
35 test_commit C1 xyz.txt &&
36 test_commit C2 xyz.txt &&
37
38 # Octopus merge B and C into branch A
39 git checkout A &&
Antonio Russoc8302c62021-01-03 19:30:35 -070040 git merge B C -m A4 &&
Elijah Newrene6f68a22010-10-03 14:00:09 -060041 git tag A4 &&
Adam Simpkinsb97c4702009-08-21 11:20:34 -070042
43 test_commit A5 bar.txt &&
44
45 # More commits on C, then merge C into A
46 git checkout C &&
47 test_commit C3 foo.txt &&
48 test_commit C4 bar.txt &&
49 git checkout A &&
Antonio Russoc8302c62021-01-03 19:30:35 -070050 git merge -s ours C -m A6 &&
Elijah Newrene6f68a22010-10-03 14:00:09 -060051 git tag A6 &&
Adam Simpkinsb97c4702009-08-21 11:20:34 -070052
Antonio Russoc8302c62021-01-03 19:30:35 -070053 test_commit A7 bar.txt
54'
Adam Simpkinsb97c4702009-08-21 11:20:34 -070055
56test_expect_success '--graph --all' '
Antonio Russoc8302c62021-01-03 19:30:35 -070057 check_graph --all <<-\EOF
58 * A7
59 * A6
60 |\
61 | * C4
62 | * C3
63 * | A5
64 | |
65 | \
66 *-. | A4
67 |\ \|
68 | | * C2
69 | | * C1
70 | * | B2
71 | * | B1
72 * | | A3
73 | |/
74 |/|
75 * | A2
76 |/
77 * A1
78 EOF
79'
Adam Simpkinsb97c4702009-08-21 11:20:34 -070080
81# Make sure the graph_is_interesting() code still realizes
82# that undecorated merges are interesting, even with --simplify-by-decoration
83test_expect_success '--graph --simplify-by-decoration' '
Elijah Newrene6f68a22010-10-03 14:00:09 -060084 git tag -d A4 &&
Antonio Russoc8302c62021-01-03 19:30:35 -070085 check_graph --all --simplify-by-decoration <<-\EOF
86 * A7
87 * A6
88 |\
89 | * C4
90 | * C3
91 * | A5
92 | |
93 | \
94 *-. | A4
95 |\ \|
96 | | * C2
97 | | * C1
98 | * | B2
99 | * | B1
100 * | | A3
101 | |/
102 |/|
103 * | A2
104 |/
105 * A1
106 EOF
107'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700108
Elijah Newrene6f68a22010-10-03 14:00:09 -0600109test_expect_success 'setup: get rid of decorations on B' '
110 git tag -d B2 &&
111 git tag -d B1 &&
112 git branch -d B
113'
114
115# Graph with branch B simplified away
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700116test_expect_success '--graph --simplify-by-decoration prune branch B' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700117 check_graph --simplify-by-decoration --all <<-\EOF
118 * A7
119 * A6
120 |\
121 | * C4
122 | * C3
123 * | A5
124 * | A4
125 |\|
126 | * C2
127 | * C1
128 * | A3
129 |/
130 * A2
131 * A1
132 EOF
133'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700134
135test_expect_success '--graph --full-history -- bar.txt' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700136 check_graph --full-history --all -- bar.txt <<-\EOF
137 * A7
138 * A6
139 |\
140 | * C4
141 * | A5
142 * | A4
143 |\|
144 * | A3
145 |/
146 * A2
147 EOF
148'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700149
150test_expect_success '--graph --full-history --simplify-merges -- bar.txt' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700151 check_graph --full-history --simplify-merges --all -- bar.txt <<-\EOF
152 * A7
153 * A6
154 |\
155 | * C4
156 * | A5
157 * | A3
158 |/
159 * A2
160 EOF
161'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700162
163test_expect_success '--graph -- bar.txt' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700164 check_graph --all -- bar.txt <<-\EOF
165 * A7
166 * A5
167 * A3
168 | * C4
169 |/
170 * A2
171 EOF
172'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700173
174test_expect_success '--graph --sparse -- bar.txt' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700175 check_graph --sparse --all -- bar.txt <<-\EOF
176 * A7
177 * A6
178 * A5
179 * A4
180 * A3
181 | * C4
182 | * C3
183 | * C2
184 | * C1
185 |/
186 * A2
187 * A1
188 EOF
189'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700190
191test_expect_success '--graph ^C4' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700192 check_graph --all ^C4 <<-\EOF
193 * A7
194 * A6
195 * A5
196 * A4
197 |\
198 | * B2
199 | * B1
200 * A3
201 EOF
202'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700203
204test_expect_success '--graph ^C3' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700205 check_graph --all ^C3 <<-\EOF
206 * A7
207 * A6
208 |\
209 | * C4
210 * A5
211 * A4
212 |\
213 | * B2
214 | * B1
215 * A3
216 EOF
217'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700218
219# I don't think the ordering of the boundary commits is really
220# that important, but this test depends on it. If the ordering ever changes
221# in the code, we'll need to update this test.
222test_expect_success '--graph --boundary ^C3' '
Antonio Russoc8302c62021-01-03 19:30:35 -0700223 check_graph --boundary --all ^C3 <<-\EOF
224 * A7
225 * A6
226 |\
227 | * C4
228 * | A5
229 | |
230 | \
231 *-. \ A4
232 |\ \ \
233 | * | | B2
234 | * | | B1
235 * | | | A3
236 o | | | A2
237 |/ / /
238 o / / A1
239 / /
240 | o C3
241 |/
242 o C2
243 EOF
244'
Adam Simpkinsb97c4702009-08-21 11:20:34 -0700245
246test_done