20
from bzrlib.tests import TestCaseWithTransport, TestCase
20
from bzrlib.tests import TestCaseWithTransport
21
21
from bzrlib.branch import Branch
22
from bzrlib.conflicts import *
22
from bzrlib.conflicts import restore
23
23
from bzrlib.errors import NotConflicted
26
25
# TODO: Test commit with some added, and added-but-missing files
27
26
# RBC 20060124 is that not tested in test_commit.py ?
29
# The order of 'path' here is important - do not let it
31
example_conflicts = ConflictList([
32
MissingParent('Not deleting', 'pathg', 'idg'),
33
ContentsConflict('patha', 'ida'),
34
TextConflict('patha'),
35
PathConflict('pathb', 'pathc', 'idb'),
36
DuplicateID('Unversioned existing file', 'pathc', 'pathc2', 'idc', 'idc'),
37
DuplicateEntry('Moved existing file to', 'pathdd.moved', 'pathd', 'idd',
39
ParentLoop('Cancelled move', 'pathe', 'path2e', None, 'id2e'),
40
UnversionedParent('Versioned directory', 'pathf', 'idf'),
44
28
class TestConflicts(TestCaseWithTransport):
46
30
def test_conflicts(self):
47
31
"""Conflicts are detected properly"""
48
tree = self.make_branch_and_tree('.',
49
format=bzrlib.bzrdir.BzrDirFormat6())
32
tree = self.make_branch_and_tree('.')
51
34
file('hello', 'w').write('hello world4')
52
35
file('hello.THIS', 'w').write('hello world2')
55
38
file('hello.sploo.BASE', 'w').write('yellow world')
56
39
file('hello.sploo.OTHER', 'w').write('yellow world2')
57
40
self.assertEqual(len(list(tree.list_files())), 6)
58
conflicts = tree.conflicts()
41
conflicts = list(tree.iter_conflicts())
59
42
self.assertEqual(len(conflicts), 2)
60
self.assert_('hello' in conflicts[0].path)
61
self.assert_('hello.sploo' in conflicts[1].path)
43
self.assert_('hello' in conflicts)
44
self.assert_('hello.sploo' in conflicts)
63
46
restore('hello.sploo')
64
self.assertEqual(len(tree.conflicts()), 0)
47
self.assertEqual(len(list(tree.iter_conflicts())), 0)
65
48
self.assertFileEqual('hello world2', 'hello')
66
49
assert not os.path.lexists('hello.sploo')
67
50
self.assertRaises(NotConflicted, restore, 'hello')
68
51
self.assertRaises(NotConflicted, restore, 'hello.sploo')
70
def test_resolve_conflict_dir(self):
71
tree = self.make_branch_and_tree('.')
73
file('hello', 'w').write('hello world4')
74
tree.add('hello', 'q')
75
file('hello.THIS', 'w').write('hello world2')
76
file('hello.BASE', 'w').write('hello world1')
77
os.mkdir('hello.OTHER')
78
l = ConflictList([TextConflict('hello')])
82
class TestConflictStanzas(TestCase):
84
def test_stanza_roundtrip(self):
85
# write and read our example stanza.
86
stanza_iter = example_conflicts.to_stanzas()
87
processed = ConflictList.from_stanzas(stanza_iter)
88
for o,p in zip(processed, example_conflicts):
89
self.assertEqual(o, p)
91
def test_stanzification(self):
92
for stanza in example_conflicts.to_stanzas():
94
self.assertStartsWith(stanza['file_id'], 'id')
97
self.assertStartsWith(stanza['path'], 'path')
99
self.assertStartsWith(stanza['conflict_file_id'], 'id')
100
self.assertStartsWith(stanza['conflict_file_path'], 'path')