~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_urlutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-04-07 07:52:50 UTC
  • mfrom: (3340.1.1 208418-1.4)
  • Revision ID: pqm@pqm.ubuntu.com-20080407075250-phs53xnslo8boaeo
Return the correct knit serialisation method in _StreamAccess.
        (Andrew Bennetts, Martin Pool, Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
291
291
            raise TestSkipped("local encoding cannot handle unicode")
292
292
 
293
293
        self.assertEqual('file:///path/to/r%C3%A4ksm%C3%B6rg%C3%A5s', result)
 
294
        self.assertFalse(isinstance(result, unicode))
294
295
 
295
296
    def test_posix_local_path_from_url(self):
296
297
        from_url = urlutils._posix_local_path_from_url
322
323
            raise TestSkipped("local encoding cannot handle unicode")
323
324
 
324
325
        self.assertEqual('file:///D:/path/to/r%C3%A4ksm%C3%B6rg%C3%A5s', result)
 
326
        self.assertFalse(isinstance(result, unicode))
325
327
 
326
328
    def test_win32_unc_path_to_url(self):
327
329
        to_url = urlutils._win32_local_path_to_url
336
338
            raise TestSkipped("local encoding cannot handle unicode")
337
339
 
338
340
        self.assertEqual('file://HOST/path/to/r%C3%A4ksm%C3%B6rg%C3%A5s', result)
339
 
 
 
341
        self.assertFalse(isinstance(result, unicode))
340
342
 
341
343
    def test_win32_local_path_from_url(self):
342
344
        from_url = urlutils._win32_local_path_from_url
491
493
    def test_escape(self):
492
494
        self.assertEqual('%25', urlutils.escape('%'))
493
495
        self.assertEqual('%C3%A5', urlutils.escape(u'\xe5'))
 
496
        self.assertFalse(isinstance(urlutils.escape(u'\xe5'), unicode))
494
497
 
495
498
    def test_unescape(self):
496
499
        self.assertEqual('%', urlutils.unescape('%25'))
541
544
        #test('.', 'http://host/', 'http://host')
542
545
        test('http://host', 'http://host/', 'http://host')
543
546
 
 
547
        # On Windows file:///C:/path/to and file:///D:/other/path
 
548
        # should not use relative url over the non-existent '/' directory.
 
549
        if sys.platform == 'win32':
 
550
            # on the same drive
 
551
            test('../../other/path',
 
552
                'file:///C:/path/to', 'file:///C:/other/path')
 
553
            #~next two tests is failed, i.e. urlutils.relative_url expects
 
554
            #~to see normalized file URLs?
 
555
            #~test('../../other/path',
 
556
            #~    'file:///C:/path/to', 'file:///c:/other/path')
 
557
            #~test('../../other/path',
 
558
            #~    'file:///C:/path/to', 'file:///C|/other/path')
 
559
 
 
560
            # check UNC paths too
 
561
            test('../../other/path',
 
562
                'file://HOST/base/path/to', 'file://HOST/base/other/path')
 
563
            # on different drives
 
564
            test('file:///D:/other/path',
 
565
                'file:///C:/path/to', 'file:///D:/other/path')
 
566
            # TODO: strictly saying in UNC path //HOST/base is full analog
 
567
            # of drive letter for hard disk, and this situation is also
 
568
            # should be exception from rules. [bialix 20071221]
 
569
 
544
570
 
545
571
class TestCwdToURL(TestCaseInTempDir):
546
572
    """Test that local_path_to_url works base on the cwd"""
570
596
        #   u'/dod\xe9' => '/dod\xc3\xa9'
571
597
        url = urlutils.local_path_to_url('.')
572
598
        self.assertEndsWith(url, '/dod%C3%A9')
 
599
 
 
600
 
 
601
class TestDeriveToLocation(TestCase):
 
602
    """Test that the mapping of FROM_LOCATION to TO_LOCATION works."""
 
603
 
 
604
    def test_to_locations_derived_from_paths(self):
 
605
        derive = urlutils.derive_to_location
 
606
        self.assertEqual("bar", derive("bar"))
 
607
        self.assertEqual("bar", derive("../bar"))
 
608
        self.assertEqual("bar", derive("/foo/bar"))
 
609
        self.assertEqual("bar", derive("c:/foo/bar"))
 
610
        self.assertEqual("bar", derive("c:bar"))
 
611
 
 
612
    def test_to_locations_derived_from_urls(self):
 
613
        derive = urlutils.derive_to_location
 
614
        self.assertEqual("bar", derive("http://foo/bar"))
 
615
        self.assertEqual("bar", derive("bzr+ssh://foo/bar"))
 
616
        self.assertEqual("foo-bar", derive("lp:foo-bar"))