99
107
""".splitlines(True)
110
# For the 'duplicate' series, both sides introduce the same change, which then
111
# gets merged around. The last-modified should properly reflect this.
112
# We always change the fourth line so that the file is properly tracked as
113
# being modified in each revision. In reality, this probably would happen over
114
# many revisions, and it would be a different line that changes.
117
# A B # line should be annotated as new for A and B
119
# C D # line should 'converge' and say A
121
# E # D should supersede A and stay as D (not become E because C references
123
duplicate_base = annotation("""\
130
duplicate_A = annotation("""\
137
duplicate_B = annotation("""\
144
duplicate_C = annotation("""\
151
duplicate_D = annotation("""\
158
duplicate_E = annotation("""\
102
166
class TestAnnotate(tests.TestCaseWithTransport):
104
168
def create_merged_trees(self):
169
235
tree1, tree2 = self.create_merged_trees()
171
tree3 = tree2.bzrdir.clone('tree3').open_workingtree()
238
tree3 = tree2.bzrdir.sprout('tree3').open_workingtree()
173
240
tree2.commit('noop', rev_id='rev-1_1_2')
174
241
self.assertEqual(0, tree1.merge_from_branch(tree2.branch))
175
242
tree1.commit('noop merge', rev_id='rev-4')
177
244
self.build_tree_contents([('tree3/a', 'first\nthird\nfourth\n')])
178
tree3.commit('four', rev_id='rev-1_1_1_1_1',
245
tree3.commit('four', rev_id='rev-1_2_1',
179
246
committer='jerry@foo.com',
180
247
timestamp=1166046003.00, timezone=0)
182
tree4 = tree3.bzrdir.clone('tree4').open_workingtree()
249
tree4 = tree3.bzrdir.sprout('tree4').open_workingtree()
184
tree3.commit('noop', rev_id='rev-1_1_1_1_2',
251
tree3.commit('noop', rev_id='rev-1_2_2',
185
252
committer='jerry@foo.com',
186
253
timestamp=1166046004.00, timezone=0)
187
254
self.assertEqual(0, tree1.merge_from_branch(tree3.branch))
190
257
self.build_tree_contents([('tree4/a',
191
258
'first\nthird\nfourth\nfifth\nsixth\n')])
192
tree4.commit('five and six', rev_id='rev-1_1_1_1_1_1_1',
259
tree4.commit('five and six', rev_id='rev-1_3_1',
193
260
committer='george@foo.com',
194
261
timestamp=1166046005.00, timezone=0)
195
262
self.assertEqual(0, tree1.merge_from_branch(tree4.branch))
196
263
tree1.commit('merge five and six', rev_id='rev-6')
267
def create_duplicate_lines_tree(self):
268
tree1 = self.make_branch_and_tree('tree1')
269
base_text = ''.join(l for r, l in duplicate_base)
270
a_text = ''.join(l for r, l in duplicate_A)
271
b_text = ''.join(l for r, l in duplicate_B)
272
c_text = ''.join(l for r, l in duplicate_C)
273
d_text = ''.join(l for r, l in duplicate_D)
274
e_text = ''.join(l for r, l in duplicate_E)
275
self.build_tree_contents([('tree1/file', base_text)])
276
tree1.add(['file'], ['file-id'])
277
tree1.commit('base', rev_id='rev-base')
278
tree2 = tree1.bzrdir.sprout('tree2').open_workingtree()
280
self.build_tree_contents([('tree1/file', a_text),
281
('tree2/file', b_text)])
282
tree1.commit('A', rev_id='rev-A')
283
tree2.commit('B', rev_id='rev-B')
285
tree2.merge_from_branch(tree1.branch)
286
conflicts.resolve(tree2, None) # Resolve the conflicts
287
self.build_tree_contents([('tree2/file', d_text)])
288
tree2.commit('D', rev_id='rev-D')
290
self.build_tree_contents([('tree1/file', c_text)])
291
tree1.commit('C', rev_id='rev-C')
293
tree1.merge_from_branch(tree2.branch)
294
conflicts.resolve(tree1, None) # Resolve the conflicts
295
self.build_tree_contents([('tree1/file', e_text)])
296
tree1.commit('E', rev_id='rev-E')
299
def assertRepoAnnotate(self, expected, repo, file_id, revision_id):
300
"""Assert that the revision is properly annotated."""
301
actual = list(repo.revision_tree(revision_id).annotate_iter(file_id))
302
if actual != expected:
303
# Create an easier to understand diff when the lines don't actually
305
self.assertEqualDiff(''.join('\t'.join(l) for l in expected),
306
''.join('\t'.join(l) for l in actual))
308
def test_annotate_duplicate_lines(self):
309
# XXX: Should this be a per_repository test?
310
tree1 = self.create_duplicate_lines_tree()
311
repo = tree1.branch.repository
313
self.addCleanup(repo.unlock)
314
self.assertRepoAnnotate(duplicate_base, repo, 'file-id', 'rev-base')
315
self.assertRepoAnnotate(duplicate_A, repo, 'file-id', 'rev-A')
316
self.assertRepoAnnotate(duplicate_B, repo, 'file-id', 'rev-B')
317
self.assertRepoAnnotate(duplicate_C, repo, 'file-id', 'rev-C')
318
self.assertRepoAnnotate(duplicate_D, repo, 'file-id', 'rev-D')
319
self.assertRepoAnnotate(duplicate_E, repo, 'file-id', 'rev-E')
199
321
def test_annotate_shows_dotted_revnos(self):
200
322
tree1, tree2 = self.create_merged_trees()
215
337
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
216
338
to_file=sio, verbose=False, full=False)
217
self.assertEqualDiff('1 joe@foo | first\n'
218
'2 joe@foo | second\n'
219
'1.1.1 barry@f | third\n'
220
'1.1.1.1.1 jerry@f | fourth\n'
221
'1.1.1.1.1.1> george@ | fifth\n'
339
self.assertEqualDiff('1 joe@foo | first\n'
340
'2 joe@foo | second\n'
341
'1.1.1 barry@f | third\n'
342
'1.2.1 jerry@f | fourth\n'
343
'1.3.1 george@ | fifth\n'
226
348
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
227
349
to_file=sio, verbose=False, full=True)
228
self.assertEqualDiff('1 joe@foo | first\n'
229
'2 joe@foo | second\n'
230
'1.1.1 barry@f | third\n'
231
'1.1.1.1.1 jerry@f | fourth\n'
232
'1.1.1.1.1.1> george@ | fifth\n'
233
'1.1.1.1.1.1> george@ | sixth\n',
350
self.assertEqualDiff('1 joe@foo | first\n'
351
'2 joe@foo | second\n'
352
'1.1.1 barry@f | third\n'
353
'1.2.1 jerry@f | fourth\n'
354
'1.3.1 george@ | fifth\n'
355
'1.3.1 george@ | sixth\n',
236
358
# verbose=True shows everything, the full revno, user id, and date
238
360
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
239
361
to_file=sio, verbose=True, full=False)
240
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
241
'2 joe@foo.com 20061213 | second\n'
242
'1.1.1 barry@foo.com 20061213 | third\n'
243
'1.1.1.1.1 jerry@foo.com 20061213 | fourth\n'
244
'1.1.1.1.1.1.1 george@foo.com 20061213 | fifth\n'
362
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
363
'2 joe@foo.com 20061213 | second\n'
364
'1.1.1 barry@foo.com 20061213 | third\n'
365
'1.2.1 jerry@foo.com 20061213 | fourth\n'
366
'1.3.1 george@foo.com 20061213 | fifth\n'
249
371
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
250
372
to_file=sio, verbose=True, full=True)
251
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
252
'2 joe@foo.com 20061213 | second\n'
253
'1.1.1 barry@foo.com 20061213 | third\n'
254
'1.1.1.1.1 jerry@foo.com 20061213 | fourth\n'
255
'1.1.1.1.1.1.1 george@foo.com 20061213 | fifth\n'
256
'1.1.1.1.1.1.1 george@foo.com 20061213 | sixth\n',
373
self.assertEqualDiff('1 joe@foo.com 20061213 | first\n'
374
'2 joe@foo.com 20061213 | second\n'
375
'1.1.1 barry@foo.com 20061213 | third\n'
376
'1.2.1 jerry@foo.com 20061213 | fourth\n'
377
'1.3.1 george@foo.com 20061213 | fifth\n'
378
'1.3.1 george@foo.com 20061213 | sixth\n',
259
381
def test_annotate_uses_branch_context(self):
265
387
tree1 = self.create_deeply_merged_trees()
268
annotate.annotate_file(tree1.branch, 'rev-1_1_1_1_1_1_1', 'a-id',
390
annotate.annotate_file(tree1.branch, 'rev-1_3_1', 'a-id',
269
391
to_file=sio, verbose=False, full=False)
270
self.assertEqualDiff('1 joe@foo | first\n'
271
'1.1.1 barry@f | third\n'
272
'1.1.1.1.1 jerry@f | fourth\n'
273
'1.1.1.1.1.1> george@ | fifth\n'
392
self.assertEqualDiff('1 joe@foo | first\n'
393
'1.1.1 barry@f | third\n'
394
'1.2.1 jerry@f | fourth\n'
395
'1.3.1 george@ | fifth\n'
277
399
def test_annotate_show_ids(self):
282
404
to_file=sio, show_ids=True, full=False)
284
406
# It looks better with real revision ids :)
285
self.assertEqualDiff(' rev-1 | first\n'
287
' rev-1_1_1 | third\n'
288
' rev-1_1_1_1_1 | fourth\n'
289
'rev-1_1_1_1_1_1_1 | fifth\n'
407
self.assertEqualDiff(' rev-1 | first\n'
409
'rev-1_1_1 | third\n'
410
'rev-1_2_1 | fourth\n'
411
'rev-1_3_1 | fifth\n'
294
416
annotate.annotate_file(tree1.branch, 'rev-6', 'a-id',
295
417
to_file=sio, show_ids=True, full=True)
297
self.assertEqualDiff(' rev-1 | first\n'
299
' rev-1_1_1 | third\n'
300
' rev-1_1_1_1_1 | fourth\n'
301
'rev-1_1_1_1_1_1_1 | fifth\n'
302
'rev-1_1_1_1_1_1_1 | sixth\n',
419
self.assertEqualDiff(' rev-1 | first\n'
421
'rev-1_1_1 | third\n'
422
'rev-1_2_1 | fourth\n'
423
'rev-1_3_1 | fifth\n'
424
'rev-1_3_1 | sixth\n',
305
427
def test_annotate_unicode_author(self):
338
462
annotate.annotate_file(tree1.branch, 'rev-2', 'b-id', to_file=to_file)
339
463
self.assertContainsRe('2 p.rez | bye\n', to_file.getvalue())
465
def test_annotate_author_or_committer(self):
466
tree1 = self.make_branch_and_tree('tree1')
468
self.build_tree_contents([('tree1/a', 'hello')])
469
tree1.add(['a'], ['a-id'])
470
tree1.commit('a', rev_id='rev-1',
471
committer='Committer <committer@example.com>',
472
timestamp=1166046000.00, timezone=0)
474
self.build_tree_contents([('tree1/b', 'bye')])
475
tree1.add(['b'], ['b-id'])
476
tree1.commit('b', rev_id='rev-2',
477
committer='Committer <committer@example.com>',
478
authors=['Author <author@example.com>'],
479
timestamp=1166046000.00, timezone=0)
482
self.addCleanup(tree1.unlock)
484
annotate.annotate_file(tree1.branch, 'rev-1', 'a-id', to_file=to_file)
485
self.assertEqual('1 committ | hello\n', to_file.getvalue())
488
annotate.annotate_file(tree1.branch, 'rev-2', 'b-id', to_file=to_file)
489
self.assertEqual('2 author@ | bye\n', to_file.getvalue())
342
492
class TestReannotate(tests.TestCase):
344
def annotateEqual(self, expected, parents, newlines, revision_id):
494
def annotateEqual(self, expected, parents, newlines, revision_id,
345
496
annotate_list = list(annotate.reannotate(parents, newlines,
497
revision_id, blocks))
347
498
self.assertEqual(len(expected), len(annotate_list))
348
499
for e, a in zip(expected, annotate_list):
349
500
self.assertEqual(e, a)
351
502
def test_reannotate(self):
352
503
self.annotateEqual(parent_1, [parent_1], new_1, 'blahblah')
353
504
self.annotateEqual(expected_2_1, [parent_2], new_1, 'blahblah')
354
self.annotateEqual(expected_1_2_2, [parent_1, parent_2], new_2,
505
self.annotateEqual(expected_1_2_2, [parent_1, parent_2], new_2,
508
def test_reannotate_no_parents(self):
509
self.annotateEqual(expected_1, [], new_1, 'blahblah')
511
def test_reannotate_left_matching_blocks(self):
512
"""Ensure that left_matching_blocks has an impact.
514
In this case, the annotation is ambiguous, so the hint isn't actually
517
parent = [('rev1', 'a\n')]
518
new_text = ['a\n', 'a\n']
519
blocks = [(0, 0, 1), (1, 2, 0)]
520
self.annotateEqual([('rev1', 'a\n'), ('rev2', 'a\n')], [parent],
521
new_text, 'rev2', blocks)
522
blocks = [(0, 1, 1), (1, 2, 0)]
523
self.annotateEqual([('rev2', 'a\n'), ('rev1', 'a\n')], [parent],
524
new_text, 'rev2', blocks)