61
143
udiff_lines([1023 * 'a' + '\x00'], [], allow_binary=True)
62
144
udiff_lines([], [1023 * 'a' + '\x00'], allow_binary=True)
65
class TestCDVDiffLib(TestCase):
146
def test_external_diff(self):
147
lines = external_udiff_lines(['boo\n'], ['goo\n'])
148
self.check_patch(lines)
149
self.assertEqual('\n', lines[-1])
151
def test_external_diff_no_fileno(self):
152
# Make sure that we can handle not having a fileno, even
153
# if the diff is large
154
lines = external_udiff_lines(['boo\n']*10000,
157
self.check_patch(lines)
159
def test_external_diff_binary_lang_c(self):
161
for lang in ('LANG', 'LC_ALL', 'LANGUAGE'):
162
old_env[lang] = osutils.set_or_unset_env(lang, 'C')
164
lines = external_udiff_lines(['\x00foobar\n'], ['foo\x00bar\n'])
165
# Older versions of diffutils say "Binary files", newer
166
# versions just say "Files".
167
self.assertContainsRe(lines[0],
168
'(Binary f|F)iles old and new differ\n')
169
self.assertEquals(lines[1:], ['\n'])
171
for lang, old_val in old_env.iteritems():
172
osutils.set_or_unset_env(lang, old_val)
174
def test_no_external_diff(self):
175
"""Check that NoDiff is raised when diff is not available"""
176
# Use os.environ['PATH'] to make sure no 'diff' command is available
177
orig_path = os.environ['PATH']
179
os.environ['PATH'] = ''
180
self.assertRaises(NoDiff, external_diff,
181
'old', ['boo\n'], 'new', ['goo\n'],
182
StringIO(), diff_opts=['-u'])
184
os.environ['PATH'] = orig_path
186
def test_internal_diff_default(self):
187
# Default internal diff encoding is utf8
189
internal_diff(u'old_\xb5', ['old_text\n'],
190
u'new_\xe5', ['new_text\n'], output)
191
lines = output.getvalue().splitlines(True)
192
self.check_patch(lines)
193
self.assertEquals(['--- old_\xc2\xb5\n',
194
'+++ new_\xc3\xa5\n',
202
def test_internal_diff_utf8(self):
204
internal_diff(u'old_\xb5', ['old_text\n'],
205
u'new_\xe5', ['new_text\n'], output,
206
path_encoding='utf8')
207
lines = output.getvalue().splitlines(True)
208
self.check_patch(lines)
209
self.assertEquals(['--- old_\xc2\xb5\n',
210
'+++ new_\xc3\xa5\n',
218
def test_internal_diff_iso_8859_1(self):
220
internal_diff(u'old_\xb5', ['old_text\n'],
221
u'new_\xe5', ['new_text\n'], output,
222
path_encoding='iso-8859-1')
223
lines = output.getvalue().splitlines(True)
224
self.check_patch(lines)
225
self.assertEquals(['--- old_\xb5\n',
234
def test_internal_diff_returns_bytes(self):
236
output = StringIO.StringIO()
237
internal_diff(u'old_\xb5', ['old_text\n'],
238
u'new_\xe5', ['new_text\n'], output)
239
self.failUnless(isinstance(output.getvalue(), str),
240
'internal_diff should return bytestrings')
243
class TestDiffFiles(TestCaseInTempDir):
245
def test_external_diff_binary(self):
246
"""The output when using external diff should use diff's i18n error"""
247
# Make sure external_diff doesn't fail in the current LANG
248
lines = external_udiff_lines(['\x00foobar\n'], ['foo\x00bar\n'])
250
cmd = ['diff', '-u', '--binary', 'old', 'new']
251
open('old', 'wb').write('\x00foobar\n')
252
open('new', 'wb').write('foo\x00bar\n')
253
pipe = subprocess.Popen(cmd, stdout=subprocess.PIPE,
254
stdin=subprocess.PIPE)
255
out, err = pipe.communicate()
256
# Diff returns '2' on Binary files.
257
self.assertEqual(2, pipe.returncode)
258
# We should output whatever diff tells us, plus a trailing newline
259
self.assertEqual(out.splitlines(True) + ['\n'], lines)
262
class TestShowDiffTreesHelper(TestCaseWithTransport):
263
"""Has a helper for running show_diff_trees"""
265
def get_diff(self, tree1, tree2, specific_files=None, working_tree=None):
267
if working_tree is not None:
268
extra_trees = (working_tree,)
271
show_diff_trees(tree1, tree2, output, specific_files=specific_files,
272
extra_trees=extra_trees, old_label='old/',
274
return output.getvalue()
277
class TestDiffDates(TestShowDiffTreesHelper):
280
super(TestDiffDates, self).setUp()
281
self.wt = self.make_branch_and_tree('.')
282
self.b = self.wt.branch
283
self.build_tree_contents([
284
('file1', 'file1 contents at rev 1\n'),
285
('file2', 'file2 contents at rev 1\n')
287
self.wt.add(['file1', 'file2'])
289
message='Revision 1',
290
timestamp=1143849600, # 2006-04-01 00:00:00 UTC
293
self.build_tree_contents([('file1', 'file1 contents at rev 2\n')])
295
message='Revision 2',
296
timestamp=1143936000, # 2006-04-02 00:00:00 UTC
299
self.build_tree_contents([('file2', 'file2 contents at rev 3\n')])
301
message='Revision 3',
302
timestamp=1144022400, # 2006-04-03 00:00:00 UTC
305
self.wt.remove(['file2'])
307
message='Revision 4',
308
timestamp=1144108800, # 2006-04-04 00:00:00 UTC
311
self.build_tree_contents([
312
('file1', 'file1 contents in working tree\n')
314
# set the date stamps for files in the working tree to known values
315
os.utime('file1', (1144195200, 1144195200)) # 2006-04-05 00:00:00 UTC
317
def test_diff_rev_tree_working_tree(self):
318
output = self.get_diff(self.wt.basis_tree(), self.wt)
319
# note that the date for old/file1 is from rev 2 rather than from
320
# the basis revision (rev 4)
321
self.assertEqualDiff(output, '''\
322
=== modified file 'file1'
323
--- old/file1\t2006-04-02 00:00:00 +0000
324
+++ new/file1\t2006-04-05 00:00:00 +0000
326
-file1 contents at rev 2
327
+file1 contents in working tree
331
def test_diff_rev_tree_rev_tree(self):
332
tree1 = self.b.repository.revision_tree('rev-2')
333
tree2 = self.b.repository.revision_tree('rev-3')
334
output = self.get_diff(tree1, tree2)
335
self.assertEqualDiff(output, '''\
336
=== modified file 'file2'
337
--- old/file2\t2006-04-01 00:00:00 +0000
338
+++ new/file2\t2006-04-03 00:00:00 +0000
340
-file2 contents at rev 1
341
+file2 contents at rev 3
345
def test_diff_add_files(self):
346
tree1 = self.b.repository.revision_tree(None)
347
tree2 = self.b.repository.revision_tree('rev-1')
348
output = self.get_diff(tree1, tree2)
349
# the files have the epoch time stamp for the tree in which
351
self.assertEqualDiff(output, '''\
352
=== added file 'file1'
353
--- old/file1\t1970-01-01 00:00:00 +0000
354
+++ new/file1\t2006-04-01 00:00:00 +0000
356
+file1 contents at rev 1
358
=== added file 'file2'
359
--- old/file2\t1970-01-01 00:00:00 +0000
360
+++ new/file2\t2006-04-01 00:00:00 +0000
362
+file2 contents at rev 1
366
def test_diff_remove_files(self):
367
tree1 = self.b.repository.revision_tree('rev-3')
368
tree2 = self.b.repository.revision_tree('rev-4')
369
output = self.get_diff(tree1, tree2)
370
# the file has the epoch time stamp for the tree in which
372
self.assertEqualDiff(output, '''\
373
=== removed file 'file2'
374
--- old/file2\t2006-04-03 00:00:00 +0000
375
+++ new/file2\t1970-01-01 00:00:00 +0000
377
-file2 contents at rev 3
381
def test_show_diff_specified(self):
382
"""A working tree filename can be used to identify a file"""
383
self.wt.rename_one('file1', 'file1b')
384
old_tree = self.b.repository.revision_tree('rev-1')
385
new_tree = self.b.repository.revision_tree('rev-4')
386
out = self.get_diff(old_tree, new_tree, specific_files=['file1b'],
387
working_tree=self.wt)
388
self.assertContainsRe(out, 'file1\t')
390
def test_recursive_diff(self):
391
"""Children of directories are matched"""
394
self.wt.add(['dir1', 'dir2'])
395
self.wt.rename_one('file1', 'dir1/file1')
396
old_tree = self.b.repository.revision_tree('rev-1')
397
new_tree = self.b.repository.revision_tree('rev-4')
398
out = self.get_diff(old_tree, new_tree, specific_files=['dir1'],
399
working_tree=self.wt)
400
self.assertContainsRe(out, 'file1\t')
401
out = self.get_diff(old_tree, new_tree, specific_files=['dir2'],
402
working_tree=self.wt)
403
self.assertNotContainsRe(out, 'file1\t')
407
class TestShowDiffTrees(TestShowDiffTreesHelper):
408
"""Direct tests for show_diff_trees"""
410
def test_modified_file(self):
411
"""Test when a file is modified."""
412
tree = self.make_branch_and_tree('tree')
413
self.build_tree_contents([('tree/file', 'contents\n')])
414
tree.add(['file'], ['file-id'])
415
tree.commit('one', rev_id='rev-1')
417
self.build_tree_contents([('tree/file', 'new contents\n')])
418
diff = self.get_diff(tree.basis_tree(), tree)
419
self.assertContainsRe(diff, "=== modified file 'file'\n")
420
self.assertContainsRe(diff, '--- old/file\t')
421
self.assertContainsRe(diff, '\\+\\+\\+ new/file\t')
422
self.assertContainsRe(diff, '-contents\n'
425
def test_modified_file_in_renamed_dir(self):
426
"""Test when a file is modified in a renamed directory."""
427
tree = self.make_branch_and_tree('tree')
428
self.build_tree(['tree/dir/'])
429
self.build_tree_contents([('tree/dir/file', 'contents\n')])
430
tree.add(['dir', 'dir/file'], ['dir-id', 'file-id'])
431
tree.commit('one', rev_id='rev-1')
433
tree.rename_one('dir', 'other')
434
self.build_tree_contents([('tree/other/file', 'new contents\n')])
435
diff = self.get_diff(tree.basis_tree(), tree)
436
self.assertContainsRe(diff, "=== renamed directory 'dir' => 'other'\n")
437
self.assertContainsRe(diff, "=== modified file 'other/file'\n")
438
# XXX: This is technically incorrect, because it used to be at another
439
# location. What to do?
440
self.assertContainsRe(diff, '--- old/dir/file\t')
441
self.assertContainsRe(diff, '\\+\\+\\+ new/other/file\t')
442
self.assertContainsRe(diff, '-contents\n'
445
def test_renamed_directory(self):
446
"""Test when only a directory is only renamed."""
447
tree = self.make_branch_and_tree('tree')
448
self.build_tree(['tree/dir/'])
449
self.build_tree_contents([('tree/dir/file', 'contents\n')])
450
tree.add(['dir', 'dir/file'], ['dir-id', 'file-id'])
451
tree.commit('one', rev_id='rev-1')
453
tree.rename_one('dir', 'newdir')
454
diff = self.get_diff(tree.basis_tree(), tree)
455
# Renaming a directory should be a single "you renamed this dir" even
456
# when there are files inside.
457
self.assertEqual("=== renamed directory 'dir' => 'newdir'\n", diff)
459
def test_renamed_file(self):
460
"""Test when a file is only renamed."""
461
tree = self.make_branch_and_tree('tree')
462
self.build_tree_contents([('tree/file', 'contents\n')])
463
tree.add(['file'], ['file-id'])
464
tree.commit('one', rev_id='rev-1')
466
tree.rename_one('file', 'newname')
467
diff = self.get_diff(tree.basis_tree(), tree)
468
self.assertContainsRe(diff, "=== renamed file 'file' => 'newname'\n")
469
# We shouldn't have a --- or +++ line, because there is no content
471
self.assertNotContainsRe(diff, '---')
473
def test_renamed_and_modified_file(self):
474
"""Test when a file is only renamed."""
475
tree = self.make_branch_and_tree('tree')
476
self.build_tree_contents([('tree/file', 'contents\n')])
477
tree.add(['file'], ['file-id'])
478
tree.commit('one', rev_id='rev-1')
480
tree.rename_one('file', 'newname')
481
self.build_tree_contents([('tree/newname', 'new contents\n')])
482
diff = self.get_diff(tree.basis_tree(), tree)
483
self.assertContainsRe(diff, "=== renamed file 'file' => 'newname'\n")
484
self.assertContainsRe(diff, '--- old/file\t')
485
self.assertContainsRe(diff, '\\+\\+\\+ new/newname\t')
486
self.assertContainsRe(diff, '-contents\n'
489
def test_binary_unicode_filenames(self):
490
"""Test that contents of files are *not* encoded in UTF-8 when there
491
is a binary file in the diff.
493
# See https://bugs.launchpad.net/bugs/110092.
494
self.requireFeature(UnicodeFilename)
496
# This bug isn't triggered with cStringIO.
497
from StringIO import StringIO
498
tree = self.make_branch_and_tree('tree')
499
alpha, omega = u'\u03b1', u'\u03c9'
500
alpha_utf8, omega_utf8 = alpha.encode('utf8'), omega.encode('utf8')
501
self.build_tree_contents(
502
[('tree/' + alpha, chr(0)),
504
('The %s and the %s\n' % (alpha_utf8, omega_utf8)))])
505
tree.add([alpha], ['file-id'])
506
tree.add([omega], ['file-id-2'])
507
diff_content = StringIO()
508
show_diff_trees(tree.basis_tree(), tree, diff_content)
509
diff = diff_content.getvalue()
510
self.assertContainsRe(diff, r"=== added file '%s'" % alpha_utf8)
511
self.assertContainsRe(
512
diff, "Binary files a/%s.*and b/%s.* differ\n" % (alpha_utf8, alpha_utf8))
513
self.assertContainsRe(diff, r"=== added file '%s'" % omega_utf8)
514
self.assertContainsRe(diff, r"--- a/%s" % (omega_utf8,))
515
self.assertContainsRe(diff, r"\+\+\+ b/%s" % (omega_utf8,))
517
def test_unicode_filename(self):
518
"""Test when the filename are unicode."""
519
self.requireFeature(UnicodeFilename)
521
alpha, omega = u'\u03b1', u'\u03c9'
522
autf8, outf8 = alpha.encode('utf8'), omega.encode('utf8')
524
tree = self.make_branch_and_tree('tree')
525
self.build_tree_contents([('tree/ren_'+alpha, 'contents\n')])
526
tree.add(['ren_'+alpha], ['file-id-2'])
527
self.build_tree_contents([('tree/del_'+alpha, 'contents\n')])
528
tree.add(['del_'+alpha], ['file-id-3'])
529
self.build_tree_contents([('tree/mod_'+alpha, 'contents\n')])
530
tree.add(['mod_'+alpha], ['file-id-4'])
532
tree.commit('one', rev_id='rev-1')
534
tree.rename_one('ren_'+alpha, 'ren_'+omega)
535
tree.remove('del_'+alpha)
536
self.build_tree_contents([('tree/add_'+alpha, 'contents\n')])
537
tree.add(['add_'+alpha], ['file-id'])
538
self.build_tree_contents([('tree/mod_'+alpha, 'contents_mod\n')])
540
diff = self.get_diff(tree.basis_tree(), tree)
541
self.assertContainsRe(diff,
542
"=== renamed file 'ren_%s' => 'ren_%s'\n"%(autf8, outf8))
543
self.assertContainsRe(diff, "=== added file 'add_%s'"%autf8)
544
self.assertContainsRe(diff, "=== modified file 'mod_%s'"%autf8)
545
self.assertContainsRe(diff, "=== removed file 'del_%s'"%autf8)
547
class TestPatienceDiffLib(TestCase):
550
super(TestPatienceDiffLib, self).setUp()
551
self._unique_lcs = bzrlib._patiencediff_py.unique_lcs_py
552
self._recurse_matches = bzrlib._patiencediff_py.recurse_matches_py
553
self._PatienceSequenceMatcher = \
554
bzrlib._patiencediff_py.PatienceSequenceMatcher_py
67
556
def test_unique_lcs(self):
557
unique_lcs = self._unique_lcs
68
558
self.assertEquals(unique_lcs('', ''), [])
559
self.assertEquals(unique_lcs('', 'a'), [])
560
self.assertEquals(unique_lcs('a', ''), [])
69
561
self.assertEquals(unique_lcs('a', 'a'), [(0,0)])
70
562
self.assertEquals(unique_lcs('a', 'b'), [])
71
563
self.assertEquals(unique_lcs('ab', 'ab'), [(0,0), (1,1)])
133
632
'how are you today?\n'],
134
633
[(0, 0, 1), (2, 1, 1)])
136
chk_blocks('aBccDe', 'abccde', [(0,0,1), (2,2,2), (5,5,1)])
138
chk_blocks('aBcdEcdFg', 'abcdecdfg', [(0,0,1), (2,2,2),
141
chk_blocks('abbabbXd', 'cabbabxd', [(0,1,5), (7,7,1)])
142
chk_blocks('abbabbbb', 'cabbabbc', [(0,1,6)])
143
chk_blocks('bbbbbbbb', 'cbbbbbbc', [(0,1,6)])
635
# non unique lines surrounded by non-matching lines
637
chk_blocks('aBccDe', 'abccde', [(0,0,1), (5,5,1)])
639
# But they only need to be locally unique
640
chk_blocks('aBcDec', 'abcdec', [(0,0,1), (2,2,1), (4,4,2)])
642
# non unique blocks won't be matched
643
chk_blocks('aBcdEcdFg', 'abcdecdfg', [(0,0,1), (8,8,1)])
645
# but locally unique ones will
646
chk_blocks('aBcdEeXcdFg', 'abcdecdfg', [(0,0,1), (2,2,2),
647
(5,4,1), (7,5,2), (10,8,1)])
649
chk_blocks('abbabbXd', 'cabbabxd', [(7,7,1)])
650
chk_blocks('abbabbbb', 'cabbabbc', [])
651
chk_blocks('bbbbbbbb', 'cbbbbbbc', [])
145
653
def test_opcodes(self):
146
def chk_ops(a, b, codes):
147
s = SequenceMatcher(None, a, b)
148
self.assertEquals(codes, s.get_opcodes())
654
def chk_ops(a, b, expected_codes):
655
s = self._PatienceSequenceMatcher(None, a, b)
656
self.assertEquals(expected_codes, s.get_opcodes())
150
658
chk_ops('', '', [])
151
659
chk_ops([], [], [])
660
chk_ops('abc', '', [('delete', 0,3, 0,0)])
661
chk_ops('', 'abc', [('insert', 0,0, 0,3)])
152
662
chk_ops('abcd', 'abcd', [('equal', 0,4, 0,4)])
153
663
chk_ops('abcd', 'abce', [('equal', 0,3, 0,3),
154
664
('replace', 3,4, 3,4)
223
782
chk_blocks('ABCd efghIjk L'
224
783
, 'AxyzBCn mo pqrstuvwI1 2 L'
225
, [(0,0,1), (1, 4, 2), (4, 7, 1), (9, 19, 1), (12, 23, 3)])
784
, [(0,0,1), (1, 4, 2), (9, 19, 1), (12, 23, 3)])
786
# These are rot13 code snippets.
228
get added when you add a file in the directory.
230
takes_args = ['file*']
231
takes_options = ['no-recurse']
233
def run(self, file_list, no_recurse=False):
234
from bzrlib.add import smart_add, add_reporter_print, add_reporter_null
236
reporter = add_reporter_null
238
reporter = add_reporter_print
239
smart_add(file_list, not no_recurse, reporter)
242
class cmd_mkdir(Command):
245
get added when you add a file in the directory.
247
--dry-run will show which files would be added, but not actually
250
takes_args = ['file*']
251
takes_options = ['no-recurse', 'dry-run']
253
def run(self, file_list, no_recurse=False, dry_run=False):
258
# This is pointless, but I'd rather not raise an error
259
action = bzrlib.add.add_action_null
261
action = bzrlib.add.add_action_print
263
action = bzrlib.add.add_action_add
265
action = bzrlib.add.add_action_add_and_print
267
bzrlib.add.smart_add(file_list, not no_recurse, action)
270
class cmd_mkdir(Command):
788
trg nqqrq jura lbh nqq n svyr va gur qverpgbel.
790
gnxrf_netf = ['svyr*']
791
gnxrf_bcgvbaf = ['ab-erphefr']
793
qrs eha(frys, svyr_yvfg, ab_erphefr=Snyfr):
794
sebz omeyvo.nqq vzcbeg fzneg_nqq, nqq_ercbegre_cevag, nqq_ercbegre_ahyy
796
ercbegre = nqq_ercbegre_ahyy
798
ercbegre = nqq_ercbegre_cevag
799
fzneg_nqq(svyr_yvfg, abg ab_erphefr, ercbegre)
802
pynff pzq_zxqve(Pbzznaq):
803
'''.splitlines(True), '''\
804
trg nqqrq jura lbh nqq n svyr va gur qverpgbel.
806
--qel-eha jvyy fubj juvpu svyrf jbhyq or nqqrq, ohg abg npghnyyl
809
gnxrf_netf = ['svyr*']
810
gnxrf_bcgvbaf = ['ab-erphefr', 'qel-eha']
812
qrs eha(frys, svyr_yvfg, ab_erphefr=Snyfr, qel_eha=Snyfr):
817
# Guvf vf cbvagyrff, ohg V'q engure abg envfr na reebe
818
npgvba = omeyvo.nqq.nqq_npgvba_ahyy
820
npgvba = omeyvo.nqq.nqq_npgvba_cevag
822
npgvba = omeyvo.nqq.nqq_npgvba_nqq
824
npgvba = omeyvo.nqq.nqq_npgvba_nqq_naq_cevag
826
omeyvo.nqq.fzneg_nqq(svyr_yvfg, abg ab_erphefr, npgvba)
829
pynff pzq_zxqve(Pbzznaq):
271
830
'''.splitlines(True)
272
831
, [(0,0,1), (1, 4, 2), (9, 19, 1), (12, 23, 3)])
274
def test_cdv_unified_diff(self):
833
def test_patience_unified_diff(self):
275
834
txt_a = ['hello there\n',
277
836
'how are you today?\n']
278
837
txt_b = ['hello there\n',
279
838
'how are you today?\n']
839
unified_diff = bzrlib.patiencediff.unified_diff
840
psm = self._PatienceSequenceMatcher
280
841
self.assertEquals([ '--- \n',
282
843
'@@ -1,3 +1,2 @@\n',