3
from bzrlib.branch import Branch
4
from bzrlib.builtins import merge
5
from bzrlib.commit import commit
6
from bzrlib.errors import UnrelatedBranches, NoCommits, BzrCommandError
7
from bzrlib.fetch import fetch
8
from bzrlib.merge import transform_tree
9
from bzrlib.osutils import pathjoin
10
from bzrlib.revision import common_ancestor
11
from bzrlib.tests import TestCaseWithTransport
12
from bzrlib.workingtree import WorkingTree
15
class TestMerge(TestCaseWithTransport):
16
"""Test appending more than one revision"""
18
def test_pending(self):
19
wt = self.make_branch_and_tree('.')
21
self.assertEquals(len(wt.pending_merges()), 0)
22
merge([u'.', -1], [None, None])
23
self.assertEquals(len(wt.pending_merges()), 0)
25
def test_nocommits(self):
27
wt2 = self.make_branch_and_tree('branch2')
28
self.assertRaises(NoCommits, merge, ['branch2', -1],
32
def test_unrelated(self):
33
wt2 = self.test_nocommits()
35
self.assertRaises(UnrelatedBranches, merge, ['branch2', -1],
39
def test_pending_with_null(self):
40
"""When base is forced to revno 0, pending_merges is set"""
41
wt2 = self.test_unrelated()
42
wt1 = WorkingTree('.')
44
fetch(from_branch=wt2.branch, to_branch=br1)
45
# merge all of branch 2 into branch 1 even though they
47
self.assertRaises(BzrCommandError, merge, ['branch2', -1],
48
['branch2', 0], reprocess=True, show_base=True)
49
merge(['branch2', -1], ['branch2', 0], reprocess=True)
50
self.assertEquals(len(wt1.pending_merges()), 1)
51
return (wt1, wt2.branch)
53
def test_two_roots(self):
54
"""Merge base is sane when two unrelated branches are merged"""
55
wt1, br2 = self.test_pending_with_null()
57
last = wt1.branch.last_revision()
58
self.assertEquals(common_ancestor(last, last, wt1.branch.repository), last)
60
def test_create_rename(self):
61
"""Rename an inventory entry while creating the file"""
62
tree =self.make_branch_and_tree('.')
63
file('name1', 'wb').write('Hello')
65
tree.commit(message="hello")
66
tree.rename_one('name1', 'name2')
68
transform_tree(tree, tree.branch.basis_tree())
70
def test_layered_rename(self):
71
"""Rename both child and parent at same time"""
72
tree =self.make_branch_and_tree('.')
75
filename = pathjoin('dirname1', 'name1')
76
file(filename, 'wb').write('Hello')
78
tree.commit(message="hello")
79
filename2 = pathjoin('dirname1', 'name2')
80
tree.rename_one(filename, filename2)
81
tree.rename_one('dirname1', 'dirname2')
82
transform_tree(tree, tree.branch.basis_tree())