/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/transport/chroot.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-11 04:02:41 UTC
  • mfrom: (5017.2.2 tariff)
  • Revision ID: pqm@pqm.ubuntu.com-20100211040241-w6n021dz0uus341n
(mbp) add import-tariff tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2006-2009 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
18
18
root.
19
19
"""
20
20
 
21
 
from __future__ import absolute_import
22
 
 
23
 
from . import (
 
21
from bzrlib.transport import (
 
22
    get_transport,
24
23
    pathfilter,
25
24
    register_transport,
 
25
    Server,
 
26
    Transport,
 
27
    unregister_transport,
26
28
    )
27
29
 
28
30
 
63
65
        return self._relpath_from_server_root(relpath)
64
66
 
65
67
 
 
68
class TestingChrootServer(ChrootServer):
 
69
 
 
70
    def __init__(self):
 
71
        """TestingChrootServer is not usable until start_server is called."""
 
72
        ChrootServer.__init__(self, None)
 
73
 
 
74
    def start_server(self, backing_server=None):
 
75
        """Setup the Chroot on backing_server."""
 
76
        if backing_server is not None:
 
77
            self.backing_transport = get_transport(backing_server.get_url())
 
78
        else:
 
79
            self.backing_transport = get_transport('.')
 
80
        ChrootServer.start_server(self)
 
81
 
 
82
 
66
83
def get_test_permutations():
67
84
    """Return the permutations to be used in testing."""
68
 
    from breezy.tests import test_server
69
 
    return [(ChrootTransport, test_server.TestingChrootServer)]
 
85
    return [(ChrootTransport, TestingChrootServer)]