1
# Copyright (C) 2005-2010 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23
from bzrlib.merge3 import Merge3
24
from bzrlib.errors import CantReprocessAndShowBase, BinaryFile
27
from cStringIO import StringIO
28
return StringIO(t).readlines()
30
############################################################
31
# test case data from the gnu diffutils manual
33
TZU = split_lines(""" The Nameless is the origin of Heaven and Earth;
34
The named is the mother of all things.
36
Therefore let there always be non-being,
37
so we may see their subtlety,
38
And let there always be being,
39
so we may see their outcome.
41
But after they are produced,
42
they have different names.
43
They both may be called deep and profound.
44
Deeper and more profound,
45
The door of all subtleties!
48
LAO = split_lines(""" The Way that can be told of is not the eternal Way;
49
The name that can be named is not the eternal name.
50
The Nameless is the origin of Heaven and Earth;
51
The Named is the mother of all things.
52
Therefore let there always be non-being,
53
so we may see their subtlety,
54
And let there always be being,
55
so we may see their outcome.
57
But after they are produced,
58
they have different names.
62
TAO = split_lines(""" The Way that can be told of is not the eternal Way;
63
The name that can be named is not the eternal name.
64
The Nameless is the origin of Heaven and Earth;
65
The named is the mother of all things.
67
Therefore let there always be non-being,
68
so we may see their subtlety,
69
And let there always be being,
70
so we may see their result.
72
But after they are produced,
73
they have different names.
75
-- The Way of Lao-Tzu, tr. Wing-tsit Chan
79
MERGED_RESULT = split_lines(""" The Way that can be told of is not the eternal Way;
80
The name that can be named is not the eternal name.
81
The Nameless is the origin of Heaven and Earth;
82
The Named is the mother of all things.
83
Therefore let there always be non-being,
84
so we may see their subtlety,
85
And let there always be being,
86
so we may see their result.
88
But after they are produced,
89
they have different names.
93
-- The Way of Lao-Tzu, tr. Wing-tsit Chan
98
class TestMerge3(tests.TestCase):
100
def test_no_changes(self):
101
"""No conflicts because nothing changed"""
102
m3 = merge3.Merge3(['aaa', 'bbb'],
106
self.assertEquals(m3.find_unconflicted(),
109
self.assertEquals(list(m3.find_sync_regions()),
115
self.assertEquals(list(m3.merge_regions()),
116
[('unchanged', 0, 2)])
118
self.assertEquals(list(m3.merge_groups()),
119
[('unchanged', ['aaa', 'bbb'])])
121
def test_front_insert(self):
122
m3 = merge3.Merge3(['zz'],
123
['aaa', 'bbb', 'zz'],
126
# todo: should use a sentinal at end as from get_matching_blocks
127
# to match without zz
128
self.assertEquals(list(m3.find_sync_regions()),
132
self.assertEquals(list(m3.merge_regions()),
134
('unchanged', 0, 1)])
136
self.assertEquals(list(m3.merge_groups()),
137
[('a', ['aaa', 'bbb']),
138
('unchanged', ['zz'])])
140
def test_null_insert(self):
141
m3 = merge3.Merge3([],
144
# todo: should use a sentinal at end as from get_matching_blocks
145
# to match without zz
146
self.assertEquals(list(m3.find_sync_regions()),
149
self.assertEquals(list(m3.merge_regions()),
152
self.assertEquals(list(m3.merge_lines()),
155
def test_no_conflicts(self):
156
"""No conflicts because only one side changed"""
157
m3 = merge3.Merge3(['aaa', 'bbb'],
158
['aaa', '111', 'bbb'],
161
self.assertEquals(m3.find_unconflicted(),
164
self.assertEquals(list(m3.find_sync_regions()),
169
self.assertEquals(list(m3.merge_regions()),
170
[('unchanged', 0, 1),
172
('unchanged', 1, 2),])
174
def test_append_a(self):
175
m3 = merge3.Merge3(['aaa\n', 'bbb\n'],
176
['aaa\n', 'bbb\n', '222\n'],
179
self.assertEquals(''.join(m3.merge_lines()),
182
def test_append_b(self):
183
m3 = merge3.Merge3(['aaa\n', 'bbb\n'],
185
['aaa\n', 'bbb\n', '222\n'])
187
self.assertEquals(''.join(m3.merge_lines()),
190
def test_append_agreement(self):
191
m3 = merge3.Merge3(['aaa\n', 'bbb\n'],
192
['aaa\n', 'bbb\n', '222\n'],
193
['aaa\n', 'bbb\n', '222\n'])
195
self.assertEquals(''.join(m3.merge_lines()),
198
def test_append_clash(self):
199
m3 = merge3.Merge3(['aaa\n', 'bbb\n'],
200
['aaa\n', 'bbb\n', '222\n'],
201
['aaa\n', 'bbb\n', '333\n'])
203
ml = m3.merge_lines(name_a='a',
208
self.assertEquals(''.join(ml),
219
def test_insert_agreement(self):
220
m3 = merge3.Merge3(['aaa\n', 'bbb\n'],
221
['aaa\n', '222\n', 'bbb\n'],
222
['aaa\n', '222\n', 'bbb\n'])
224
ml = m3.merge_lines(name_a='a',
229
self.assertEquals(''.join(ml), 'aaa\n222\nbbb\n')
232
def test_insert_clash(self):
233
"""Both try to insert lines in the same place."""
234
m3 = merge3.Merge3(['aaa\n', 'bbb\n'],
235
['aaa\n', '111\n', 'bbb\n'],
236
['aaa\n', '222\n', 'bbb\n'])
238
self.assertEquals(m3.find_unconflicted(),
241
self.assertEquals(list(m3.find_sync_regions()),
246
self.assertEquals(list(m3.merge_regions()),
248
('conflict', 1,1, 1,2, 1,2),
251
self.assertEquals(list(m3.merge_groups()),
252
[('unchanged', ['aaa\n']),
253
('conflict', [], ['111\n'], ['222\n']),
254
('unchanged', ['bbb\n']),
257
ml = m3.merge_lines(name_a='a',
262
self.assertEquals(''.join(ml),
272
def test_replace_clash(self):
273
"""Both try to insert lines in the same place."""
274
m3 = merge3.Merge3(['aaa', '000', 'bbb'],
275
['aaa', '111', 'bbb'],
276
['aaa', '222', 'bbb'])
278
self.assertEquals(m3.find_unconflicted(),
281
self.assertEquals(list(m3.find_sync_regions()),
286
def test_replace_multi(self):
287
"""Replacement with regions of different size."""
288
m3 = merge3.Merge3(['aaa', '000', '000', 'bbb'],
289
['aaa', '111', '111', '111', 'bbb'],
290
['aaa', '222', '222', '222', '222', 'bbb'])
292
self.assertEquals(m3.find_unconflicted(),
296
self.assertEquals(list(m3.find_sync_regions()),
301
def test_merge_poem(self):
302
"""Test case from diff3 manual"""
303
m3 = merge3.Merge3(TZU, LAO, TAO)
304
ml = list(m3.merge_lines('LAO', 'TAO'))
305
self.log('merge result:')
306
self.log(''.join(ml))
307
self.assertEquals(ml, MERGED_RESULT)
309
def test_minimal_conflicts_common(self):
311
base_text = ("a\n" * 20).splitlines(True)
312
this_text = ("a\n"*10+"b\n" * 10).splitlines(True)
313
other_text = ("a\n"*10+"c\n"+"b\n" * 8 + "c\n").splitlines(True)
314
m3 = merge3.Merge3(base_text, other_text, this_text)
315
m_lines = m3.merge_lines('OTHER', 'THIS', reprocess=True)
316
merged_text = "".join(list(m_lines))
317
optimal_text = ("a\n" * 10 + "<<<<<<< OTHER\nc\n"
318
+ 8* "b\n" + "c\n=======\n"
319
+ 10*"b\n" + ">>>>>>> THIS\n")
320
self.assertEqualDiff(optimal_text, merged_text)
322
def test_minimal_conflicts_unique(self):
324
"""Add a newline to each entry in the string"""
325
return [(x+'\n') for x in s]
327
base_text = add_newline("abcdefghijklm")
328
this_text = add_newline("abcdefghijklmNOPQRSTUVWXYZ")
329
other_text = add_newline("abcdefghijklm1OPQRSTUVWXY2")
330
m3 = merge3.Merge3(base_text, other_text, this_text)
331
m_lines = m3.merge_lines('OTHER', 'THIS', reprocess=True)
332
merged_text = "".join(list(m_lines))
333
optimal_text = ''.join(add_newline("abcdefghijklm")
334
+ ["<<<<<<< OTHER\n1\n=======\nN\n>>>>>>> THIS\n"]
335
+ add_newline('OPQRSTUVWXY')
336
+ ["<<<<<<< OTHER\n2\n=======\nZ\n>>>>>>> THIS\n"]
338
self.assertEqualDiff(optimal_text, merged_text)
340
def test_minimal_conflicts_nonunique(self):
342
"""Add a newline to each entry in the string"""
343
return [(x+'\n') for x in s]
345
base_text = add_newline("abacddefgghij")
346
this_text = add_newline("abacddefgghijkalmontfprz")
347
other_text = add_newline("abacddefgghijknlmontfprd")
348
m3 = merge3.Merge3(base_text, other_text, this_text)
349
m_lines = m3.merge_lines('OTHER', 'THIS', reprocess=True)
350
merged_text = "".join(list(m_lines))
351
optimal_text = ''.join(add_newline("abacddefgghijk")
352
+ ["<<<<<<< OTHER\nn\n=======\na\n>>>>>>> THIS\n"]
353
+ add_newline('lmontfpr')
354
+ ["<<<<<<< OTHER\nd\n=======\nz\n>>>>>>> THIS\n"]
356
self.assertEqualDiff(optimal_text, merged_text)
358
def test_reprocess_and_base(self):
359
"""Reprocessing and showing base breaks correctly"""
360
base_text = ("a\n" * 20).splitlines(True)
361
this_text = ("a\n"*10+"b\n" * 10).splitlines(True)
362
other_text = ("a\n"*10+"c\n"+"b\n" * 8 + "c\n").splitlines(True)
363
m3 = merge3.Merge3(base_text, other_text, this_text)
364
m_lines = m3.merge_lines('OTHER', 'THIS', reprocess=True,
365
base_marker='|||||||')
366
self.assertRaises(CantReprocessAndShowBase, list, m_lines)
368
def test_binary(self):
369
self.assertRaises(BinaryFile, merge3.Merge3, ['\x00'], ['a'], ['b'])
371
def test_dos_text(self):
375
m3 = merge3.Merge3(base_text.splitlines(True),
376
other_text.splitlines(True),
377
this_text.splitlines(True))
378
m_lines = m3.merge_lines('OTHER', 'THIS')
379
self.assertEqual('<<<<<<< OTHER\r\nc\r\n=======\r\nb\r\n'
380
'>>>>>>> THIS\r\n'.splitlines(True), list(m_lines))
382
def test_mac_text(self):
386
m3 = merge3.Merge3(base_text.splitlines(True),
387
other_text.splitlines(True),
388
this_text.splitlines(True))
389
m_lines = m3.merge_lines('OTHER', 'THIS')
390
self.assertEqual('<<<<<<< OTHER\rc\r=======\rb\r'
391
'>>>>>>> THIS\r'.splitlines(True), list(m_lines))
393
def test_merge3_cherrypick(self):
396
other_text = "a\nb\nc\n"
397
# When cherrypicking, lines in base are not part of the conflict
398
m3 = merge3.Merge3(base_text.splitlines(True),
399
this_text.splitlines(True),
400
other_text.splitlines(True), is_cherrypick=True)
401
m_lines = m3.merge_lines()
402
self.assertEqualDiff('a\n<<<<<<<\n=======\nc\n>>>>>>>\n',
405
# This is not symmetric
406
m3 = merge3.Merge3(base_text.splitlines(True),
407
other_text.splitlines(True),
408
this_text.splitlines(True), is_cherrypick=True)
409
m_lines = m3.merge_lines()
410
self.assertEqualDiff('a\n<<<<<<<\nb\nc\n=======\n>>>>>>>\n',
413
def test_merge3_cherrypick_w_mixed(self):
414
base_text = 'a\nb\nc\nd\ne\n'
415
this_text = 'a\nb\nq\n'
416
other_text = 'a\nb\nc\nd\nf\ne\ng\n'
417
# When cherrypicking, lines in base are not part of the conflict
418
m3 = merge3.Merge3(base_text.splitlines(True),
419
this_text.splitlines(True),
420
other_text.splitlines(True), is_cherrypick=True)
421
m_lines = m3.merge_lines()
422
self.assertEqualDiff('a\n'
435
def test_allow_objects(self):
436
"""Objects other than strs may be used with Merge3 when
439
merge_groups and merge_regions work with non-str input. Methods that
440
return lines like merge_lines fail.
442
base = [(x,x) for x in 'abcde']
443
a = [(x,x) for x in 'abcdef']
444
b = [(x,x) for x in 'Zabcde']
445
m3 = merge3.Merge3(base, a, b, allow_objects=True)
450
list(m3.merge_regions()))
452
[('b', [('Z', 'Z')]),
453
('unchanged', [(x,x) for x in 'abcde']),
454
('a', [('f', 'f')])],
455
list(m3.merge_groups()))