##// END OF EJS Templates
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
tests: replace use of assertEquals with assertEqual in test-simplemerge.py The former is deprecated. No functionality change. # skip-blame just removing an ess and some whitespace Differential Revision: https://phab.mercurial-scm.org/D3491

File last commit:

r37908:a3ed6e72 default
r37908:a3ed6e72 default
Show More
test-simplemerge.py
365 lines | 12.1 KiB | text/x-python | PythonLexer
/ tests / test-simplemerge.py
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 # Copyright (C) 2004, 2005 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
Martin Geisler
Remove FSF mailing address from GPL headers...
r15782 # along with this program; if not, see <http://www.gnu.org/licenses/>.
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Pulkit Goyal
tests: make test-simplemerge use absolute_import
r28927 from __future__ import absolute_import
Alexis S. L. Carvalho
actually port simplemerge to hg...
r4363 import unittest
Pulkit Goyal
tests: make test-simplemerge use absolute_import
r28927 from mercurial import (
error,
simplemerge,
util,
)
Matt Mackall
merge: move the bulk of simplemerge into core...
r6002
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 from mercurial.utils import (
stringutil,
)
Pulkit Goyal
tests: make test-simplemerge use absolute_import
r28927 TestCase = unittest.TestCase
Matt Mackall
merge: move the bulk of simplemerge into core...
r6002 # bzr compatible interface, for the tests
class Merge3(simplemerge.Merge3Text):
"""3-way merge of texts.
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Matt Mackall
merge: move the bulk of simplemerge into core...
r6002 Given BASE, OTHER, THIS, tries to produce a combined text
incorporating the changes from both BASE->OTHER and BASE->THIS.
All three will typically be sequences of lines."""
def __init__(self, base, a, b):
basetext = '\n'.join([i.strip('\n') for i in base] + [''])
atext = '\n'.join([i.strip('\n') for i in a] + [''])
btext = '\n'.join([i.strip('\n') for i in b] + [''])
Yuya Nishihara
stringutil: bulk-replace call sites to point to new module...
r37102 if (stringutil.binary(basetext) or stringutil.binary(atext)
or stringutil.binary(btext)):
Pierre-Yves David
error: get Abort from 'error' instead of 'util'...
r26587 raise error.Abort("don't know how to merge binary files")
Matt Mackall
merge: move the bulk of simplemerge into core...
r6002 simplemerge.Merge3Text.__init__(self, basetext, atext, btext,
base, a, b)
Alexis S. L. Carvalho
actually port simplemerge to hg...
r4363 CantReprocessAndShowBase = simplemerge.CantReprocessAndShowBase
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def split_lines(t):
timeless
pycompat: switch to util.stringio for py3 compat
r28861 return util.stringio(t).readlines()
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
############################################################
# test case data from the gnu diffutils manual
# common base
TZU = split_lines(""" The Nameless is the origin of Heaven and Earth;
The named is the mother of all things.
Thomas Arendsen Hein
Removed trailing whitespace and tabs from python files
r4516
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 Therefore let there always be non-being,
so we may see their subtlety,
And let there always be being,
so we may see their outcome.
The two are the same,
But after they are produced,
they have different names.
They both may be called deep and profound.
Deeper and more profound,
The door of all subtleties!
""")
LAO = split_lines(""" The Way that can be told of is not the eternal Way;
The name that can be named is not the eternal name.
The Nameless is the origin of Heaven and Earth;
The Named is the mother of all things.
Therefore let there always be non-being,
so we may see their subtlety,
And let there always be being,
so we may see their outcome.
The two are the same,
But after they are produced,
they have different names.
""")
TAO = split_lines(""" The Way that can be told of is not the eternal Way;
The name that can be named is not the eternal name.
The Nameless is the origin of Heaven and Earth;
The named is the mother of all things.
Thomas Arendsen Hein
Removed trailing whitespace and tabs from python files
r4516
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 Therefore let there always be non-being,
so we may see their subtlety,
And let there always be being,
so we may see their result.
The two are the same,
But after they are produced,
they have different names.
Thomas Arendsen Hein
Removed trailing whitespace and tabs from python files
r4516
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 -- The Way of Lao-Tzu, tr. Wing-tsit Chan
""")
Matt Mackall
many, many trivial check-code fixups
r10282 MERGED_RESULT = split_lines("""\
The Way that can be told of is not the eternal Way;
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 The name that can be named is not the eternal name.
The Nameless is the origin of Heaven and Earth;
The Named is the mother of all things.
Therefore let there always be non-being,
so we may see their subtlety,
And let there always be being,
so we may see their result.
The two are the same,
But after they are produced,
they have different names.
<<<<<<< LAO
=======
Thomas Arendsen Hein
Removed trailing whitespace and tabs from python files
r4516
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 -- The Way of Lao-Tzu, tr. Wing-tsit Chan
>>>>>>> TAO
""")
class TestMerge3(TestCase):
Alexis S. L. Carvalho
actually port simplemerge to hg...
r4363 def log(self, msg):
pass
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_no_changes(self):
"""No conflicts because nothing changed"""
m3 = Merge3(['aaa', 'bbb'],
['aaa', 'bbb'],
['aaa', 'bbb'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(m3.find_unconflicted(),
[(0, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.find_sync_regions()),
[(0, 2,
0, 2,
0, 2),
(2, 2, 2, 2, 2, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_regions()),
[('unchanged', 0, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_groups()),
[('unchanged', ['aaa', 'bbb'])])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_front_insert(self):
m3 = Merge3(['zz'],
['aaa', 'bbb', 'zz'],
['zz'])
timeless@mozdev.org
spelling: sentinel
r17513 # todo: should use a sentinel at end as from get_matching_blocks
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 # to match without zz
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.find_sync_regions()),
[(0, 1, 2, 3, 0, 1),
(1, 1, 3, 3, 1, 1)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_regions()),
[('a', 0, 2),
('unchanged', 0, 1)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_groups()),
[('a', ['aaa', 'bbb']),
('unchanged', ['zz'])])
Thomas Arendsen Hein
Removed trailing whitespace and tabs from python files
r4516
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 def test_null_insert(self):
m3 = Merge3([],
['aaa', 'bbb'],
[])
timeless@mozdev.org
spelling: sentinel
r17513 # todo: should use a sentinel at end as from get_matching_blocks
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 # to match without zz
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.find_sync_regions()),
[(0, 0, 2, 2, 0, 0)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_regions()),
[('a', 0, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_lines()),
['aaa', 'bbb'])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_no_conflicts(self):
"""No conflicts because only one side changed"""
m3 = Merge3(['aaa', 'bbb'],
['aaa', '111', 'bbb'],
['aaa', 'bbb'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(m3.find_unconflicted(),
[(0, 1), (1, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.find_sync_regions()),
[(0, 1, 0, 1, 0, 1),
(1, 2, 2, 3, 1, 2),
(2, 2, 3, 3, 2, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_regions()),
[('unchanged', 0, 1),
('a', 1, 2),
('unchanged', 1, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_append_a(self):
m3 = Merge3(['aaa\n', 'bbb\n'],
['aaa\n', 'bbb\n', '222\n'],
['aaa\n', 'bbb\n'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(''.join(m3.merge_lines()),
'aaa\nbbb\n222\n')
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_append_b(self):
m3 = Merge3(['aaa\n', 'bbb\n'],
['aaa\n', 'bbb\n'],
['aaa\n', 'bbb\n', '222\n'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(''.join(m3.merge_lines()),
'aaa\nbbb\n222\n')
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_append_agreement(self):
m3 = Merge3(['aaa\n', 'bbb\n'],
['aaa\n', 'bbb\n', '222\n'],
['aaa\n', 'bbb\n', '222\n'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(''.join(m3.merge_lines()),
'aaa\nbbb\n222\n')
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_append_clash(self):
m3 = Merge3(['aaa\n', 'bbb\n'],
['aaa\n', 'bbb\n', '222\n'],
['aaa\n', 'bbb\n', '333\n'])
ml = m3.merge_lines(name_a='a',
name_b='b',
start_marker='<<',
mid_marker='--',
end_marker='>>')
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(''.join(ml),
'aaa\n'
'bbb\n'
'<< a\n'
'222\n'
'--\n'
'333\n'
'>> b\n'
Thomas Arendsen Hein
Cleanup of whitespace, indentation and line continuation.
r4633 )
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_insert_agreement(self):
m3 = Merge3(['aaa\n', 'bbb\n'],
['aaa\n', '222\n', 'bbb\n'],
['aaa\n', '222\n', 'bbb\n'])
ml = m3.merge_lines(name_a='a',
name_b='b',
start_marker='<<',
mid_marker='--',
end_marker='>>')
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(''.join(ml), 'aaa\n222\nbbb\n')
Thomas Arendsen Hein
Removed trailing whitespace and tabs from python files
r4516
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_insert_clash(self):
"""Both try to insert lines in the same place."""
m3 = Merge3(['aaa\n', 'bbb\n'],
['aaa\n', '111\n', 'bbb\n'],
['aaa\n', '222\n', 'bbb\n'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(m3.find_unconflicted(),
[(0, 1), (1, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.find_sync_regions()),
[(0, 1, 0, 1, 0, 1),
(1, 2, 2, 3, 2, 3),
(2, 2, 3, 3, 3, 3)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_regions()),
[('unchanged', 0, 1),
('conflict', 1, 1, 1, 2, 1, 2),
('unchanged', 1, 2)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.merge_groups()),
[('unchanged', ['aaa\n']),
('conflict', [], ['111\n'], ['222\n']),
('unchanged', ['bbb\n']),
])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
ml = m3.merge_lines(name_a='a',
name_b='b',
start_marker='<<',
mid_marker='--',
end_marker='>>')
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(''.join(ml),
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362 '''aaa
<< a
111
--
222
>> b
bbb
''')
def test_replace_clash(self):
"""Both try to insert lines in the same place."""
m3 = Merge3(['aaa', '000', 'bbb'],
['aaa', '111', 'bbb'],
['aaa', '222', 'bbb'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(m3.find_unconflicted(),
[(0, 1), (2, 3)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.find_sync_regions()),
[(0, 1, 0, 1, 0, 1),
(2, 3, 2, 3, 2, 3),
(3, 3, 3, 3, 3, 3)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_replace_multi(self):
"""Replacement with regions of different size."""
m3 = Merge3(['aaa', '000', '000', 'bbb'],
['aaa', '111', '111', '111', 'bbb'],
['aaa', '222', '222', '222', '222', 'bbb'])
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(m3.find_unconflicted(),
[(0, 1), (3, 4)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(list(m3.find_sync_regions()),
[(0, 1, 0, 1, 0, 1),
(3, 4, 4, 5, 5, 6),
(4, 4, 5, 5, 6, 6)])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_merge_poem(self):
"""Test case from diff3 manual"""
m3 = Merge3(TZU, LAO, TAO)
ml = list(m3.merge_lines('LAO', 'TAO'))
self.log('merge result:')
self.log(''.join(ml))
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 self.assertEqual(ml, MERGED_RESULT)
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_binary(self):
Gregory Szorc
tests: use context manager form of assertRaises...
r32279 with self.assertRaises(error.Abort):
Merge3(['\x00'], ['a'], ['b'])
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_dos_text(self):
base_text = 'a\r\n'
this_text = 'b\r\n'
other_text = 'c\r\n'
m3 = Merge3(base_text.splitlines(True), other_text.splitlines(True),
this_text.splitlines(True))
m_lines = m3.merge_lines('OTHER', 'THIS')
self.assertEqual('<<<<<<< OTHER\r\nc\r\n=======\r\nb\r\n'
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 '>>>>>>> THIS\r\n'.splitlines(True), list(m_lines))
Alexis S. L. Carvalho
Import 3-way merge code from bzr...
r4362
def test_mac_text(self):
base_text = 'a\r'
this_text = 'b\r'
other_text = 'c\r'
m3 = Merge3(base_text.splitlines(True), other_text.splitlines(True),
this_text.splitlines(True))
m_lines = m3.merge_lines('OTHER', 'THIS')
self.assertEqual('<<<<<<< OTHER\rc\r=======\rb\r'
Augie Fackler
tests: replace use of assertEquals with assertEqual in test-simplemerge.py...
r37908 '>>>>>>> THIS\r'.splitlines(True), list(m_lines))
Alexis S. L. Carvalho
actually port simplemerge to hg...
r4363
if __name__ == '__main__':
# hide the timer
import time
orig = time.time
try:
time.time = lambda: 0
unittest.main()
finally:
time.time = orig