151
168
self.check_patch(lines)
153
170
def test_external_diff_binary_lang_c(self):
154
172
for lang in ('LANG', 'LC_ALL', 'LANGUAGE'):
155
self.overrideEnv(lang, 'C')
156
lines = external_udiff_lines(['\x00foobar\n'], ['foo\x00bar\n'])
157
# Older versions of diffutils say "Binary files", newer
158
# versions just say "Files".
159
self.assertContainsRe(lines[0], '(Binary f|F)iles old and new differ\n')
160
self.assertEqual(lines[1:], ['\n'])
173
old_env[lang] = osutils.set_or_unset_env(lang, 'C')
175
lines = external_udiff_lines(['\x00foobar\n'], ['foo\x00bar\n'])
176
# Older versions of diffutils say "Binary files", newer
177
# versions just say "Files".
178
self.assertContainsRe(lines[0],
179
'(Binary f|F)iles old and new differ\n')
180
self.assertEquals(lines[1:], ['\n'])
182
for lang, old_val in old_env.iteritems():
183
osutils.set_or_unset_env(lang, old_val)
162
185
def test_no_external_diff(self):
163
186
"""Check that NoDiff is raised when diff is not available"""
164
# Make sure no 'diff' command is available
165
# XXX: Weird, using None instead of '' breaks the test -- vila 20101216
166
self.overrideEnv('PATH', '')
167
self.assertRaises(errors.NoDiff, diff.external_diff,
168
'old', ['boo\n'], 'new', ['goo\n'],
169
StringIO(), diff_opts=['-u'])
187
# Use os.environ['PATH'] to make sure no 'diff' command is available
188
orig_path = os.environ['PATH']
190
os.environ['PATH'] = ''
191
self.assertRaises(NoDiff, external_diff,
192
'old', ['boo\n'], 'new', ['goo\n'],
193
StringIO(), diff_opts=['-u'])
195
os.environ['PATH'] = orig_path
171
197
def test_internal_diff_default(self):
172
198
# Default internal diff encoding is utf8
173
199
output = StringIO()
174
diff.internal_diff(u'old_\xb5', ['old_text\n'],
175
u'new_\xe5', ['new_text\n'], output)
200
internal_diff(u'old_\xb5', ['old_text\n'],
201
u'new_\xe5', ['new_text\n'], output)
176
202
lines = output.getvalue().splitlines(True)
177
203
self.check_patch(lines)
178
self.assertEqual(['--- old_\xc2\xb5\n',
204
self.assertEquals(['--- old_\xc2\xb5\n',
179
205
'+++ new_\xc3\xa5\n',
180
206
'@@ -1,1 +1,1 @@\n',
219
245
def test_internal_diff_no_content(self):
220
246
output = StringIO()
221
diff.internal_diff(u'old', [], u'new', [], output)
247
internal_diff(u'old', [], u'new', [], output)
222
248
self.assertEqual('', output.getvalue())
224
250
def test_internal_diff_no_changes(self):
225
251
output = StringIO()
226
diff.internal_diff(u'old', ['text\n', 'contents\n'],
227
u'new', ['text\n', 'contents\n'],
252
internal_diff(u'old', ['text\n', 'contents\n'],
253
u'new', ['text\n', 'contents\n'],
229
255
self.assertEqual('', output.getvalue())
231
257
def test_internal_diff_returns_bytes(self):
233
259
output = StringIO.StringIO()
234
diff.internal_diff(u'old_\xb5', ['old_text\n'],
235
u'new_\xe5', ['new_text\n'], output)
236
self.assertIsInstance(output.getvalue(), str,
260
internal_diff(u'old_\xb5', ['old_text\n'],
261
u'new_\xe5', ['new_text\n'], output)
262
self.failUnless(isinstance(output.getvalue(), str),
237
263
'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',
303
class TestDiffFiles(tests.TestCaseInTempDir):
266
class TestDiffFiles(TestCaseInTempDir):
305
268
def test_external_diff_binary(self):
306
269
"""The output when using external diff should use diff's i18n error"""
537
503
tree.rename_one('file', 'newname')
538
504
self.build_tree_contents([('tree/newname', 'new contents\n')])
539
d = get_diff_as_string(tree.basis_tree(), tree)
540
self.assertContainsRe(d, "=== renamed file 'file' => 'newname'\n")
541
self.assertContainsRe(d, '--- old/file\t')
542
self.assertContainsRe(d, '\\+\\+\\+ new/newname\t')
543
self.assertContainsRe(d, '-contents\n'
547
def test_internal_diff_exec_property(self):
548
tree = self.make_branch_and_tree('tree')
550
tt = transform.TreeTransform(tree)
551
tt.new_file('a', tt.root, 'contents\n', 'a-id', True)
552
tt.new_file('b', tt.root, 'contents\n', 'b-id', False)
553
tt.new_file('c', tt.root, 'contents\n', 'c-id', True)
554
tt.new_file('d', tt.root, 'contents\n', 'd-id', False)
555
tt.new_file('e', tt.root, 'contents\n', 'control-e-id', True)
556
tt.new_file('f', tt.root, 'contents\n', 'control-f-id', False)
558
tree.commit('one', rev_id='rev-1')
560
tt = transform.TreeTransform(tree)
561
tt.set_executability(False, tt.trans_id_file_id('a-id'))
562
tt.set_executability(True, tt.trans_id_file_id('b-id'))
563
tt.set_executability(False, tt.trans_id_file_id('c-id'))
564
tt.set_executability(True, tt.trans_id_file_id('d-id'))
566
tree.rename_one('c', 'new-c')
567
tree.rename_one('d', 'new-d')
569
d = get_diff_as_string(tree.basis_tree(), tree)
571
self.assertContainsRe(d, r"file 'a'.*\(properties changed:"
573
self.assertContainsRe(d, r"file 'b'.*\(properties changed:"
575
self.assertContainsRe(d, r"file 'c'.*\(properties changed:"
577
self.assertContainsRe(d, r"file 'd'.*\(properties changed:"
579
self.assertNotContainsRe(d, r"file 'e'")
580
self.assertNotContainsRe(d, r"file 'f'")
505
diff = self.get_diff(tree.basis_tree(), tree)
506
self.assertContainsRe(diff, "=== renamed file 'file' => 'newname'\n")
507
self.assertContainsRe(diff, '--- old/file\t')
508
self.assertContainsRe(diff, '\\+\\+\\+ new/newname\t')
509
self.assertContainsRe(diff, '-contents\n'
582
512
def test_binary_unicode_filenames(self):
583
513
"""Test that contents of files are *not* encoded in UTF-8 when there
584
514
is a binary file in the diff.
586
516
# See https://bugs.launchpad.net/bugs/110092.
587
self.requireFeature(features.UnicodeFilenameFeature)
517
self.requireFeature(UnicodeFilename)
589
519
# This bug isn't triggered with cStringIO.
590
520
from StringIO import StringIO
850
737
'.*a-file(.|\n)*b-file')
853
class TestPatienceDiffLib(tests.TestCase):
740
class TestPatienceDiffLib(TestCase):
856
743
super(TestPatienceDiffLib, self).setUp()
857
self._unique_lcs = _patiencediff_py.unique_lcs_py
858
self._recurse_matches = _patiencediff_py.recurse_matches_py
744
self._unique_lcs = bzrlib._patiencediff_py.unique_lcs_py
745
self._recurse_matches = bzrlib._patiencediff_py.recurse_matches_py
859
746
self._PatienceSequenceMatcher = \
860
_patiencediff_py.PatienceSequenceMatcher_py
862
def test_diff_unicode_string(self):
863
a = ''.join([unichr(i) for i in range(4000, 4500, 3)])
864
b = ''.join([unichr(i) for i in range(4300, 4800, 2)])
865
sm = self._PatienceSequenceMatcher(None, a, b)
866
mb = sm.get_matching_blocks()
867
self.assertEqual(35, len(mb))
747
bzrlib._patiencediff_py.PatienceSequenceMatcher_py
869
749
def test_unique_lcs(self):
870
750
unique_lcs = self._unique_lcs
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),
751
self.assertEquals(unique_lcs('', ''), [])
752
self.assertEquals(unique_lcs('', 'a'), [])
753
self.assertEquals(unique_lcs('a', ''), [])
754
self.assertEquals(unique_lcs('a', 'a'), [(0,0)])
755
self.assertEquals(unique_lcs('a', 'b'), [])
756
self.assertEquals(unique_lcs('ab', 'ab'), [(0,0), (1,1)])
757
self.assertEquals(unique_lcs('abcde', 'cdeab'), [(2,0), (3,1), (4,2)])
758
self.assertEquals(unique_lcs('cdeab', 'abcde'), [(0,2), (1,3), (2,4)])
759
self.assertEquals(unique_lcs('abXde', 'abYde'), [(0,0), (1,1),
881
self.assertEqual(unique_lcs('acbac', 'abc'), [(2,1)])
761
self.assertEquals(unique_lcs('acbac', 'abc'), [(2,1)])
883
763
def test_recurse_matches(self):
884
764
def test_one(a, b, matches):
885
765
test_matches = []
886
766
self._recurse_matches(
887
767
a, b, 0, 0, len(a), len(b), test_matches, 10)
888
self.assertEqual(test_matches, matches)
768
self.assertEquals(test_matches, matches)
890
770
test_one(['a', '', 'b', '', 'c'], ['a', 'a', 'b', 'c', 'c'],
891
771
[(0, 0), (2, 2), (4, 4)])
1317
1176
, list(unified_diff_files('a2', 'b2')))
1319
1178
# And the patience diff
1320
self.assertEqual(['--- a2\n',
1322
'@@ -4,6 +4,11 @@\n',
1334
list(unified_diff_files('a2', 'b2',
1335
sequencematcher=psm)))
1179
self.assertEquals(['--- a2 \n',
1181
'@@ -4,6 +4,11 @@\n',
1194
, list(unified_diff_files('a2', 'b2',
1195
sequencematcher=psm)))
1338
1198
class TestPatienceDiffLibFiles_c(TestPatienceDiffLibFiles):
1340
_test_needs_features = [features.compiled_patiencediff_feature]
1200
_test_needs_features = [CompiledPatienceDiffFeature]
1342
1202
def setUp(self):
1343
1203
super(TestPatienceDiffLibFiles_c, self).setUp()
1344
from bzrlib import _patiencediff_c
1204
import bzrlib._patiencediff_c
1345
1205
self._PatienceSequenceMatcher = \
1346
_patiencediff_c.PatienceSequenceMatcher_c
1349
class TestUsingCompiledIfAvailable(tests.TestCase):
1206
bzrlib._patiencediff_c.PatienceSequenceMatcher_c
1209
class TestUsingCompiledIfAvailable(TestCase):
1351
1211
def test_PatienceSequenceMatcher(self):
1352
if features.compiled_patiencediff_feature.available():
1212
if CompiledPatienceDiffFeature.available():
1353
1213
from bzrlib._patiencediff_c import PatienceSequenceMatcher_c
1354
1214
self.assertIs(PatienceSequenceMatcher_c,
1355
patiencediff.PatienceSequenceMatcher)
1215
bzrlib.patiencediff.PatienceSequenceMatcher)
1357
1217
from bzrlib._patiencediff_py import PatienceSequenceMatcher_py
1358
1218
self.assertIs(PatienceSequenceMatcher_py,
1359
patiencediff.PatienceSequenceMatcher)
1219
bzrlib.patiencediff.PatienceSequenceMatcher)
1361
1221
def test_unique_lcs(self):
1362
if features.compiled_patiencediff_feature.available():
1222
if CompiledPatienceDiffFeature.available():
1363
1223
from bzrlib._patiencediff_c import unique_lcs_c
1364
1224
self.assertIs(unique_lcs_c,
1365
patiencediff.unique_lcs)
1225
bzrlib.patiencediff.unique_lcs)
1367
1227
from bzrlib._patiencediff_py import unique_lcs_py
1368
1228
self.assertIs(unique_lcs_py,
1369
patiencediff.unique_lcs)
1229
bzrlib.patiencediff.unique_lcs)
1371
1231
def test_recurse_matches(self):
1372
if features.compiled_patiencediff_feature.available():
1232
if CompiledPatienceDiffFeature.available():
1373
1233
from bzrlib._patiencediff_c import recurse_matches_c
1374
1234
self.assertIs(recurse_matches_c,
1375
patiencediff.recurse_matches)
1235
bzrlib.patiencediff.recurse_matches)
1377
1237
from bzrlib._patiencediff_py import recurse_matches_py
1378
1238
self.assertIs(recurse_matches_py,
1379
patiencediff.recurse_matches)
1382
class TestDiffFromTool(tests.TestCaseWithTransport):
1239
bzrlib.patiencediff.recurse_matches)
1242
class TestDiffFromTool(TestCaseWithTransport):
1384
1244
def test_from_string(self):
1385
diff_obj = diff.DiffFromTool.from_string('diff', None, None, None)
1245
diff_obj = DiffFromTool.from_string('diff', None, None, None)
1386
1246
self.addCleanup(diff_obj.finish)
1387
self.assertEqual(['diff', '@old_path', '@new_path'],
1247
self.assertEqual(['diff', '%(old_path)s', '%(new_path)s'],
1388
1248
diff_obj.command_template)
1390
1250
def test_from_string_u5(self):
1391
diff_obj = diff.DiffFromTool.from_string('diff "-u 5"',
1251
diff_obj = DiffFromTool.from_string('diff -u\\ 5', None, None, None)
1393
1252
self.addCleanup(diff_obj.finish)
1394
self.assertEqual(['diff', '-u 5', '@old_path', '@new_path'],
1253
self.assertEqual(['diff', '-u 5', '%(old_path)s', '%(new_path)s'],
1395
1254
diff_obj.command_template)
1396
1255
self.assertEqual(['diff', '-u 5', 'old-path', 'new-path'],
1397
1256
diff_obj._get_command('old-path', 'new-path'))
1399
def test_from_string_path_with_backslashes(self):
1400
self.requireFeature(features.backslashdir_feature)
1401
tool = 'C:\\Tools\\Diff.exe'
1402
diff_obj = diff.DiffFromTool.from_string(tool, None, None, None)
1403
self.addCleanup(diff_obj.finish)
1404
self.assertEqual(['C:\\Tools\\Diff.exe', '@old_path', '@new_path'],
1405
diff_obj.command_template)
1406
self.assertEqual(['C:\\Tools\\Diff.exe', 'old-path', 'new-path'],
1407
diff_obj._get_command('old-path', 'new-path'))
1409
1258
def test_execute(self):
1410
1259
output = StringIO()
1411
diff_obj = diff.DiffFromTool(['python', '-c',
1412
'print "@old_path @new_path"'],
1260
diff_obj = DiffFromTool(['python', '-c',
1261
'print "%(old_path)s %(new_path)s"'],
1414
1263
self.addCleanup(diff_obj.finish)
1415
1264
diff_obj._execute('old', 'new')
1416
1265
self.assertEqual(output.getvalue().rstrip(), 'old new')
1418
def test_execute_missing(self):
1419
diff_obj = diff.DiffFromTool(['a-tool-which-is-unlikely-to-exist'],
1267
def test_excute_missing(self):
1268
diff_obj = DiffFromTool(['a-tool-which-is-unlikely-to-exist'],
1421
1270
self.addCleanup(diff_obj.finish)
1422
e = self.assertRaises(errors.ExecutableMissing, diff_obj._execute,
1271
e = self.assertRaises(ExecutableMissing, diff_obj._execute, 'old',
1424
1273
self.assertEqual('a-tool-which-is-unlikely-to-exist could not be found'
1425
1274
' on this machine', str(e))
1427
def test_prepare_files_creates_paths_readable_by_windows_tool(self):
1428
self.requireFeature(features.AttribFeature)
1430
tree = self.make_branch_and_tree('tree')
1431
self.build_tree_contents([('tree/file', 'content')])
1432
tree.add('file', 'file-id')
1433
tree.commit('old tree')
1435
self.addCleanup(tree.unlock)
1436
basis_tree = tree.basis_tree()
1437
basis_tree.lock_read()
1438
self.addCleanup(basis_tree.unlock)
1439
diff_obj = diff.DiffFromTool(['python', '-c',
1440
'print "@old_path @new_path"'],
1441
basis_tree, tree, output)
1442
diff_obj._prepare_files('file-id', 'file', 'file')
1443
# The old content should be readonly
1444
self.assertReadableByAttrib(diff_obj._root, 'old\\file',
1446
# The new content should use the tree object, not a 'new' file anymore
1447
self.assertEndsWith(tree.basedir, 'work/tree')
1448
self.assertReadableByAttrib(tree.basedir, 'file', r'work\\tree\\file$')
1450
def assertReadableByAttrib(self, cwd, relpath, regex):
1451
proc = subprocess.Popen(['attrib', relpath],
1452
stdout=subprocess.PIPE,
1454
(result, err) = proc.communicate()
1455
self.assertContainsRe(result.replace('\r\n', '\n'), regex)
1457
1276
def test_prepare_files(self):
1458
1277
output = StringIO()
1459
1278
tree = self.make_branch_and_tree('tree')
1460
1279
self.build_tree_contents([('tree/oldname', 'oldcontent')])
1461
self.build_tree_contents([('tree/oldname2', 'oldcontent2')])
1462
1280
tree.add('oldname', 'file-id')
1463
tree.add('oldname2', 'file2-id')
1464
# Earliest allowable date on FAT32 filesystems is 1980-01-01
1465
tree.commit('old tree', timestamp=315532800)
1281
tree.commit('old tree', timestamp=0)
1466
1282
tree.rename_one('oldname', 'newname')
1467
tree.rename_one('oldname2', 'newname2')
1468
1283
self.build_tree_contents([('tree/newname', 'newcontent')])
1469
self.build_tree_contents([('tree/newname2', 'newcontent2')])
1470
1284
old_tree = tree.basis_tree()
1471
1285
old_tree.lock_read()
1472
1286
self.addCleanup(old_tree.unlock)
1473
1287
tree.lock_read()
1474
1288
self.addCleanup(tree.unlock)
1475
diff_obj = diff.DiffFromTool(['python', '-c',
1476
'print "@old_path @new_path"'],
1477
old_tree, tree, output)
1289
diff_obj = DiffFromTool(['python', '-c',
1290
'print "%(old_path)s %(new_path)s"'],
1291
old_tree, tree, output)
1478
1292
self.addCleanup(diff_obj.finish)
1479
1293
self.assertContainsRe(diff_obj._root, 'bzr-diff-[^/]*')
1480
1294
old_path, new_path = diff_obj._prepare_files('file-id', 'oldname',
1482
1296
self.assertContainsRe(old_path, 'old/oldname$')
1483
self.assertEqual(315532800, os.stat(old_path).st_mtime)
1484
self.assertContainsRe(new_path, 'tree/newname$')
1297
self.assertEqual(0, os.stat(old_path).st_mtime)
1298
self.assertContainsRe(new_path, 'new/newname$')
1485
1299
self.assertFileEqual('oldcontent', old_path)
1486
1300
self.assertFileEqual('newcontent', new_path)
1487
if osutils.host_os_dereferences_symlinks():
1301
if osutils.has_symlinks():
1488
1302
self.assertTrue(os.path.samefile('tree/newname', new_path))
1489
1303
# make sure we can create files with the same parent directories
1490
diff_obj._prepare_files('file2-id', 'oldname2', 'newname2')
1493
class TestDiffFromToolEncodedFilename(tests.TestCaseWithTransport):
1495
def test_encodable_filename(self):
1496
# Just checks file path for external diff tool.
1497
# We cannot change CPython's internal encoding used by os.exec*.
1498
diffobj = diff.DiffFromTool(['dummy', '@old_path', '@new_path'],
1500
for _, scenario in EncodingAdapter.encoding_scenarios:
1501
encoding = scenario['encoding']
1502
dirname = scenario['info']['directory']
1503
filename = scenario['info']['filename']
1505
self.overrideAttr(diffobj, '_fenc', lambda: encoding)
1506
relpath = dirname + u'/' + filename
1507
fullpath = diffobj._safe_filename('safe', relpath)
1508
self.assertEqual(fullpath,
1509
fullpath.encode(encoding).decode(encoding))
1510
self.assertTrue(fullpath.startswith(diffobj._root + '/safe'))
1512
def test_unencodable_filename(self):
1513
diffobj = diff.DiffFromTool(['dummy', '@old_path', '@new_path'],
1515
for _, scenario in EncodingAdapter.encoding_scenarios:
1516
encoding = scenario['encoding']
1517
dirname = scenario['info']['directory']
1518
filename = scenario['info']['filename']
1520
if encoding == 'iso-8859-1':
1521
encoding = 'iso-8859-2'
1523
encoding = 'iso-8859-1'
1525
self.overrideAttr(diffobj, '_fenc', lambda: encoding)
1526
relpath = dirname + u'/' + filename
1527
fullpath = diffobj._safe_filename('safe', relpath)
1528
self.assertEqual(fullpath,
1529
fullpath.encode(encoding).decode(encoding))
1530
self.assertTrue(fullpath.startswith(diffobj._root + '/safe'))
1533
class TestGetTreesAndBranchesToDiffLocked(tests.TestCaseWithTransport):
1535
def call_gtabtd(self, path_list, revision_specs, old_url, new_url):
1536
"""Call get_trees_and_branches_to_diff_locked."""
1537
return diff.get_trees_and_branches_to_diff_locked(
1538
path_list, revision_specs, old_url, new_url, self.addCleanup)
1540
def test_basic(self):
1541
tree = self.make_branch_and_tree('tree')
1542
(old_tree, new_tree,
1543
old_branch, new_branch,
1544
specific_files, extra_trees) = self.call_gtabtd(
1545
['tree'], None, None, None)
1547
self.assertIsInstance(old_tree, revisiontree.RevisionTree)
1548
self.assertEqual(_mod_revision.NULL_REVISION,
1549
old_tree.get_revision_id())
1550
self.assertEqual(tree.basedir, new_tree.basedir)
1551
self.assertEqual(tree.branch.base, old_branch.base)
1552
self.assertEqual(tree.branch.base, new_branch.base)
1553
self.assertIs(None, specific_files)
1554
self.assertIs(None, extra_trees)
1556
def test_with_rev_specs(self):
1557
tree = self.make_branch_and_tree('tree')
1558
self.build_tree_contents([('tree/file', 'oldcontent')])
1559
tree.add('file', 'file-id')
1560
tree.commit('old tree', timestamp=0, rev_id="old-id")
1561
self.build_tree_contents([('tree/file', 'newcontent')])
1562
tree.commit('new tree', timestamp=0, rev_id="new-id")
1564
revisions = [revisionspec.RevisionSpec.from_string('1'),
1565
revisionspec.RevisionSpec.from_string('2')]
1566
(old_tree, new_tree,
1567
old_branch, new_branch,
1568
specific_files, extra_trees) = self.call_gtabtd(
1569
['tree'], revisions, None, None)
1571
self.assertIsInstance(old_tree, revisiontree.RevisionTree)
1572
self.assertEqual("old-id", old_tree.get_revision_id())
1573
self.assertIsInstance(new_tree, revisiontree.RevisionTree)
1574
self.assertEqual("new-id", new_tree.get_revision_id())
1575
self.assertEqual(tree.branch.base, old_branch.base)
1576
self.assertEqual(tree.branch.base, new_branch.base)
1577
self.assertIs(None, specific_files)
1578
self.assertEqual(tree.basedir, extra_trees[0].basedir)
1304
diff_obj._prepare_files('file-id', 'oldname2', 'newname2')