460
460
self.failUnlessEqual('work/MixedCaseParent/nochild', actual)
463
class Test_CICPCanonicalRelpath(tests.TestCaseWithTransport):
465
def assertRelpath(self, expected, base, path):
466
actual = osutils._cicp_canonical_relpath(base, path)
467
self.assertEqual(expected, actual)
469
def test_simple(self):
470
self.build_tree(['MixedCaseName'])
471
base = osutils.realpath(self.get_transport('.').local_abspath('.'))
472
self.assertRelpath('MixedCaseName', base, 'mixedcAsename')
474
def test_subdir_missing_tail(self):
475
self.build_tree(['MixedCaseParent/', 'MixedCaseParent/a_child'])
476
base = osutils.realpath(self.get_transport('.').local_abspath('.'))
477
self.assertRelpath('MixedCaseParent/a_child', base,
478
'MixedCaseParent/a_child')
479
self.assertRelpath('MixedCaseParent/a_child', base,
480
'MixedCaseParent/A_Child')
481
self.assertRelpath('MixedCaseParent/not_child', base,
482
'MixedCaseParent/not_child')
484
def test_at_root_slash(self):
485
# We can't test this on Windows, because it has a 'MIN_ABS_PATHLENGTH'
487
if osutils.MIN_ABS_PATHLENGTH > 1:
488
raise tests.TestSkipped('relpath requires %d chars'
489
% osutils.MIN_ABS_PATHLENGTH)
490
self.assertRelpath('foo', '/', '/foo')
492
def test_at_root_drive(self):
493
if sys.platform != 'win32':
494
raise tests.TestNotApplicable('we can only test drive-letter relative'
495
' paths on Windows where we have drive'
498
# The specific issue is that when at the root of a drive, 'abspath'
499
# returns "C:/" or just "/". However, the code assumes that abspath
500
# always returns something like "C:/foo" or "/foo" (no trailing slash).
501
self.assertRelpath('foo', 'C:/', 'C:/foo')
502
self.assertRelpath('foo', 'X:/', 'X:/foo')
503
self.assertRelpath('foo', 'X:/', 'X://foo')
463
506
class TestPumpFile(tests.TestCase):
464
507
"""Test pumpfile method."""
625
668
self.assertEqual("1234", output.getvalue())
671
class TestRelpath(tests.TestCase):
673
def test_simple_relpath(self):
674
cwd = osutils.getcwd()
675
subdir = cwd + '/subdir'
676
self.assertEqual('subdir', osutils.relpath(cwd, subdir))
678
def test_deep_relpath(self):
679
cwd = osutils.getcwd()
680
subdir = cwd + '/sub/subsubdir'
681
self.assertEqual('sub/subsubdir', osutils.relpath(cwd, subdir))
683
def test_not_relative(self):
684
self.assertRaises(errors.PathNotChild,
685
osutils.relpath, 'C:/path', 'H:/path')
686
self.assertRaises(errors.PathNotChild,
687
osutils.relpath, 'C:/', 'H:/path')
628
690
class TestSafeUnicode(tests.TestCase):
630
692
def test_from_ascii_string(self):