~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/transport_util.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-04 18:51:39 UTC
  • mfrom: (2961.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071104185139-kaio3sneodg2kp71
Authentication ring implementation (read-only)

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    hooks = TransportHooks()
66
66
 
67
67
    def __init__(self, base, _from_transport=None):
68
 
        if not base.startswith(_hooked_scheme + '://'):
69
 
            raise ValueError(base)
 
68
        assert base.startswith(_hooked_scheme + '://')
70
69
        # We need to trick the backing transport class about the scheme used
71
70
        # We'll do the reverse when we need to talk to the backing server
72
71
        fake_base = _change_scheme_in(base, _hooked_scheme, _backing_scheme)
116
115
        return url
117
116
 
118
117
    def start_logging_connections(self):
119
 
        ConnectionHookedTransport.hooks.install_named_hook(
120
 
            '_set_connection', self._collect_connection, None)
 
118
        ConnectionHookedTransport.hooks.install_hook('_set_connection',
 
119
                                                     self._collect_connection)
121
120
        # uninstall our hooks when we are finished
122
121
        self.addCleanup(self.reset_hooks)
123
122