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):
211
236
self.assertIsInstance(output.getvalue(), str,
212
237
'internal_diff should return bytestrings')
239
def test_internal_diff_default_context(self):
241
diff.internal_diff('old', ['same_text\n','same_text\n','same_text\n',
242
'same_text\n','same_text\n','old_text\n'],
243
'new', ['same_text\n','same_text\n','same_text\n',
244
'same_text\n','same_text\n','new_text\n'], output)
245
lines = output.getvalue().splitlines(True)
246
self.check_patch(lines)
247
self.assertEqual(['--- old\n',
259
def test_internal_diff_no_context(self):
261
diff.internal_diff('old', ['same_text\n','same_text\n','same_text\n',
262
'same_text\n','same_text\n','old_text\n'],
263
'new', ['same_text\n','same_text\n','same_text\n',
264
'same_text\n','same_text\n','new_text\n'], output,
266
lines = output.getvalue().splitlines(True)
267
self.check_patch(lines)
268
self.assertEqual(['--- old\n',
277
def test_internal_diff_more_context(self):
279
diff.internal_diff('old', ['same_text\n','same_text\n','same_text\n',
280
'same_text\n','same_text\n','old_text\n'],
281
'new', ['same_text\n','same_text\n','same_text\n',
282
'same_text\n','same_text\n','new_text\n'], output,
284
lines = output.getvalue().splitlines(True)
285
self.check_patch(lines)
286
self.assertEqual(['--- old\n',
215
303
class TestDiffFiles(tests.TestCaseInTempDir):
220
308
lines = external_udiff_lines(['\x00foobar\n'], ['foo\x00bar\n'])
222
310
cmd = ['diff', '-u', '--binary', 'old', 'new']
223
open('old', 'wb').write('\x00foobar\n')
224
open('new', 'wb').write('foo\x00bar\n')
311
with open('old', 'wb') as f: f.write('\x00foobar\n')
312
with open('new', 'wb') as f: f.write('foo\x00bar\n')
225
313
pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE,
226
314
stdin=subprocess.PIPE)
227
315
out, err = pipe.communicate()
776
864
b = ''.join([unichr(i) for i in range(4300, 4800, 2)])
777
865
sm = self._PatienceSequenceMatcher(None, a, b)
778
866
mb = sm.get_matching_blocks()
779
self.assertEquals(35, len(mb))
867
self.assertEqual(35, len(mb))
781
869
def test_unique_lcs(self):
782
870
unique_lcs = self._unique_lcs
783
self.assertEquals(unique_lcs('', ''), [])
784
self.assertEquals(unique_lcs('', 'a'), [])
785
self.assertEquals(unique_lcs('a', ''), [])
786
self.assertEquals(unique_lcs('a', 'a'), [(0,0)])
787
self.assertEquals(unique_lcs('a', 'b'), [])
788
self.assertEquals(unique_lcs('ab', 'ab'), [(0,0), (1,1)])
789
self.assertEquals(unique_lcs('abcde', 'cdeab'), [(2,0), (3,1), (4,2)])
790
self.assertEquals(unique_lcs('cdeab', 'abcde'), [(0,2), (1,3), (2,4)])
791
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),
793
self.assertEquals(unique_lcs('acbac', 'abc'), [(2,1)])
881
self.assertEqual(unique_lcs('acbac', 'abc'), [(2,1)])
795
883
def test_recurse_matches(self):
796
884
def test_one(a, b, matches):
797
885
test_matches = []
798
886
self._recurse_matches(
799
887
a, b, 0, 0, len(a), len(b), test_matches, 10)
800
self.assertEquals(test_matches, matches)
888
self.assertEqual(test_matches, matches)
802
890
test_one(['a', '', 'b', '', 'c'], ['a', 'a', 'b', 'c', 'c'],
803
891
[(0, 0), (2, 2), (4, 4)])
1408
1495
def test_encodable_filename(self):
1409
1496
# Just checks file path for external diff tool.
1410
1497
# We cannot change CPython's internal encoding used by os.exec*.
1412
1498
diffobj = diff.DiffFromTool(['dummy', '@old_path', '@new_path'],
1413
1499
None, None, None)
1414
1500
for _, scenario in EncodingAdapter.encoding_scenarios:
1415
1501
encoding = scenario['encoding']
1416
dirname = scenario['info']['directory']
1502
dirname = scenario['info']['directory']
1417
1503
filename = scenario['info']['filename']
1419
1505
self.overrideAttr(diffobj, '_fenc', lambda: encoding)
1420
1506
relpath = dirname + u'/' + filename
1421
1507
fullpath = diffobj._safe_filename('safe', relpath)
1424
fullpath.encode(encoding).decode(encoding)
1426
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'))
1428
1512
def test_unencodable_filename(self):
1430
1513
diffobj = diff.DiffFromTool(['dummy', '@old_path', '@new_path'],
1431
1514
None, None, None)
1432
1515
for _, scenario in EncodingAdapter.encoding_scenarios:
1433
1516
encoding = scenario['encoding']
1434
dirname = scenario['info']['directory']
1517
dirname = scenario['info']['directory']
1435
1518
filename = scenario['info']['filename']
1437
1520
if encoding == 'iso-8859-1':