~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/fakenfs.py

  • Committer: Patch Queue Manager
  • Date: 2016-04-21 04:10:52 UTC
  • mfrom: (6616.1.1 fix-en-user-guide)
  • Revision ID: pqm@pqm.ubuntu.com-20160421041052-clcye7ns1qcl2n7w
(richard-wilbur) Ensure build of English use guide always uses English text
 even when user's locale specifies a different language. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
To get a fake nfs transport use get_transport('fakenfs+' + real_url)
23
23
"""
24
24
 
 
25
from __future__ import absolute_import
 
26
 
25
27
from stat import S_ISDIR
26
28
 
27
29
from bzrlib import (
28
30
    errors,
29
31
    urlutils,
30
32
    )
31
 
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
32
 
 
33
 
 
34
 
class FakeNFSTransportDecorator(TransportDecorator):
 
33
from bzrlib.transport import decorator
 
34
 
 
35
 
 
36
class FakeNFSTransportDecorator(decorator.TransportDecorator):
35
37
    """A transport that behaves like NFS, for testing"""
36
38
 
37
39
    @classmethod
62
64
        return self._decorated.delete(relpath)
63
65
 
64
66
 
65
 
class FakeNFSServer(DecoratorServer):
66
 
    """Server for the FakeNFSTransportDecorator for testing with."""
67
 
 
68
 
    def get_decorator_class(self):
69
 
        return FakeNFSTransportDecorator
70
 
 
71
 
 
72
67
def get_test_permutations():
73
68
    """Return the permutations to be used in testing."""
74
 
    return [(FakeNFSTransportDecorator, FakeNFSServer),
75
 
            ]
 
69
    from bzrlib.tests import test_server
 
70
    return [(FakeNFSTransportDecorator, test_server.FakeNFSServer),]