1
# Copyright (C) 2005 by Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20
from bzrlib.tests import TestCaseWithTransport, TestCase
21
from bzrlib.branch import Branch
22
from bzrlib.conflicts import *
23
from bzrlib.errors import NotConflicted
26
# TODO: Test commit with some added, and added-but-missing files
27
# RBC 20060124 is that not tested in test_commit.py ?
29
example_conflicts = ConflictList([
30
ContentsConflict('patha', 'ida'),
31
TextConflict('patha'),
32
PathConflict('pathb', 'pathc', 'idb'),
33
DuplicateID('Unversioned existing file', 'pathc', 'pathc2', 'idc', 'idc'),
34
DuplicateEntry('Moved existing file to', 'pathdd.moved', 'pathd', 'idd',
36
ParentLoop('Cancelled move', 'pathe', 'path2e', None, 'id2e'),
37
UnversionedParent('Versioned directory', 'pathf', 'idf'),
38
MissingParent('Not deleting', 'pathg', 'idg'),
42
class TestConflicts(TestCaseWithTransport):
44
def test_conflicts(self):
45
"""Conflicts are detected properly"""
46
tree = self.make_branch_and_tree('.')
48
file('hello', 'w').write('hello world4')
49
file('hello.THIS', 'w').write('hello world2')
50
file('hello.BASE', 'w').write('hello world1')
51
file('hello.OTHER', 'w').write('hello world3')
52
file('hello.sploo.BASE', 'w').write('yellow world')
53
file('hello.sploo.OTHER', 'w').write('yellow world2')
54
self.assertEqual(len(list(tree.list_files())), 6)
55
conflicts = tree.conflicts()
56
self.assertEqual(len(conflicts), 2)
57
self.assert_('hello' in conflicts[0].path)
58
self.assert_('hello.sploo' in conflicts[1].path)
60
restore('hello.sploo')
61
self.assertEqual(len(tree.conflicts()), 0)
62
self.assertFileEqual('hello world2', 'hello')
63
assert not os.path.lexists('hello.sploo')
64
self.assertRaises(NotConflicted, restore, 'hello')
65
self.assertRaises(NotConflicted, restore, 'hello.sploo')
68
class TestConflictStanzas(TestCase):
69
def test_stanza_roundtrip(self):
70
stanza_iter = example_conflicts.to_stanzas()
71
processed = ConflictList.from_stanzas(stanza_iter)
72
for o,p in zip(processed, example_conflicts):
73
self.assertEqual(o, p)
75
def test_stanzification(self):
76
for stanza in example_conflicts.to_stanzas():
78
self.assertStartsWith(stanza['file_id'], 'id')
81
self.assertStartsWith(stanza['path'], 'path')
83
self.assertStartsWith(stanza['conflict_file_id'], 'id')
84
self.assertStartsWith(stanza['conflict_file_path'], 'path')