~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_transport_implementations.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-02-24 01:38:17 UTC
  • mfrom: (3211.6.2 bzr.bug-188855)
  • Revision ID: pqm@pqm.ubuntu.com-20080224013817-4ps9nmrzjtg9ugtz
(James Henstridge) Fix MemoryTransport._abspath() for relpath=''
 (bug #188855)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1066
1066
            self.assertRaises(TransportNotPossible, t.list_dir, '.')
1067
1067
            return
1068
1068
 
1069
 
        def sorted_list(d):
1070
 
            l = list(t.list_dir(d))
 
1069
        def sorted_list(d, transport):
 
1070
            l = list(transport.list_dir(d))
1071
1071
            l.sort()
1072
1072
            return l
1073
1073
 
1074
 
        self.assertEqual([], sorted_list('.'))
 
1074
        self.assertEqual([], sorted_list('.', t))
1075
1075
        # c2 is precisely one letter longer than c here to test that
1076
1076
        # suffixing is not confused.
1077
1077
        # a%25b checks that quoting is done consistently across transports
1083
1083
            self.build_tree(tree_names)
1084
1084
 
1085
1085
        self.assertEqual(
1086
 
            ['a', 'a%2525b', 'b', 'c', 'c2'], sorted_list('.'))
1087
 
        self.assertEqual(['d', 'e'], sorted_list('c'))
 
1086
            ['a', 'a%2525b', 'b', 'c', 'c2'], sorted_list('', t))
 
1087
        self.assertEqual(
 
1088
            ['a', 'a%2525b', 'b', 'c', 'c2'], sorted_list('.', t))
 
1089
        self.assertEqual(['d', 'e'], sorted_list('c', t))
 
1090
 
 
1091
        # Cloning the transport produces an equivalent listing
 
1092
        self.assertEqual(['d', 'e'], sorted_list('', t.clone('c')))
1088
1093
 
1089
1094
        if not t.is_readonly():
1090
1095
            t.delete('c/d')
1093
1098
            os.unlink('c/d')
1094
1099
            os.unlink('b')
1095
1100
            
1096
 
        self.assertEqual(['a', 'a%2525b', 'c', 'c2'], sorted_list('.'))
1097
 
        self.assertEqual(['e'], sorted_list('c'))
 
1101
        self.assertEqual(['a', 'a%2525b', 'c', 'c2'], sorted_list('.', t))
 
1102
        self.assertEqual(['e'], sorted_list('c', t))
1098
1103
 
1099
1104
        self.assertListRaises(PathError, t.list_dir, 'q')
1100
1105
        self.assertListRaises(PathError, t.list_dir, 'c/f')