~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/fakenfs.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Transport implementation that adapts another transport to look like NFS.
18
18
 
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
 
 
27
25
from stat import S_ISDIR
28
26
 
29
27
from bzrlib import (
30
28
    errors,
31
29
    urlutils,
32
30
    )
33
 
from bzrlib.transport import decorator
34
 
 
35
 
 
36
 
class FakeNFSTransportDecorator(decorator.TransportDecorator):
 
31
from bzrlib.transport.decorator import TransportDecorator, DecoratorServer
 
32
 
 
33
 
 
34
class FakeNFSTransportDecorator(TransportDecorator):
37
35
    """A transport that behaves like NFS, for testing"""
38
36
 
39
37
    @classmethod
64
62
        return self._decorated.delete(relpath)
65
63
 
66
64
 
 
65
class FakeNFSServer(DecoratorServer):
 
66
    """Server for the FakeNFSTransportDecorator for testing with."""
 
67
 
 
68
    def get_decorator_class(self):
 
69
        return FakeNFSTransportDecorator
 
70
 
 
71
 
67
72
def get_test_permutations():
68
73
    """Return the permutations to be used in testing."""
69
 
    from bzrlib.tests import test_server
70
 
    return [(FakeNFSTransportDecorator, test_server.FakeNFSServer),]
 
74
    return [(FakeNFSTransportDecorator, FakeNFSServer),
 
75
            ]