34
33
class TestMerge(ExternalBase):
36
def example_branch(self, path='.'):
37
tree = self.make_branch_and_tree(path)
38
self.build_tree_contents([
39
(pathjoin(path, 'hello'), 'foo'),
40
(pathjoin(path, 'goodbye'), 'baz')])
42
tree.commit(message='setup')
44
tree.commit(message='setup')
47
def create_conflicting_branches(self):
48
"""Create two branches which have overlapping modifications.
50
:return: (tree, other_branch) Where merging other_branch causes a file
53
builder = self.make_branch_builder('branch')
54
builder.build_snapshot('rev1', None,
55
[('add', ('', 'root-id', 'directory', None)),
56
('add', ('fname', 'f-id', 'file', 'a\nb\nc\n'))])
57
builder.build_snapshot('rev2other', ['rev1'],
58
[('modify', ('f-id', 'a\nB\nD\n'))])
59
other = builder.get_branch().bzrdir.sprout('other').open_branch()
60
builder.build_snapshot('rev2this', ['rev1'],
61
[('modify', ('f-id', 'a\nB\nC\n'))])
62
tree = builder.get_branch().create_checkout('tree', lightweight=True)
35
def example_branch(test):
37
file('hello', 'wt').write('foo')
38
test.run_bzr('add hello')
39
test.run_bzr('commit -m setup hello')
40
file('goodbye', 'wt').write('baz')
41
test.run_bzr('add goodbye')
42
test.run_bzr('commit -m setup goodbye')
65
44
def test_merge_reprocess(self):
66
45
d = BzrDir.create_standalone_workingtree('.')
119
96
self.run_bzr('merge ../b -r last:1')
120
97
self.assertEqual([a_tip], a.get_parent_ids())
122
def test_merge_defaults_to_reprocess(self):
123
tree, other = self.create_conflicting_branches()
124
# The default merge algorithm should enable 'reprocess' because
125
# 'show-base' is not set
126
self.run_bzr('merge ../other', working_dir='tree',
128
self.assertEqualDiff('a\n'
134
'>>>>>>> MERGE-SOURCE\n',
135
tree.get_file_text('f-id'))
137
def test_merge_explicit_reprocess_show_base(self):
138
tree, other = self.create_conflicting_branches()
139
# Explicitly setting --reprocess, and --show-base is an error
140
self.run_bzr_error(['Cannot do conflict reduction and show base'],
141
'merge ../other --reprocess --show-base',
144
def test_merge_override_reprocess(self):
145
tree, other = self.create_conflicting_branches()
146
# Explicitly disable reprocess
147
self.run_bzr('merge ../other --no-reprocess', working_dir='tree',
149
self.assertEqualDiff('a\n'
156
'>>>>>>> MERGE-SOURCE\n',
157
tree.get_file_text('f-id'))
159
def test_merge_override_show_base(self):
160
tree, other = self.create_conflicting_branches()
161
# Setting '--show-base' will auto-disable '--reprocess'
162
self.run_bzr('merge ../other --show-base', working_dir='tree',
164
self.assertEqualDiff('a\n'
168
'||||||| BASE-REVISION\n'
174
'>>>>>>> MERGE-SOURCE\n',
175
tree.get_file_text('f-id'))
177
99
def test_merge_with_missing_file(self):
178
100
"""Merge handles missing file conflicts"""
179
self.build_tree_contents([
182
('a/sub/a.txt', 'hello\n'),
183
('a/b.txt', 'hello\n'),
184
('a/sub/c.txt', 'hello\n')])
185
a_tree = self.make_branch_and_tree('a')
186
a_tree.add(['sub', 'b.txt', 'sub/c.txt', 'sub/a.txt'])
187
a_tree.commit(message='added a')
188
b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
189
self.build_tree_contents([
190
('a/sub/a.txt', 'hello\nthere\n'),
191
('a/b.txt', 'hello\nthere\n'),
192
('a/sub/c.txt', 'hello\nthere\n')])
193
a_tree.commit(message='Added there')
194
os.remove('a/sub/a.txt')
195
os.remove('a/sub/c.txt')
198
a_tree.commit(message='Removed a.txt')
199
self.build_tree_contents([
200
('b/sub/a.txt', 'hello\nsomething\n'),
201
('b/b.txt', 'hello\nsomething\n'),
202
('b/sub/c.txt', 'hello\nsomething\n')])
203
b_tree.commit(message='Modified a.txt')
104
print >> file('sub/a.txt', 'wb'), "hello"
105
print >> file('b.txt', 'wb'), "hello"
106
print >> file('sub/c.txt', 'wb'), "hello"
109
self.run_bzr(['commit', '-m', 'added a'])
110
self.run_bzr('branch . ../b')
111
print >> file('sub/a.txt', 'ab'), "there"
112
print >> file('b.txt', 'ab'), "there"
113
print >> file('sub/c.txt', 'ab'), "there"
114
self.run_bzr(['commit', '-m', 'Added there'])
115
os.unlink('sub/a.txt')
116
os.unlink('sub/c.txt')
119
self.run_bzr(['commit', '-m', 'Removed a.txt'])
121
print >> file('sub/a.txt', 'ab'), "something"
122
print >> file('b.txt', 'ab'), "something"
123
print >> file('sub/c.txt', 'ab'), "something"
124
self.run_bzr(['commit', '-m', 'Modified a.txt'])
205
125
self.run_bzr('merge ../a/', retcode=1)
206
self.failUnlessExists('sub/a.txt.THIS')
207
self.failUnlessExists('sub/a.txt.BASE')
126
self.assert_(os.path.exists('sub/a.txt.THIS'))
127
self.assert_(os.path.exists('sub/a.txt.BASE'))
209
129
self.run_bzr('merge ../b/', retcode=1)
210
self.failUnlessExists('sub/a.txt.OTHER')
211
self.failUnlessExists('sub/a.txt.BASE')
130
self.assert_(os.path.exists('sub/a.txt.OTHER'))
131
self.assert_(os.path.exists('sub/a.txt.BASE'))
213
133
def test_merge_remember(self):
214
"""Merge changes from one branch to another, test submit location."""
134
"""Merge changes from one branch to another and test parent location."""
215
135
tree_a = self.make_branch_and_tree('branch_a')
216
136
branch_a = tree_a.branch
217
137
self.build_tree(['branch_a/a'])
364
282
os.chdir('tree_b')
365
283
self.run_bzr('merge ../tree_a')
366
284
self.assertEqual('directory', file_kind('file'))
368
286
self.assertEqual('file', file_kind('file'))
369
287
self.build_tree_contents([('file', 'content_2')])
370
288
tree_b.commit('content change')
371
289
self.run_bzr('merge ../tree_a', retcode=1)
372
290
self.assertEqual(tree_b.conflicts(),
373
291
[ContentsConflict('file', file_id='file-id')])
375
def test_directive_cherrypick(self):
376
source = self.make_branch_and_tree('source')
377
self.build_tree(['source/a'])
379
source.commit('Added a', rev_id='rev1')
380
self.build_tree(['source/b'])
382
source.commit('Added b', rev_id='rev2')
383
target = self.make_branch_and_tree('target')
384
target.commit('empty commit')
385
self.write_directive('directive', source.branch, 'target', 'rev2',
387
out, err = self.run_bzr('merge -d target directive')
388
self.failIfExists('target/a')
389
self.failUnlessExists('target/b')
390
self.assertContainsRe(err, 'Performing cherrypick')
392
def write_directive(self, filename, source, target, revision_id,
393
base_revision_id=None, mangle_patch=False):
394
md = merge_directive.MergeDirective2.from_objects(
395
source.repository, revision_id, 0, 0, target,
396
base_revision_id=base_revision_id)
399
self.build_tree_contents([(filename, ''.join(md.to_lines()))])
401
def test_directive_verify_warning(self):
402
source = self.make_branch_and_tree('source')
403
self.build_tree(['source/a'])
405
source.commit('Added a', rev_id='rev1')
406
target = self.make_branch_and_tree('target')
407
target.commit('empty commit')
408
self.write_directive('directive', source.branch, 'target', 'rev1')
409
err = self.run_bzr('merge -d target directive')[1]
410
self.assertNotContainsRe(err, 'Preview patch does not match changes')
412
self.write_directive('directive', source.branch, 'target', 'rev1',
414
err = self.run_bzr('merge -d target directive')[1]
415
self.assertContainsRe(err, 'Preview patch does not match changes')
417
def test_merge_arbitrary(self):
418
target = self.make_branch_and_tree('target')
419
target.commit('empty')
420
# We need a revision that has no integer revno
421
branch_a = target.bzrdir.sprout('branch_a').open_workingtree()
422
self.build_tree(['branch_a/file1'])
423
branch_a.add('file1')
424
branch_a.commit('added file1', rev_id='rev2a')
425
branch_b = target.bzrdir.sprout('branch_b').open_workingtree()
426
self.build_tree(['branch_b/file2'])
427
branch_b.add('file2')
428
branch_b.commit('added file2', rev_id='rev2b')
429
branch_b.merge_from_branch(branch_a.branch)
430
self.failUnlessExists('branch_b/file1')
431
branch_b.commit('merged branch_a', rev_id='rev3b')
433
# It works if the revid has an interger revno
434
self.run_bzr('merge -d target -r revid:rev2a branch_a')
435
self.failUnlessExists('target/file1')
436
self.failIfExists('target/file2')
439
# It should work if the revid has no integer revno
440
self.run_bzr('merge -d target -r revid:rev2a branch_b')
441
self.failUnlessExists('target/file1')
442
self.failIfExists('target/file2')
444
def assertDirectoryContent(self, directory, entries, message=''):
445
"""Assert whether entries (file or directories) exist in a directory.
447
It also checks that there are no extra entries.
449
ondisk = os.listdir(directory)
450
if set(ondisk) == set(entries):
454
raise AssertionError(
455
'%s"%s" directory content is different:\na = %s\nb = %s\n'
456
% (message, directory, sorted(entries), sorted(ondisk)))
458
def test_cherrypicking_merge(self):
460
source = self.make_branch_and_tree('source')
461
for f in ('a', 'b', 'c', 'd'):
462
self.build_tree(['source/'+f])
464
source.commit('added '+f, rev_id='rev_'+f)
466
target = source.bzrdir.sprout('target', 'rev_a').open_workingtree()
467
self.assertDirectoryContent('target', ['.bzr', 'a'])
469
self.run_bzr('merge -d target -r revid:rev_b..revid:rev_c source')
470
self.assertDirectoryContent('target', ['.bzr', 'a', 'c'])
473
self.run_bzr('merge -d target -r revid:rev_b..revid:rev_d source')
474
self.assertDirectoryContent('target', ['.bzr', 'a', 'c', 'd'])
476
# pick 1 revision with option --changes
477
self.run_bzr('merge -d target -c revid:rev_d source')
478
self.assertDirectoryContent('target', ['.bzr', 'a', 'd'])
480
def test_merge_criss_cross(self):
481
tree_a = self.make_branch_and_tree('a')
482
tree_a.commit('', rev_id='rev1')
483
tree_b = tree_a.bzrdir.sprout('b').open_workingtree()
484
tree_a.commit('', rev_id='rev2a')
485
tree_b.commit('', rev_id='rev2b')
486
tree_a.merge_from_branch(tree_b.branch)
487
tree_b.merge_from_branch(tree_a.branch)
488
tree_a.commit('', rev_id='rev3a')
489
tree_b.commit('', rev_id='rev3b')
490
graph = tree_a.branch.repository.get_graph(tree_b.branch.repository)
491
out, err = self.run_bzr(['merge', '-d', 'a', 'b'])
492
self.assertContainsRe(err, 'Warning: criss-cross merge encountered.')
494
def test_merge_force(self):
495
tree_a = self.make_branch_and_tree('a')
496
self.build_tree(['a/foo'])
498
tree_a.commit('add file')
499
tree_b = tree_a.bzrdir.sprout('b').open_workingtree()
500
self.build_tree_contents([('a/foo', 'change 1')])
501
tree_a.commit('change file')
502
tree_b.merge_from_branch(tree_a.branch)
503
tree_a.commit('empty change to allow merge to run')
504
self.run_bzr(['merge', '../a', '--force'], working_dir='b')
506
def test_merge_from_submit(self):
507
tree_a = self.make_branch_and_tree('a')
508
tree_b = tree_a.bzrdir.sprout('b').open_workingtree()
509
tree_c = tree_a.bzrdir.sprout('c').open_workingtree()
510
out, err = self.run_bzr(['merge', '-d', 'c'])
511
self.assertContainsRe(err, 'Merging from remembered parent location .*a\/')
512
tree_c.branch.set_submit_branch(tree_b.bzrdir.root_transport.base)
513
out, err = self.run_bzr(['merge', '-d', 'c'])
514
self.assertContainsRe(err, 'Merging from remembered submit location .*b\/')
516
def test_remember_sets_submit(self):
517
tree_a = self.make_branch_and_tree('a')
518
tree_b = tree_a.bzrdir.sprout('b').open_workingtree()
519
self.assertIs(tree_b.branch.get_submit_branch(), None)
521
# Remember should not happen if using default from parent
522
out, err = self.run_bzr(['merge', '-d', 'b'])
523
self.assertIs(tree_b.branch.get_submit_branch(), None)
525
# Remember should happen if user supplies location
526
out, err = self.run_bzr(['merge', '-d', 'b', 'a'])
527
self.assertEqual(tree_b.branch.get_submit_branch(),
528
tree_a.bzrdir.root_transport.base)
530
def test_weave_cherrypick(self):
531
this_tree = self.make_branch_and_tree('this')
532
self.build_tree_contents([('this/file', "a\n")])
533
this_tree.add('file')
534
this_tree.commit('rev1')
535
other_tree = this_tree.bzrdir.sprout('other').open_workingtree()
536
self.build_tree_contents([('other/file', "a\nb\n")])
537
other_tree.commit('rev2b')
538
self.build_tree_contents([('other/file', "c\na\nb\n")])
539
other_tree.commit('rev3b')
540
self.run_bzr('merge --weave -d this other -r -2..-1')
541
self.assertFileEqual('c\na\n', 'this/file')
543
def test_lca_merge_criss_cross(self):
544
tree_a = self.make_branch_and_tree('a')
545
self.build_tree_contents([('a/file', 'base-contents\n')])
547
tree_a.commit('', rev_id='rev1')
548
tree_b = tree_a.bzrdir.sprout('b').open_workingtree()
549
self.build_tree_contents([('a/file',
550
'base-contents\nthis-contents\n')])
551
tree_a.commit('', rev_id='rev2a')
552
self.build_tree_contents([('b/file',
553
'base-contents\nother-contents\n')])
554
tree_b.commit('', rev_id='rev2b')
555
tree_a.merge_from_branch(tree_b.branch)
556
self.build_tree_contents([('a/file',
557
'base-contents\nthis-contents\n')])
558
tree_a.set_conflicts(ConflictList())
559
tree_b.merge_from_branch(tree_a.branch)
560
self.build_tree_contents([('b/file',
561
'base-contents\nother-contents\n')])
562
tree_b.set_conflicts(ConflictList())
563
tree_a.commit('', rev_id='rev3a')
564
tree_b.commit('', rev_id='rev3b')
565
out, err = self.run_bzr(['merge', '-d', 'a', 'b', '--lca'], retcode=1)
566
self.assertFileEqual('base-contents\n<<<<<<< TREE\nthis-contents\n'
567
'=======\nother-contents\n>>>>>>> MERGE-SOURCE\n',
570
def test_merge_preview(self):
571
this_tree = self.make_branch_and_tree('this')
572
this_tree.commit('rev1')
573
other_tree = this_tree.bzrdir.sprout('other').open_workingtree()
574
self.build_tree_contents([('other/file', 'new line')])
575
other_tree.add('file')
576
other_tree.commit('rev2a')
577
this_tree.commit('rev2b')
578
out, err = self.run_bzr(['merge', '-d', 'this', 'other', '--preview'])
579
self.assertContainsRe(out, '\+new line')
580
self.assertNotContainsRe(err, '\+N file\n')
581
this_tree.lock_read()
582
self.addCleanup(this_tree.unlock)
584
list(this_tree.iter_changes(this_tree.basis_tree())))