13
13
# You should have received a copy of the GNU General Public License
14
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
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
from bzrlib import bzrdir
21
21
from bzrlib.tests import TestCaseWithTransport, TestCase
22
22
from bzrlib.branch import Branch
23
from bzrlib.conflicts import (MissingParent, ContentsConflict, TextConflict,
24
PathConflict, DuplicateID, DuplicateEntry, ParentLoop, UnversionedParent,
23
from bzrlib.conflicts import (
27
37
from bzrlib.errors import NotConflicted
35
45
# u'\xe5' == a with circle
36
46
# '\xc3\xae' == u'\xee' == i with hat
37
47
# So these are u'pathg' and 'idg' only with a circle and a hat. (shappo?)
38
example_conflicts = ConflictList([
48
example_conflicts = ConflictList([
39
49
MissingParent('Not deleting', u'p\xe5thg', '\xc3\xaedg'),
40
ContentsConflict(u'p\xe5tha', None, '\xc3\xaeda'),
50
ContentsConflict(u'p\xe5tha', None, '\xc3\xaeda'),
41
51
TextConflict(u'p\xe5tha'),
42
52
PathConflict(u'p\xe5thb', u'p\xe5thc', '\xc3\xaedb'),
43
53
DuplicateID('Unversioned existing file', u'p\xe5thc', u'p\xe5thc2',
47
57
ParentLoop('Cancelled move', u'p\xe5the', u'p\xe5th2e',
48
58
None, '\xc3\xaed2e'),
49
59
UnversionedParent('Versioned directory', u'p\xe5thf', '\xc3\xaedf'),
60
NonDirectoryParent('Created directory', u'p\xe5thg', '\xc3\xaedg'),
74
85
restore('hello.sploo')
75
86
self.assertEqual(len(tree.conflicts()), 0)
76
87
self.assertFileEqual('hello world2', 'hello')
77
assert not os.path.lexists('hello.sploo')
88
self.assertFalse(os.path.lexists('hello.sploo'))
78
89
self.assertRaises(NotConflicted, restore, 'hello')
79
90
self.assertRaises(NotConflicted, restore, 'hello.sploo')
89
100
l = ConflictList([TextConflict('hello')])
90
101
l.remove_files(tree)
103
def test_select_conflicts(self):
104
tree = self.make_branch_and_tree('.')
105
tree_conflicts = ConflictList([ContentsConflict('foo'),
106
ContentsConflict('bar')])
107
self.assertEqual((ConflictList([ContentsConflict('bar')]),
108
ConflictList([ContentsConflict('foo')])),
109
tree_conflicts.select_conflicts(tree, ['foo']))
110
self.assertEqual((ConflictList(), tree_conflicts),
111
tree_conflicts.select_conflicts(tree, [''],
112
ignore_misses=True, recurse=True))
113
tree_conflicts = ConflictList([ContentsConflict('foo/baz'),
114
ContentsConflict('bar')])
115
self.assertEqual((ConflictList([ContentsConflict('bar')]),
116
ConflictList([ContentsConflict('foo/baz')])),
117
tree_conflicts.select_conflicts(tree, ['foo'],
120
tree_conflicts = ConflictList([PathConflict('qux', 'foo/baz')])
121
self.assertEqual((ConflictList(), tree_conflicts),
122
tree_conflicts.select_conflicts(tree, ['foo'],
125
self.assertEqual((tree_conflicts, ConflictList()),
126
tree_conflicts.select_conflicts(tree, ['foo'],
129
def test_resolve_conflicts_recursive(self):
130
tree = self.make_branch_and_tree('.')
131
self.build_tree(['dir/', 'dir/hello'])
132
tree.add(['dir', 'dir/hello'])
133
tree.set_conflicts(ConflictList([TextConflict('dir/hello')]))
134
resolve(tree, ['dir'], recursive=False, ignore_misses=True)
135
self.assertEqual(ConflictList([TextConflict('dir/hello')]),
137
resolve(tree, ['dir'], recursive=True, ignore_misses=True)
138
self.assertEqual(ConflictList([]),
93
142
class TestConflictStanzas(TestCase):