~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/memory.py

  • Committer: John Arbash Meinel
  • Date: 2010-01-12 22:36:23 UTC
  • mfrom: (4953 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4955.
  • Revision ID: john@arbash-meinel.com-20100112223623-836x5mou0gm5vsep
merge bzr.dev 4953 to clean up the ui factory issues

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
27
27
from cStringIO import StringIO
28
28
import warnings
29
29
 
 
30
from bzrlib import (
 
31
    urlutils,
 
32
    )
30
33
from bzrlib.errors import (
31
34
    FileExists,
32
35
    LockError,
42
45
    register_transport,
43
46
    Server,
44
47
    Transport,
 
48
    unregister_transport,
45
49
    )
46
 
import bzrlib.urlutils as urlutils
47
50
 
48
51
 
49
52
 
303
306
class MemoryServer(Server):
304
307
    """Server for the MemoryTransport for testing with."""
305
308
 
306
 
    def setUp(self):
307
 
        """See bzrlib.transport.Server.setUp."""
 
309
    def start_server(self):
308
310
        self._dirs = {'/':None}
309
311
        self._files = {}
310
312
        self._locks = {}
315
317
            result._files = self._files
316
318
            result._locks = self._locks
317
319
            return result
318
 
        register_transport(self._scheme, memory_factory)
 
320
        self._memory_factory = memory_factory
 
321
        register_transport(self._scheme, self._memory_factory)
319
322
 
320
 
    def tearDown(self):
321
 
        """See bzrlib.transport.Server.tearDown."""
 
323
    def stop_server(self):
322
324
        # unregister this server
 
325
        unregister_transport(self._scheme, self._memory_factory)
323
326
 
324
327
    def get_url(self):
325
328
        """See bzrlib.transport.Server.get_url."""