17
17
"""Tests for smart server request infrastructure (bzrlib.smart.request)."""
21
19
from bzrlib import errors
22
from bzrlib.bzrdir import BzrDir
23
20
from bzrlib.smart import request
24
from bzrlib.tests import TestCase, TestCaseWithMemoryTransport
25
from bzrlib.transport import get_transport
21
from bzrlib.tests import TestCase
28
24
class NoBodyRequest(request.SmartServerRequest):
65
61
raise errors.NoSuchFile('xyzzy')
68
class CheckJailRequest(request.SmartServerRequest):
70
def __init__(self, *args):
71
request.SmartServerRequest.__init__(self, *args)
72
self.jail_transports_log = []
75
self.jail_transports_log.append(request.jail_info.transports)
77
def do_chunk(self, bytes):
78
self.jail_transports_log.append(request.jail_info.transports)
81
self.jail_transports_log.append(request.jail_info.transports)
84
64
class TestSmartRequest(TestCase):
86
66
def test_request_class_without_do_body(self):
96
76
handler.end_received()
97
77
# Request done, no exception was raised.
99
def test_only_request_code_is_jailed(self):
100
transport = 'dummy transport'
101
handler = request.SmartServerRequestHandler(
102
transport, {'foo': CheckJailRequest}, '/')
103
handler.args_received(('foo',))
104
self.assertEqual(None, request.jail_info.transports)
105
handler.accept_body('bytes')
106
self.assertEqual(None, request.jail_info.transports)
107
handler.end_received()
108
self.assertEqual(None, request.jail_info.transports)
110
[[transport]] * 3, handler._command.jail_transports_log)
114
80
class TestSmartRequestHandlerErrorTranslation(TestCase):
115
81
"""Tests that SmartServerRequestHandler will translate exceptions raised by
159
125
('NoSuchFile', 'path'), errors.NoSuchFile('path'))
161
127
def test_LockContention(self):
162
# For now, LockContentions are always transmitted with no details.
163
# Eventually they should include a relpath or url or something else to
164
# identify which lock is busy.
165
128
self.assertTranslationEqual(
166
('LockContention',), errors.LockContention('lock', 'msg'))
129
('LockContention', 'lock', 'msg'),
130
errors.LockContention('lock', 'msg'))
168
132
def test_TokenMismatch(self):
169
133
self.assertTranslationEqual(
170
134
('TokenMismatch', 'some-token', 'actual-token'),
171
135
errors.TokenMismatch('some-token', 'actual-token'))
174
class TestRequestJail(TestCaseWithMemoryTransport):
177
transport = self.get_transport('blah')
178
req = request.SmartServerRequest(transport)
179
self.assertEqual(None, request.jail_info.transports)
181
self.assertEqual([transport], request.jail_info.transports)
183
self.assertEqual(None, request.jail_info.transports)
186
class TestJailHook(TestCaseWithMemoryTransport):
189
request.jail_info.transports = None
190
TestCaseWithMemoryTransport.tearDown(self)
192
def test_jail_hook(self):
193
request.jail_info.transports = None
194
_pre_open_hook = request._pre_open_hook
195
# Any transport is fine if jail_info.transports is None
196
t = self.get_transport('foo')
198
# A transport in jail_info.transports is allowed
199
request.jail_info.transports = [t]
201
# A child of a transport in jail_info is allowed
202
_pre_open_hook(t.clone('child'))
203
# A parent is not allowed
204
self.assertRaises(errors.JailBreak, _pre_open_hook, t.clone('..'))
205
# A completely unrelated transport is not allowed
207
errors.JailBreak, _pre_open_hook, get_transport('http://host/'))
209
def test_open_bzrdir_in_non_main_thread(self):
210
"""Opening a bzrdir in a non-main thread should work ok.
212
This makes sure that the globally-installed
213
bzrlib.smart.request._pre_open_hook, which uses a threading.local(),
214
works in a newly created thread.
216
bzrdir = self.make_bzrdir('.')
217
transport = bzrdir.root_transport
220
BzrDir.open_from_transport(transport)
221
thread_result.append('ok')
222
thread = threading.Thread(target=t)
225
self.assertEqual(['ok'], thread_result)