~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_osutils.py

  • Committer: John Arbash Meinel
  • Date: 2010-01-13 16:23:07 UTC
  • mto: (4634.119.7 2.0)
  • mto: This revision was merged to the branch mainline in revision 4959.
  • Revision ID: john@arbash-meinel.com-20100113162307-0bs82td16gzih827
Update the MANIFEST.in file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
460
460
        self.failUnlessEqual('work/MixedCaseParent/nochild', actual)
461
461
 
462
462
 
 
463
class Test_CICPCanonicalRelpath(tests.TestCaseWithTransport):
 
464
 
 
465
    def assertRelpath(self, expected, base, path):
 
466
        actual = osutils._cicp_canonical_relpath(base, path)
 
467
        self.assertEqual(expected, actual)
 
468
 
 
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')
 
473
 
 
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')
 
483
 
 
484
    def test_at_root_slash(self):
 
485
        # We can't test this on Windows, because it has a 'MIN_ABS_PATHLENGTH'
 
486
        # check...
 
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')
 
491
 
 
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'
 
496
                                          ' letters.')
 
497
        # see bug #322807
 
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')
 
504
 
 
505
 
463
506
class TestPumpFile(tests.TestCase):
464
507
    """Test pumpfile method."""
465
508
 
625
668
        self.assertEqual("1234", output.getvalue())
626
669
 
627
670
 
 
671
class TestRelpath(tests.TestCase):
 
672
 
 
673
    def test_simple_relpath(self):
 
674
        cwd = osutils.getcwd()
 
675
        subdir = cwd + '/subdir'
 
676
        self.assertEqual('subdir', osutils.relpath(cwd, subdir))
 
677
 
 
678
    def test_deep_relpath(self):
 
679
        cwd = osutils.getcwd()
 
680
        subdir = cwd + '/sub/subsubdir'
 
681
        self.assertEqual('sub/subsubdir', osutils.relpath(cwd, subdir))
 
682
 
 
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')
 
688
 
 
689
 
628
690
class TestSafeUnicode(tests.TestCase):
629
691
 
630
692
    def test_from_ascii_string(self):