124
tree1 = self.make_branch_and_tree('tree1')
125
self.build_tree_contents([('tree1/a', 'first\n')])
126
tree1.add(['a'], ['a-id'])
127
tree1.commit('a', rev_id='rev-1',
128
committer="joe@foo.com",
129
timestamp=1166046000.00, timezone=0)
131
tree2 = tree1.bzrdir.clone('tree2').open_workingtree()
133
self.build_tree_contents([('tree1/a', 'first\nsecond\n')])
134
tree1.commit('b', rev_id='rev-2',
135
committer='joe@foo.com',
136
timestamp=1166046001.00, timezone=0)
138
self.build_tree_contents([('tree2/a', 'first\nthird\n')])
139
tree2.commit('c', rev_id='rev-1_1_1',
140
committer="barry@foo.com",
141
timestamp=1166046002.00, timezone=0)
143
num_conflicts = tree1.merge_from_branch(tree2.branch)
144
self.assertEqual(1, num_conflicts)
146
self.build_tree_contents([('tree1/a',
147
'first\nsecond\nthird\n')])
148
tree1.set_conflicts(conflicts.ConflictList())
149
tree1.commit('merge 2', rev_id='rev-3',
150
committer='sal@foo.com',
151
timestamp=1166046003.00, timezone=0)
179
builder = self.make_branch_builder('branch')
180
builder.start_series()
181
self.addCleanup(builder.finish_series)
182
builder.build_snapshot('rev-1', None, [
183
('add', ('', 'root-id', 'directory', None)),
184
('add', ('a', 'a-id', 'file', 'first\n')),
185
], timestamp=1166046000.00, timezone=0, committer="joe@foo.com")
186
builder.build_snapshot('rev-2', ['rev-1'], [
187
('modify', ('a-id', 'first\nsecond\n')),
188
], timestamp=1166046001.00, timezone=0, committer="joe@foo.com")
189
builder.build_snapshot('rev-1_1_1', ['rev-1'], [
190
('modify', ('a-id', 'first\nthird\n')),
191
], timestamp=1166046002.00, timezone=0, committer="barry@foo.com")
192
builder.build_snapshot('rev-3', ['rev-2', 'rev-1_1_1'], [
193
('modify', ('a-id', 'first\nsecond\nthird\n')),
194
], timestamp=1166046003.00, timezone=0, committer="sal@foo.com")
154
197
def create_deeply_merged_trees(self):
155
198
"""Create some trees with a more complex merge history.
177
tree1, tree2 = self.create_merged_trees()
179
tree3 = tree2.bzrdir.clone('tree3').open_workingtree()
181
tree2.commit('noop', rev_id='rev-1_1_2')
182
self.assertEqual(0, tree1.merge_from_branch(tree2.branch))
183
tree1.commit('noop merge', rev_id='rev-4')
185
self.build_tree_contents([('tree3/a', 'first\nthird\nfourth\n')])
186
tree3.commit('four', rev_id='rev-1_1_1_1_1',
187
committer='jerry@foo.com',
188
timestamp=1166046003.00, timezone=0)
190
tree4 = tree3.bzrdir.clone('tree4').open_workingtree()
192
tree3.commit('noop', rev_id='rev-1_1_1_1_2',
193
committer='jerry@foo.com',
194
timestamp=1166046004.00, timezone=0)
195
self.assertEqual(0, tree1.merge_from_branch(tree3.branch))
196
tree1.commit('merge four', rev_id='rev-5')
198
self.build_tree_contents([('tree4/a',
199
'first\nthird\nfourth\nfifth\nsixth\n')])
200
tree4.commit('five and six', rev_id='rev-1_1_1_1_1_1_1',
201
committer='george@foo.com',
202
timestamp=1166046005.00, timezone=0)
203
self.assertEqual(0, tree1.merge_from_branch(tree4.branch))
204
tree1.commit('merge five and six', rev_id='rev-6')
220
builder = self.create_merged_trees()
221
builder.build_snapshot('rev-1_1_2', ['rev-1_1_1'], [])
222
builder.build_snapshot('rev-4', ['rev-3', 'rev-1_1_2'], [])
223
builder.build_snapshot('rev-1_2_1', ['rev-1_1_1'], [
224
('modify', ('a-id', 'first\nthird\nfourth\n')),
225
], timestamp=1166046003.00, timezone=0, committer="jerry@foo.com")
226
builder.build_snapshot('rev-1_2_2', ['rev-1_2_1'], [],
227
timestamp=1166046004.00, timezone=0, committer="jerry@foo.com")
228
builder.build_snapshot('rev-5', ['rev-4', 'rev-1_2_2'], [
229
('modify', ('a-id', 'first\nsecond\nthird\nfourth\n')),
230
], timestamp=1166046004.00, timezone=0, committer="jerry@foo.com")
231
builder.build_snapshot('rev-1_3_1', ['rev-1_2_1'], [
232
('modify', ('a-id', 'first\nthird\nfourth\nfifth\nsixth\n')),
233
], timestamp=1166046005.00, timezone=0, committer="george@foo.com")
234
builder.build_snapshot('rev-6', ['rev-5', 'rev-1_3_1'], [
236
'first\nsecond\nthird\nfourth\nfifth\nsixth\n')),
240
def create_duplicate_lines_tree(self):
241
builder = self.make_branch_builder('branch')
242
builder.start_series()
243
self.addCleanup(builder.finish_series)
244
base_text = ''.join(l for r, l in duplicate_base)
245
a_text = ''.join(l for r, l in duplicate_A)
246
b_text = ''.join(l for r, l in duplicate_B)
247
c_text = ''.join(l for r, l in duplicate_C)
248
d_text = ''.join(l for r, l in duplicate_D)
249
e_text = ''.join(l for r, l in duplicate_E)
250
builder.build_snapshot('rev-base', None, [
251
('add', ('', 'root-id', 'directory', None)),
252
('add', ('file', 'file-id', 'file', base_text)),
254
builder.build_snapshot('rev-A', ['rev-base'], [
255
('modify', ('file-id', a_text))])
256
builder.build_snapshot('rev-B', ['rev-base'], [
257
('modify', ('file-id', b_text))])
258
builder.build_snapshot('rev-C', ['rev-A'], [
259
('modify', ('file-id', c_text))])
260
builder.build_snapshot('rev-D', ['rev-B', 'rev-A'], [
261
('modify', ('file-id', d_text))])
262
builder.build_snapshot('rev-E', ['rev-C', 'rev-D'], [
263
('modify', ('file-id', e_text))])
266
def assertRepoAnnotate(self, expected, repo, file_id, revision_id):
267
"""Assert that the revision is properly annotated."""
268
actual = list(repo.revision_tree(revision_id).annotate_iter(file_id))
269
if actual != expected:
270
# Create an easier to understand diff when the lines don't actually
272
self.assertEqualDiff(''.join('\t'.join(l) for l in expected),
273
''.join('\t'.join(l) for l in actual))
275
def test_annotate_duplicate_lines(self):
276
# XXX: Should this be a per_repository test?
277
builder = self.create_duplicate_lines_tree()
278
repo = builder.get_branch().repository
280
self.addCleanup(repo.unlock)
281
self.assertRepoAnnotate(duplicate_base, repo, 'file-id', 'rev-base')
282
self.assertRepoAnnotate(duplicate_A, repo, 'file-id', 'rev-A')
283
self.assertRepoAnnotate(duplicate_B, repo, 'file-id', 'rev-B')
284
self.assertRepoAnnotate(duplicate_C, repo, 'file-id', 'rev-C')
285
self.assertRepoAnnotate(duplicate_D, repo, 'file-id', 'rev-D')
286
self.assertRepoAnnotate(duplicate_E, repo, 'file-id', 'rev-E')
207
288
def test_annotate_shows_dotted_revnos(self):
208
tree1, tree2 = self.create_merged_trees()
289
builder = self.create_merged_trees()
211
annotate.annotate_file(tree1.branch, 'rev-3', 'a-id',
292
annotate.annotate_file(builder.get_branch(), 'rev-3', 'a-id',
213
294
self.assertEqualDiff('1 joe@foo | first\n'
214
295
'2 joe@foo | second\n'
218
299
def test_annotate_limits_dotted_revnos(self):
219
300
"""Annotate should limit dotted revnos to a depth of 12"""
220
tree1 = self.create_deeply_merged_trees()
301
builder = self.create_deeply_merged_trees()
223
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
304
annotate.annotate_file(builder.get_branch(), 'rev-6', 'a-id',
224
305
to_file=sio, verbose=False, full=False)
225
self.assertEqualDiff('1 joe@foo | first\n'
226
'2 joe@foo | second\n'
227
'1.1.1 barry@f | third\n'
228
'1.1.1.1.1 jerry@f | fourth\n'
229
'1.1.1.1.1.1> george@ | fifth\n'
306
self.assertEqualDiff('1 joe@foo | first\n'
307
'2 joe@foo | second\n'
308
'1.1.1 barry@f | third\n'
309
'1.2.1 jerry@f | fourth\n'
310
'1.3.1 george@ | fifth\n'
234
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
315
annotate.annotate_file(builder.get_branch(), 'rev-6', 'a-id',
235
316
to_file=sio, verbose=False, full=True)
236
self.assertEqualDiff('1 joe@foo | first\n'
237
'2 joe@foo | second\n'
238
'1.1.1 barry@f | third\n'
239
'1.1.1.1.1 jerry@f | fourth\n'
240
'1.1.1.1.1.1> george@ | fifth\n'
241
'1.1.1.1.1.1> george@ | sixth\n',
317
self.assertEqualDiff('1 joe@foo | first\n'
318
'2 joe@foo | second\n'
319
'1.1.1 barry@f | third\n'
320
'1.2.1 jerry@f | fourth\n'
321
'1.3.1 george@ | fifth\n'
322
'1.3.1 george@ | sixth\n',
244
325
# verbose=True shows everything, the full revno, user id, and date
246
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
327
annotate.annotate_file(builder.get_branch(), 'rev-6', 'a-id',
247
328
to_file=sio, verbose=True, full=False)
248
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
249
'2 joe@foo.com 20061213 | second\n'
250
'1.1.1 barry@foo.com 20061213 | third\n'
251
'1.1.1.1.1 jerry@foo.com 20061213 | fourth\n'
252
'1.1.1.1.1.1.1 george@foo.com 20061213 | fifth\n'
329
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
330
'2 joe@foo.com 20061213 | second\n'
331
'1.1.1 barry@foo.com 20061213 | third\n'
332
'1.2.1 jerry@foo.com 20061213 | fourth\n'
333
'1.3.1 george@foo.com 20061213 | fifth\n'
257
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
338
annotate.annotate_file(builder.get_branch(), 'rev-6', 'a-id',
258
339
to_file=sio, verbose=True, full=True)
259
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
260
'2 joe@foo.com 20061213 | second\n'
261
'1.1.1 barry@foo.com 20061213 | third\n'
262
'1.1.1.1.1 jerry@foo.com 20061213 | fourth\n'
263
'1.1.1.1.1.1.1 george@foo.com 20061213 | fifth\n'
264
'1.1.1.1.1.1.1 george@foo.com 20061213 | sixth\n',
340
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
341
'2 joe@foo.com 20061213 | second\n'
342
'1.1.1 barry@foo.com 20061213 | third\n'
343
'1.2.1 jerry@foo.com 20061213 | fourth\n'
344
'1.3.1 george@foo.com 20061213 | fifth\n'
345
'1.3.1 george@foo.com 20061213 | sixth\n',
267
348
def test_annotate_uses_branch_context(self):
270
351
When annotating a non-mainline revision, the annotation should still
271
352
use dotted revnos from the mainline.
273
tree1 = self.create_deeply_merged_trees()
354
builder = self.create_deeply_merged_trees()
276
annotate.annotate_file(tree1.branch, 'rev-1_1_1_1_1_1_1', 'a-id',
357
annotate.annotate_file(builder.get_branch(), 'rev-1_3_1', 'a-id',
277
358
to_file=sio, verbose=False, full=False)
278
self.assertEqualDiff('1 joe@foo | first\n'
279
'1.1.1 barry@f | third\n'
280
'1.1.1.1.1 jerry@f | fourth\n'
281
'1.1.1.1.1.1> george@ | fifth\n'
359
self.assertEqualDiff('1 joe@foo | first\n'
360
'1.1.1 barry@f | third\n'
361
'1.2.1 jerry@f | fourth\n'
362
'1.3.1 george@ | fifth\n'
285
366
def test_annotate_show_ids(self):
286
tree1 = self.create_deeply_merged_trees()
367
builder = self.create_deeply_merged_trees()
289
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
370
annotate.annotate_file(builder.get_branch(), 'rev-6', 'a-id',
290
371
to_file=sio, show_ids=True, full=False)
292
373
# It looks better with real revision ids :)
293
self.assertEqualDiff(' rev-1 | first\n'
295
' rev-1_1_1 | third\n'
296
' rev-1_1_1_1_1 | fourth\n'
297
'rev-1_1_1_1_1_1_1 | fifth\n'
374
self.assertEqualDiff(' rev-1 | first\n'
376
'rev-1_1_1 | third\n'
377
'rev-1_2_1 | fourth\n'
378
'rev-1_3_1 | fifth\n'
302
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
383
annotate.annotate_file(builder.get_branch(), 'rev-6', 'a-id',
303
384
to_file=sio, show_ids=True, full=True)
305
self.assertEqualDiff(' rev-1 | first\n'
307
' rev-1_1_1 | third\n'
308
' rev-1_1_1_1_1 | fourth\n'
309
'rev-1_1_1_1_1_1_1 | fifth\n'
310
'rev-1_1_1_1_1_1_1 | sixth\n',
386
self.assertEqualDiff(' rev-1 | first\n'
388
'rev-1_1_1 | third\n'
389
'rev-1_2_1 | fourth\n'
390
'rev-1_3_1 | fifth\n'
391
'rev-1_3_1 | sixth\n',
313
394
def test_annotate_unicode_author(self):