68
class TestDiffOptions(tests.TestCase):
70
def test_unified_added(self):
71
"""Check for default style '-u' only if no other style specified
74
# Verify that style defaults to unified, id est '-u' appended
75
# to option list, in the absence of an alternative style.
76
self.assertEqual(['-a', '-u'], diff.default_style_unified(['-a']))
79
class TestDiffOptionsScenarios(tests.TestCase):
81
scenarios = [(s, dict(style=s)) for s in diff.style_option_list]
82
style = None # Set by load_tests_apply_scenarios from scenarios
84
def test_unified_not_added(self):
85
# Verify that for all valid style options, '-u' is not
86
# appended to option list.
87
ret_opts = diff.default_style_unified(diff_opts=["%s" % (self.style,)])
88
self.assertEqual(["%s" % (self.style,)], ret_opts)
66
91
class TestDiff(tests.TestCase):
68
93
def test_add_nl(self):
69
94
"""diff generates a valid diff for patches that add a newline"""
70
95
lines = udiff_lines(['boo'], ['boo\n'])
71
96
self.check_patch(lines)
72
self.assertEquals(lines[4], '\\ No newline at end of file\n')
97
self.assertEqual(lines[4], '\\ No newline at end of file\n')
73
98
## "expected no-nl, got %r" % lines[4]
75
100
def test_add_nl_2(self):
88
113
lines = udiff_lines(['boo\n'], ['boo'])
89
114
self.check_patch(lines)
90
self.assertEquals(lines[5], '\\ No newline at end of file\n')
115
self.assertEqual(lines[5], '\\ No newline at end of file\n')
91
116
## "expected no-nl, got %r" % lines[5]
93
118
def check_patch(self, lines):
94
self.assert_(len(lines) > 1)
119
self.assertTrue(len(lines) > 1)
95
120
## "Not enough lines for a file header for patch:\n%s" % "".join(lines)
96
self.assert_(lines[0].startswith ('---'))
121
self.assertTrue(lines[0].startswith ('---'))
97
122
## 'No orig line for patch:\n%s' % "".join(lines)
98
self.assert_(lines[1].startswith ('+++'))
123
self.assertTrue(lines[1].startswith ('+++'))
99
124
## 'No mod line for patch:\n%s' % "".join(lines)
100
self.assert_(len(lines) > 2)
125
self.assertTrue(len(lines) > 2)
101
126
## "No hunks for patch:\n%s" % "".join(lines)
102
self.assert_(lines[2].startswith('@@'))
127
self.assertTrue(lines[2].startswith('@@'))
103
128
## "No hunk header for patch:\n%s" % "".join(lines)
104
self.assert_('@@' in lines[2][2:])
129
self.assertTrue('@@' in lines[2][2:])
105
130
## "Unterminated hunk header for patch:\n%s" % "".join(lines)
107
132
def test_binary_lines(self):
839
864
b = ''.join([unichr(i) for i in range(4300, 4800, 2)])
840
865
sm = self._PatienceSequenceMatcher(None, a, b)
841
866
mb = sm.get_matching_blocks()
842
self.assertEquals(35, len(mb))
867
self.assertEqual(35, len(mb))
844
869
def test_unique_lcs(self):
845
870
unique_lcs = self._unique_lcs
846
self.assertEquals(unique_lcs('', ''), [])
847
self.assertEquals(unique_lcs('', 'a'), [])
848
self.assertEquals(unique_lcs('a', ''), [])
849
self.assertEquals(unique_lcs('a', 'a'), [(0,0)])
850
self.assertEquals(unique_lcs('a', 'b'), [])
851
self.assertEquals(unique_lcs('ab', 'ab'), [(0,0), (1,1)])
852
self.assertEquals(unique_lcs('abcde', 'cdeab'), [(2,0), (3,1), (4,2)])
853
self.assertEquals(unique_lcs('cdeab', 'abcde'), [(0,2), (1,3), (2,4)])
854
self.assertEquals(unique_lcs('abXde', 'abYde'), [(0,0), (1,1),
871
self.assertEqual(unique_lcs('', ''), [])
872
self.assertEqual(unique_lcs('', 'a'), [])
873
self.assertEqual(unique_lcs('a', ''), [])
874
self.assertEqual(unique_lcs('a', 'a'), [(0,0)])
875
self.assertEqual(unique_lcs('a', 'b'), [])
876
self.assertEqual(unique_lcs('ab', 'ab'), [(0,0), (1,1)])
877
self.assertEqual(unique_lcs('abcde', 'cdeab'), [(2,0), (3,1), (4,2)])
878
self.assertEqual(unique_lcs('cdeab', 'abcde'), [(0,2), (1,3), (2,4)])
879
self.assertEqual(unique_lcs('abXde', 'abYde'), [(0,0), (1,1),
856
self.assertEquals(unique_lcs('acbac', 'abc'), [(2,1)])
881
self.assertEqual(unique_lcs('acbac', 'abc'), [(2,1)])
858
883
def test_recurse_matches(self):
859
884
def test_one(a, b, matches):
860
885
test_matches = []
861
886
self._recurse_matches(
862
887
a, b, 0, 0, len(a), len(b), test_matches, 10)
863
self.assertEquals(test_matches, matches)
888
self.assertEqual(test_matches, matches)
865
890
test_one(['a', '', 'b', '', 'c'], ['a', 'a', 'b', 'c', 'c'],
866
891
[(0, 0), (2, 2), (4, 4)])
1471
1495
def test_encodable_filename(self):
1472
1496
# Just checks file path for external diff tool.
1473
1497
# We cannot change CPython's internal encoding used by os.exec*.
1475
1498
diffobj = diff.DiffFromTool(['dummy', '@old_path', '@new_path'],
1476
1499
None, None, None)
1477
1500
for _, scenario in EncodingAdapter.encoding_scenarios:
1478
1501
encoding = scenario['encoding']
1479
dirname = scenario['info']['directory']
1502
dirname = scenario['info']['directory']
1480
1503
filename = scenario['info']['filename']
1482
1505
self.overrideAttr(diffobj, '_fenc', lambda: encoding)
1483
1506
relpath = dirname + u'/' + filename
1484
1507
fullpath = diffobj._safe_filename('safe', relpath)
1487
fullpath.encode(encoding).decode(encoding)
1489
self.assert_(fullpath.startswith(diffobj._root + '/safe'))
1508
self.assertEqual(fullpath,
1509
fullpath.encode(encoding).decode(encoding))
1510
self.assertTrue(fullpath.startswith(diffobj._root + '/safe'))
1491
1512
def test_unencodable_filename(self):
1493
1513
diffobj = diff.DiffFromTool(['dummy', '@old_path', '@new_path'],
1494
1514
None, None, None)
1495
1515
for _, scenario in EncodingAdapter.encoding_scenarios:
1496
1516
encoding = scenario['encoding']
1497
dirname = scenario['info']['directory']
1517
dirname = scenario['info']['directory']
1498
1518
filename = scenario['info']['filename']
1500
1520
if encoding == 'iso-8859-1':