~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_remote.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:
1
 
# Copyright (C) 2006, 2007, 2008 Canonical Ltd
 
1
# Copyright (C) 2006, 2007 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
23
23
These tests correspond to tests.test_smart, which exercises the server side.
24
24
"""
25
25
 
26
 
import bz2
27
26
from cStringIO import StringIO
28
27
 
29
28
from bzrlib import (
 
29
    bzrdir,
30
30
    errors,
31
 
    graph,
32
31
    pack,
33
32
    remote,
34
33
    repository,
45
44
from bzrlib.revision import NULL_REVISION
46
45
from bzrlib.smart import server, medium
47
46
from bzrlib.smart.client import _SmartClient
48
 
from bzrlib.symbol_versioning import one_four
49
 
from bzrlib.transport import get_transport, http
50
47
from bzrlib.transport.memory import MemoryTransport
51
 
from bzrlib.transport.remote import RemoteTransport, RemoteTCPTransport
 
48
from bzrlib.transport.remote import RemoteTransport
52
49
 
53
50
 
54
51
class BasicRemoteObjectTests(tests.TestCaseWithTransport):
57
54
        self.transport_server = server.SmartTCPServer_for_testing
58
55
        super(BasicRemoteObjectTests, self).setUp()
59
56
        self.transport = self.get_transport()
 
57
        self.client = self.transport.get_smart_client()
60
58
        # make a branch that can be opened over the smart transport
61
59
        self.local_wt = BzrDir.create_standalone_workingtree('.')
62
60
 
110
108
    """Lookalike SmartClientRequestProtocolOne allowing body reading tests."""
111
109
 
112
110
    def __init__(self, body, fake_client):
113
 
        self.body = body
114
 
        self._body_buffer = None
 
111
        self._body_buffer = StringIO(body)
115
112
        self._fake_client = fake_client
116
113
 
117
114
    def read_body_bytes(self, count=-1):
118
 
        if self._body_buffer is None:
119
 
            self._body_buffer = StringIO(self.body)
120
115
        bytes = self._body_buffer.read(count)
121
116
        if self._body_buffer.tell() == len(self._body_buffer.getvalue()):
122
117
            self._fake_client.expecting_body = False
125
120
    def cancel_read_body(self):
126
121
        self._fake_client.expecting_body = False
127
122
 
128
 
    def read_streamed_body(self):
129
 
        return self.body
130
 
 
131
123
 
132
124
class FakeClient(_SmartClient):
133
125
    """Lookalike for _SmartClient allowing testing."""
134
126
    
135
 
    def __init__(self, fake_medium_base='fake base'):
 
127
    def __init__(self, responses):
 
128
        # We don't call the super init because there is no medium.
136
129
        """Create a FakeClient.
137
130
 
138
 
        :param responses: A list of response-tuple, body-data pairs to be sent
139
 
            back to callers.  A special case is if the response-tuple is
140
 
            'unknown verb', then a UnknownSmartMethod will be raised for that
141
 
            call, using the second element of the tuple as the verb in the
142
 
            exception.
 
131
        :param respones: A list of response-tuple, body-data pairs to be sent
 
132
            back to callers.
143
133
        """
144
 
        self.responses = []
 
134
        self.responses = responses
145
135
        self._calls = []
146
136
        self.expecting_body = False
147
 
        _SmartClient.__init__(self, FakeMedium(self._calls, fake_medium_base))
148
 
 
149
 
    def add_success_response(self, *args):
150
 
        self.responses.append(('success', args, None))
151
 
 
152
 
    def add_success_response_with_body(self, body, *args):
153
 
        self.responses.append(('success', args, body))
154
 
 
155
 
    def add_error_response(self, *args):
156
 
        self.responses.append(('error', args))
157
 
 
158
 
    def add_unknown_method_response(self, verb):
159
 
        self.responses.append(('unknown', verb))
160
 
 
161
 
    def _get_next_response(self):
162
 
        response_tuple = self.responses.pop(0)
163
 
        if response_tuple[0] == 'unknown':
164
 
            raise errors.UnknownSmartMethod(response_tuple[1])
165
 
        elif response_tuple[0] == 'error':
166
 
            raise errors.ErrorFromSmartServer(response_tuple[1])
167
 
        return response_tuple
168
137
 
169
138
    def call(self, method, *args):
170
139
        self._calls.append(('call', method, args))
171
 
        return self._get_next_response()[1]
 
140
        return self.responses.pop(0)[0]
172
141
 
173
142
    def call_expecting_body(self, method, *args):
174
143
        self._calls.append(('call_expecting_body', method, args))
175
 
        result = self._get_next_response()
176
 
        self.expecting_body = True
177
 
        return result[1], FakeProtocol(result[2], self)
178
 
 
179
 
    def call_with_body_bytes_expecting_body(self, method, args, body):
180
 
        self._calls.append(('call_with_body_bytes_expecting_body', method,
181
 
            args, body))
182
 
        result = self._get_next_response()
183
 
        self.expecting_body = True
184
 
        return result[1], FakeProtocol(result[2], self)
185
 
 
186
 
 
187
 
class FakeMedium(medium.SmartClientMedium):
188
 
 
189
 
    def __init__(self, client_calls, base):
190
 
        medium.SmartClientMedium.__init__(self, base)
191
 
        self._client_calls = client_calls
192
 
 
193
 
    def disconnect(self):
194
 
        self._client_calls.append(('disconnect medium',))
195
 
 
196
 
 
197
 
class TestVfsHas(tests.TestCase):
198
 
 
199
 
    def test_unicode_path(self):
200
 
        client = FakeClient('/')
201
 
        client.add_success_response('yes',)
202
 
        transport = RemoteTransport('bzr://localhost/', _client=client)
203
 
        filename = u'/hell\u00d8'.encode('utf8')
204
 
        result = transport.has(filename)
205
 
        self.assertEqual(
206
 
            [('call', 'has', (filename,))],
207
 
            client._calls)
208
 
        self.assertTrue(result)
209
 
 
210
 
 
211
 
class Test_ClientMedium_remote_path_from_transport(tests.TestCase):
212
 
    """Tests for the behaviour of client_medium.remote_path_from_transport."""
213
 
 
214
 
    def assertRemotePath(self, expected, client_base, transport_base):
215
 
        """Assert that the result of
216
 
        SmartClientMedium.remote_path_from_transport is the expected value for
217
 
        a given client_base and transport_base.
218
 
        """
219
 
        client_medium = medium.SmartClientMedium(client_base)
220
 
        transport = get_transport(transport_base)
221
 
        result = client_medium.remote_path_from_transport(transport)
222
 
        self.assertEqual(expected, result)
223
 
 
224
 
    def test_remote_path_from_transport(self):
225
 
        """SmartClientMedium.remote_path_from_transport calculates a URL for
226
 
        the given transport relative to the root of the client base URL.
227
 
        """
228
 
        self.assertRemotePath('xyz/', 'bzr://host/path', 'bzr://host/xyz')
229
 
        self.assertRemotePath(
230
 
            'path/xyz/', 'bzr://host/path', 'bzr://host/path/xyz')
231
 
 
232
 
    def assertRemotePathHTTP(self, expected, transport_base, relpath):
233
 
        """Assert that the result of
234
 
        HttpTransportBase.remote_path_from_transport is the expected value for
235
 
        a given transport_base and relpath of that transport.  (Note that
236
 
        HttpTransportBase is a subclass of SmartClientMedium)
237
 
        """
238
 
        base_transport = get_transport(transport_base)
239
 
        client_medium = base_transport.get_smart_medium()
240
 
        cloned_transport = base_transport.clone(relpath)
241
 
        result = client_medium.remote_path_from_transport(cloned_transport)
242
 
        self.assertEqual(expected, result)
243
 
        
244
 
    def test_remote_path_from_transport_http(self):
245
 
        """Remote paths for HTTP transports are calculated differently to other
246
 
        transports.  They are just relative to the client base, not the root
247
 
        directory of the host.
248
 
        """
249
 
        for scheme in ['http:', 'https:', 'bzr+http:', 'bzr+https:']:
250
 
            self.assertRemotePathHTTP(
251
 
                '../xyz/', scheme + '//host/path', '../xyz/')
252
 
            self.assertRemotePathHTTP(
253
 
                'xyz/', scheme + '//host/path', 'xyz/')
254
 
 
255
 
 
256
 
class Test_ClientMedium_remote_is_at_least(tests.TestCase):
257
 
    """Tests for the behaviour of client_medium.remote_is_at_least."""
258
 
 
259
 
    def test_initially_unlimited(self):
260
 
        """A fresh medium assumes that the remote side supports all
261
 
        versions.
262
 
        """
263
 
        client_medium = medium.SmartClientMedium('dummy base')
264
 
        self.assertFalse(client_medium._is_remote_before((99, 99)))
265
 
    
266
 
    def test__remember_remote_is_before(self):
267
 
        """Calling _remember_remote_is_before ratchets down the known remote
268
 
        version.
269
 
        """
270
 
        client_medium = medium.SmartClientMedium('dummy base')
271
 
        # Mark the remote side as being less than 1.6.  The remote side may
272
 
        # still be 1.5.
273
 
        client_medium._remember_remote_is_before((1, 6))
274
 
        self.assertTrue(client_medium._is_remote_before((1, 6)))
275
 
        self.assertFalse(client_medium._is_remote_before((1, 5)))
276
 
        # Calling _remember_remote_is_before again with a lower value works.
277
 
        client_medium._remember_remote_is_before((1, 5))
278
 
        self.assertTrue(client_medium._is_remote_before((1, 5)))
279
 
        # You cannot call _remember_remote_is_before with a larger value.
280
 
        self.assertRaises(
281
 
            AssertionError, client_medium._remember_remote_is_before, (1, 9))
 
144
        result = self.responses.pop(0)
 
145
        self.expecting_body = True
 
146
        return result[0], FakeProtocol(result[1], self)
282
147
 
283
148
 
284
149
class TestBzrDirOpenBranch(tests.TestCase):
285
150
 
286
151
    def test_branch_present(self):
 
152
        client = FakeClient([(('ok', ''), ), (('ok', '', 'no', 'no'), )])
287
153
        transport = MemoryTransport()
288
154
        transport.mkdir('quack')
289
155
        transport = transport.clone('quack')
290
 
        client = FakeClient(transport.base)
291
 
        client.add_success_response('ok', '')
292
 
        client.add_success_response('ok', '', 'no', 'no', 'no')
293
156
        bzrdir = RemoteBzrDir(transport, _client=client)
294
157
        result = bzrdir.open_branch()
295
158
        self.assertEqual(
296
 
            [('call', 'BzrDir.open_branch', ('quack/',)),
297
 
             ('call', 'BzrDir.find_repositoryV2', ('quack/',))],
 
159
            [('call', 'BzrDir.open_branch', ('///quack/',)),
 
160
             ('call', 'BzrDir.find_repository', ('///quack/',))],
298
161
            client._calls)
299
162
        self.assertIsInstance(result, RemoteBranch)
300
163
        self.assertEqual(bzrdir, result.bzrdir)
301
164
 
302
165
    def test_branch_missing(self):
 
166
        client = FakeClient([(('nobranch',), )])
303
167
        transport = MemoryTransport()
304
168
        transport.mkdir('quack')
305
169
        transport = transport.clone('quack')
306
 
        client = FakeClient(transport.base)
307
 
        client.add_error_response('nobranch')
308
170
        bzrdir = RemoteBzrDir(transport, _client=client)
309
171
        self.assertRaises(errors.NotBranchError, bzrdir.open_branch)
310
172
        self.assertEqual(
311
 
            [('call', 'BzrDir.open_branch', ('quack/',))],
312
 
            client._calls)
313
 
 
314
 
    def test__get_tree_branch(self):
315
 
        # _get_tree_branch is a form of open_branch, but it should only ask for
316
 
        # branch opening, not any other network requests.
317
 
        calls = []
318
 
        def open_branch():
319
 
            calls.append("Called")
320
 
            return "a-branch"
321
 
        transport = MemoryTransport()
322
 
        # no requests on the network - catches other api calls being made.
323
 
        client = FakeClient(transport.base)
324
 
        bzrdir = RemoteBzrDir(transport, _client=client)
325
 
        # patch the open_branch call to record that it was called.
326
 
        bzrdir.open_branch = open_branch
327
 
        self.assertEqual((None, "a-branch"), bzrdir._get_tree_branch())
328
 
        self.assertEqual(["Called"], calls)
329
 
        self.assertEqual([], client._calls)
330
 
 
331
 
    def test_url_quoting_of_path(self):
332
 
        # Relpaths on the wire should not be URL-escaped.  So "~" should be
333
 
        # transmitted as "~", not "%7E".
334
 
        transport = RemoteTCPTransport('bzr://localhost/~hello/')
335
 
        client = FakeClient(transport.base)
336
 
        client.add_success_response('ok', '')
337
 
        client.add_success_response('ok', '', 'no', 'no', 'no')
338
 
        bzrdir = RemoteBzrDir(transport, _client=client)
339
 
        result = bzrdir.open_branch()
340
 
        self.assertEqual(
341
 
            [('call', 'BzrDir.open_branch', ('~hello/',)),
342
 
             ('call', 'BzrDir.find_repositoryV2', ('~hello/',))],
343
 
            client._calls)
344
 
 
345
 
    def check_open_repository(self, rich_root, subtrees, external_lookup='no'):
346
 
        transport = MemoryTransport()
347
 
        transport.mkdir('quack')
348
 
        transport = transport.clone('quack')
 
173
            [('call', 'BzrDir.open_branch', ('///quack/',))],
 
174
            client._calls)
 
175
 
 
176
    def check_open_repository(self, rich_root, subtrees):
349
177
        if rich_root:
350
178
            rich_response = 'yes'
351
179
        else:
354
182
            subtree_response = 'yes'
355
183
        else:
356
184
            subtree_response = 'no'
357
 
        client = FakeClient(transport.base)
358
 
        client.add_success_response(
359
 
            'ok', '', rich_response, subtree_response, external_lookup)
 
185
        client = FakeClient([(('ok', '', rich_response, subtree_response), ),])
 
186
        transport = MemoryTransport()
 
187
        transport.mkdir('quack')
 
188
        transport = transport.clone('quack')
360
189
        bzrdir = RemoteBzrDir(transport, _client=client)
361
190
        result = bzrdir.open_repository()
362
191
        self.assertEqual(
363
 
            [('call', 'BzrDir.find_repositoryV2', ('quack/',))],
 
192
            [('call', 'BzrDir.find_repository', ('///quack/',))],
364
193
            client._calls)
365
194
        self.assertIsInstance(result, RemoteRepository)
366
195
        self.assertEqual(bzrdir, result.bzrdir)
372
201
        self.check_open_repository(False, True)
373
202
        self.check_open_repository(True, False)
374
203
        self.check_open_repository(False, False)
375
 
        self.check_open_repository(False, False, 'yes')
376
204
 
377
205
    def test_old_server(self):
378
206
        """RemoteBzrDirFormat should fail to probe if the server version is too
382
210
            RemoteBzrDirFormat.probe_transport, OldServerTransport())
383
211
 
384
212
 
385
 
class TestBzrDirOpenRepository(tests.TestCase):
386
 
 
387
 
    def test_backwards_compat_1_2(self):
388
 
        transport = MemoryTransport()
389
 
        transport.mkdir('quack')
390
 
        transport = transport.clone('quack')
391
 
        client = FakeClient(transport.base)
392
 
        client.add_unknown_method_response('RemoteRepository.find_repositoryV2')
393
 
        client.add_success_response('ok', '', 'no', 'no')
394
 
        bzrdir = RemoteBzrDir(transport, _client=client)
395
 
        repo = bzrdir.open_repository()
396
 
        self.assertEqual(
397
 
            [('call', 'BzrDir.find_repositoryV2', ('quack/',)),
398
 
             ('call', 'BzrDir.find_repository', ('quack/',))],
399
 
            client._calls)
400
 
 
401
 
 
402
213
class OldSmartClient(object):
403
214
    """A fake smart client for test_old_version that just returns a version one
404
215
    response to the 'hello' (query version) command.
411
222
            input_file, output_file)
412
223
        return medium.SmartClientStreamMediumRequest(client_medium)
413
224
 
414
 
    def protocol_version(self):
415
 
        return 1
416
 
 
417
225
 
418
226
class OldServerTransport(object):
419
227
    """A fake transport for test_old_server that reports it's smart server
431
239
 
432
240
    def test_empty_branch(self):
433
241
        # in an empty branch we decode the response properly
 
242
        client = FakeClient([(('ok', '0', 'null:'), )])
434
243
        transport = MemoryTransport()
435
 
        client = FakeClient(transport.base)
436
 
        client.add_success_response('ok', '0', 'null:')
437
244
        transport.mkdir('quack')
438
245
        transport = transport.clone('quack')
439
246
        # we do not want bzrdir to make any remote calls
442
249
        result = branch.last_revision_info()
443
250
 
444
251
        self.assertEqual(
445
 
            [('call', 'Branch.last_revision_info', ('quack/',))],
 
252
            [('call', 'Branch.last_revision_info', ('///quack/',))],
446
253
            client._calls)
447
254
        self.assertEqual((0, NULL_REVISION), result)
448
255
 
449
256
    def test_non_empty_branch(self):
450
257
        # in a non-empty branch we also decode the response properly
451
258
        revid = u'\xc8'.encode('utf8')
 
259
        client = FakeClient([(('ok', '2', revid), )])
452
260
        transport = MemoryTransport()
453
 
        client = FakeClient(transport.base)
454
 
        client.add_success_response('ok', '2', revid)
455
261
        transport.mkdir('kwaak')
456
262
        transport = transport.clone('kwaak')
457
263
        # we do not want bzrdir to make any remote calls
460
266
        result = branch.last_revision_info()
461
267
 
462
268
        self.assertEqual(
463
 
            [('call', 'Branch.last_revision_info', ('kwaak/',))],
 
269
            [('call', 'Branch.last_revision_info', ('///kwaak/',))],
464
270
            client._calls)
465
271
        self.assertEqual((2, revid), result)
466
272
 
470
276
    def test_set_empty(self):
471
277
        # set_revision_history([]) is translated to calling
472
278
        # Branch.set_last_revision(path, '') on the wire.
 
279
        client = FakeClient([
 
280
            # lock_write
 
281
            (('ok', 'branch token', 'repo token'), ),
 
282
            # set_last_revision
 
283
            (('ok',), ),
 
284
            # unlock
 
285
            (('ok',), )])
473
286
        transport = MemoryTransport()
474
287
        transport.mkdir('branch')
475
288
        transport = transport.clone('branch')
476
289
 
477
 
        client = FakeClient(transport.base)
478
 
        # lock_write
479
 
        client.add_success_response('ok', 'branch token', 'repo token')
480
 
        # set_last_revision
481
 
        client.add_success_response('ok')
482
 
        # unlock
483
 
        client.add_success_response('ok')
484
290
        bzrdir = RemoteBzrDir(transport, _client=False)
485
291
        branch = RemoteBranch(bzrdir, None, _client=client)
486
292
        # This is a hack to work around the problem that RemoteBranch currently
491
297
        result = branch.set_revision_history([])
492
298
        self.assertEqual(
493
299
            [('call', 'Branch.set_last_revision',
494
 
                ('branch/', 'branch token', 'repo token', 'null:'))],
 
300
                ('///branch/', 'branch token', 'repo token', 'null:'))],
495
301
            client._calls)
496
302
        branch.unlock()
497
303
        self.assertEqual(None, result)
499
305
    def test_set_nonempty(self):
500
306
        # set_revision_history([rev-id1, ..., rev-idN]) is translated to calling
501
307
        # Branch.set_last_revision(path, rev-idN) on the wire.
 
308
        client = FakeClient([
 
309
            # lock_write
 
310
            (('ok', 'branch token', 'repo token'), ),
 
311
            # set_last_revision
 
312
            (('ok',), ),
 
313
            # unlock
 
314
            (('ok',), )])
502
315
        transport = MemoryTransport()
503
316
        transport.mkdir('branch')
504
317
        transport = transport.clone('branch')
505
318
 
506
 
        client = FakeClient(transport.base)
507
 
        # lock_write
508
 
        client.add_success_response('ok', 'branch token', 'repo token')
509
 
        # set_last_revision
510
 
        client.add_success_response('ok')
511
 
        # unlock
512
 
        client.add_success_response('ok')
513
319
        bzrdir = RemoteBzrDir(transport, _client=False)
514
320
        branch = RemoteBranch(bzrdir, None, _client=client)
515
321
        # This is a hack to work around the problem that RemoteBranch currently
522
328
        result = branch.set_revision_history(['rev-id1', 'rev-id2'])
523
329
        self.assertEqual(
524
330
            [('call', 'Branch.set_last_revision',
525
 
                ('branch/', 'branch token', 'repo token', 'rev-id2'))],
 
331
                ('///branch/', 'branch token', 'repo token', 'rev-id2'))],
526
332
            client._calls)
527
333
        branch.unlock()
528
334
        self.assertEqual(None, result)
529
335
 
530
336
    def test_no_such_revision(self):
 
337
        # A response of 'NoSuchRevision' is translated into an exception.
 
338
        client = FakeClient([
 
339
            # lock_write
 
340
            (('ok', 'branch token', 'repo token'), ),
 
341
            # set_last_revision
 
342
            (('NoSuchRevision', 'rev-id'), ),
 
343
            # unlock
 
344
            (('ok',), )])
531
345
        transport = MemoryTransport()
532
346
        transport.mkdir('branch')
533
347
        transport = transport.clone('branch')
534
 
        # A response of 'NoSuchRevision' is translated into an exception.
535
 
        client = FakeClient(transport.base)
536
 
        # lock_write
537
 
        client.add_success_response('ok', 'branch token', 'repo token')
538
 
        # set_last_revision
539
 
        client.add_error_response('NoSuchRevision', 'rev-id')
540
 
        # unlock
541
 
        client.add_success_response('ok')
542
348
 
543
349
        bzrdir = RemoteBzrDir(transport, _client=False)
544
 
        repo = RemoteRepository(bzrdir, None, _client=client)
545
 
        branch = RemoteBranch(bzrdir, repo, _client=client)
 
350
        branch = RemoteBranch(bzrdir, None, _client=client)
546
351
        branch._ensure_real = lambda: None
547
352
        branch.lock_write()
548
353
        client._calls = []
551
356
            errors.NoSuchRevision, branch.set_revision_history, ['rev-id'])
552
357
        branch.unlock()
553
358
 
554
 
    def test_tip_change_rejected(self):
555
 
        """TipChangeRejected responses cause a TipChangeRejected exception to
556
 
        be raised.
557
 
        """
558
 
        transport = MemoryTransport()
559
 
        transport.mkdir('branch')
560
 
        transport = transport.clone('branch')
561
 
        client = FakeClient(transport.base)
562
 
        # lock_write
563
 
        client.add_success_response('ok', 'branch token', 'repo token')
564
 
        # set_last_revision
565
 
        rejection_msg_unicode = u'rejection message\N{INTERROBANG}'
566
 
        rejection_msg_utf8 = rejection_msg_unicode.encode('utf8')
567
 
        client.add_error_response('TipChangeRejected', rejection_msg_utf8)
568
 
        # unlock
569
 
        client.add_success_response('ok')
570
 
 
571
 
        bzrdir = RemoteBzrDir(transport, _client=False)
572
 
        repo = RemoteRepository(bzrdir, None, _client=client)
573
 
        branch = RemoteBranch(bzrdir, repo, _client=client)
574
 
        branch._ensure_real = lambda: None
575
 
        branch.lock_write()
576
 
        self.addCleanup(branch.unlock)
577
 
        client._calls = []
578
 
 
579
 
        # The 'TipChangeRejected' error response triggered by calling
580
 
        # set_revision_history causes a TipChangeRejected exception.
581
 
        err = self.assertRaises(
582
 
            errors.TipChangeRejected, branch.set_revision_history, ['rev-id'])
583
 
        # The UTF-8 message from the response has been decoded into a unicode
584
 
        # object.
585
 
        self.assertIsInstance(err.msg, unicode)
586
 
        self.assertEqual(rejection_msg_unicode, err.msg)
587
 
 
588
 
 
589
 
class TestBranchSetLastRevisionInfo(tests.TestCase):
590
 
 
591
 
    def test_set_last_revision_info(self):
592
 
        # set_last_revision_info(num, 'rev-id') is translated to calling
593
 
        # Branch.set_last_revision_info(num, 'rev-id') on the wire.
594
 
        transport = MemoryTransport()
595
 
        transport.mkdir('branch')
596
 
        transport = transport.clone('branch')
597
 
        client = FakeClient(transport.base)
598
 
        # lock_write
599
 
        client.add_success_response('ok', 'branch token', 'repo token')
600
 
        # set_last_revision
601
 
        client.add_success_response('ok')
602
 
        # unlock
603
 
        client.add_success_response('ok')
604
 
 
605
 
        bzrdir = RemoteBzrDir(transport, _client=False)
606
 
        branch = RemoteBranch(bzrdir, None, _client=client)
607
 
        # This is a hack to work around the problem that RemoteBranch currently
608
 
        # unnecessarily invokes _ensure_real upon a call to lock_write.
609
 
        branch._ensure_real = lambda: None
610
 
        # Lock the branch, reset the record of remote calls.
611
 
        branch.lock_write()
612
 
        client._calls = []
613
 
        result = branch.set_last_revision_info(1234, 'a-revision-id')
614
 
        self.assertEqual(
615
 
            [('call', 'Branch.set_last_revision_info',
616
 
                ('branch/', 'branch token', 'repo token',
617
 
                 '1234', 'a-revision-id'))],
618
 
            client._calls)
619
 
        self.assertEqual(None, result)
620
 
 
621
 
    def test_no_such_revision(self):
622
 
        # A response of 'NoSuchRevision' is translated into an exception.
623
 
        transport = MemoryTransport()
624
 
        transport.mkdir('branch')
625
 
        transport = transport.clone('branch')
626
 
        client = FakeClient(transport.base)
627
 
        # lock_write
628
 
        client.add_success_response('ok', 'branch token', 'repo token')
629
 
        # set_last_revision
630
 
        client.add_error_response('NoSuchRevision', 'revid')
631
 
        # unlock
632
 
        client.add_success_response('ok')
633
 
 
634
 
        bzrdir = RemoteBzrDir(transport, _client=False)
635
 
        repo = RemoteRepository(bzrdir, None, _client=client)
636
 
        branch = RemoteBranch(bzrdir, repo, _client=client)
637
 
        # This is a hack to work around the problem that RemoteBranch currently
638
 
        # unnecessarily invokes _ensure_real upon a call to lock_write.
639
 
        branch._ensure_real = lambda: None
640
 
        # Lock the branch, reset the record of remote calls.
641
 
        branch.lock_write()
642
 
        client._calls = []
643
 
 
644
 
        self.assertRaises(
645
 
            errors.NoSuchRevision, branch.set_last_revision_info, 123, 'revid')
646
 
        branch.unlock()
647
 
 
648
 
    def lock_remote_branch(self, branch):
649
 
        """Trick a RemoteBranch into thinking it is locked."""
650
 
        branch._lock_mode = 'w'
651
 
        branch._lock_count = 2
652
 
        branch._lock_token = 'branch token'
653
 
        branch._repo_lock_token = 'repo token'
654
 
 
655
 
    def test_backwards_compatibility(self):
656
 
        """If the server does not support the Branch.set_last_revision_info
657
 
        verb (which is new in 1.4), then the client falls back to VFS methods.
658
 
        """
659
 
        # This test is a little messy.  Unlike most tests in this file, it
660
 
        # doesn't purely test what a Remote* object sends over the wire, and
661
 
        # how it reacts to responses from the wire.  It instead relies partly
662
 
        # on asserting that the RemoteBranch will call
663
 
        # self._real_branch.set_last_revision_info(...).
664
 
 
665
 
        # First, set up our RemoteBranch with a FakeClient that raises
666
 
        # UnknownSmartMethod, and a StubRealBranch that logs how it is called.
667
 
        transport = MemoryTransport()
668
 
        transport.mkdir('branch')
669
 
        transport = transport.clone('branch')
670
 
        client = FakeClient(transport.base)
671
 
        client.add_unknown_method_response('Branch.set_last_revision_info')
672
 
        bzrdir = RemoteBzrDir(transport, _client=False)
673
 
        branch = RemoteBranch(bzrdir, None, _client=client)
674
 
        class StubRealBranch(object):
675
 
            def __init__(self):
676
 
                self.calls = []
677
 
            def set_last_revision_info(self, revno, revision_id):
678
 
                self.calls.append(
679
 
                    ('set_last_revision_info', revno, revision_id))
680
 
            def _clear_cached_state(self):
681
 
                pass
682
 
        real_branch = StubRealBranch()
683
 
        branch._real_branch = real_branch
684
 
        self.lock_remote_branch(branch)
685
 
 
686
 
        # Call set_last_revision_info, and verify it behaved as expected.
687
 
        result = branch.set_last_revision_info(1234, 'a-revision-id')
688
 
        self.assertEqual(
689
 
            [('call', 'Branch.set_last_revision_info',
690
 
                ('branch/', 'branch token', 'repo token',
691
 
                 '1234', 'a-revision-id')),],
692
 
            client._calls)
693
 
        self.assertEqual(
694
 
            [('set_last_revision_info', 1234, 'a-revision-id')],
695
 
            real_branch.calls)
696
 
 
697
 
    def test_unexpected_error(self):
698
 
        # A response of 'NoSuchRevision' is translated into an exception.
699
 
        transport = MemoryTransport()
700
 
        transport.mkdir('branch')
701
 
        transport = transport.clone('branch')
702
 
        client = FakeClient(transport.base)
703
 
        # lock_write
704
 
        client.add_success_response('ok', 'branch token', 'repo token')
705
 
        # set_last_revision
706
 
        client.add_error_response('UnexpectedError')
707
 
        # unlock
708
 
        client.add_success_response('ok')
709
 
 
710
 
        bzrdir = RemoteBzrDir(transport, _client=False)
711
 
        repo = RemoteRepository(bzrdir, None, _client=client)
712
 
        branch = RemoteBranch(bzrdir, repo, _client=client)
713
 
        # This is a hack to work around the problem that RemoteBranch currently
714
 
        # unnecessarily invokes _ensure_real upon a call to lock_write.
715
 
        branch._ensure_real = lambda: None
716
 
        # Lock the branch, reset the record of remote calls.
717
 
        branch.lock_write()
718
 
        client._calls = []
719
 
 
720
 
        err = self.assertRaises(
721
 
            errors.ErrorFromSmartServer,
722
 
            branch.set_last_revision_info, 123, 'revid')
723
 
        self.assertEqual(('UnexpectedError',), err.error_tuple)
724
 
        branch.unlock()
725
 
 
726
 
    def test_tip_change_rejected(self):
727
 
        """TipChangeRejected responses cause a TipChangeRejected exception to
728
 
        be raised.
729
 
        """
730
 
        transport = MemoryTransport()
731
 
        transport.mkdir('branch')
732
 
        transport = transport.clone('branch')
733
 
        client = FakeClient(transport.base)
734
 
        # lock_write
735
 
        client.add_success_response('ok', 'branch token', 'repo token')
736
 
        # set_last_revision
737
 
        client.add_error_response('TipChangeRejected', 'rejection message')
738
 
        # unlock
739
 
        client.add_success_response('ok')
740
 
 
741
 
        bzrdir = RemoteBzrDir(transport, _client=False)
742
 
        repo = RemoteRepository(bzrdir, None, _client=client)
743
 
        branch = RemoteBranch(bzrdir, repo, _client=client)
744
 
        # This is a hack to work around the problem that RemoteBranch currently
745
 
        # unnecessarily invokes _ensure_real upon a call to lock_write.
746
 
        branch._ensure_real = lambda: None
747
 
        # Lock the branch, reset the record of remote calls.
748
 
        branch.lock_write()
749
 
        self.addCleanup(branch.unlock)
750
 
        client._calls = []
751
 
 
752
 
        # The 'TipChangeRejected' error response triggered by calling
753
 
        # set_last_revision_info causes a TipChangeRejected exception.
754
 
        err = self.assertRaises(
755
 
            errors.TipChangeRejected,
756
 
            branch.set_last_revision_info, 123, 'revid')
757
 
        self.assertEqual('rejection message', err.msg)
758
 
 
759
359
 
760
360
class TestBranchControlGetBranchConf(tests.TestCaseWithMemoryTransport):
761
 
    """Getting the branch configuration should use an abstract method not vfs.
 
361
    """Test branch.control_files api munging...
 
362
 
 
363
    We special case RemoteBranch.control_files.get('branch.conf') to
 
364
    call a specific API so that RemoteBranch's can intercept configuration
 
365
    file reading, allowing them to signal to the client about things like
 
366
    'email is configured for commits'.
762
367
    """
763
368
 
764
369
    def test_get_branch_conf(self):
765
 
        raise tests.KnownFailure('branch.conf is not retrieved by get_config_file')
766
 
        ## # We should see that branch.get_config() does a single rpc to get the
767
 
        ## # remote configuration file, abstracting away where that is stored on
768
 
        ## # the server.  However at the moment it always falls back to using the
769
 
        ## # vfs, and this would need some changes in config.py.
770
 
 
771
 
        ## # in an empty branch we decode the response properly
772
 
        ## client = FakeClient([(('ok', ), '# config file body')], self.get_url())
773
 
        ## # we need to make a real branch because the remote_branch.control_files
774
 
        ## # will trigger _ensure_real.
775
 
        ## branch = self.make_branch('quack')
776
 
        ## transport = branch.bzrdir.root_transport
777
 
        ## # we do not want bzrdir to make any remote calls
778
 
        ## bzrdir = RemoteBzrDir(transport, _client=False)
779
 
        ## branch = RemoteBranch(bzrdir, None, _client=client)
780
 
        ## config = branch.get_config()
781
 
        ## self.assertEqual(
782
 
        ##     [('call_expecting_body', 'Branch.get_config_file', ('quack/',))],
783
 
        ##     client._calls)
 
370
        # in an empty branch we decode the response properly
 
371
        client = FakeClient([(('ok', ), 'config file body')])
 
372
        # we need to make a real branch because the remote_branch.control_files
 
373
        # will trigger _ensure_real.
 
374
        branch = self.make_branch('quack')
 
375
        transport = branch.bzrdir.root_transport
 
376
        # we do not want bzrdir to make any remote calls
 
377
        bzrdir = RemoteBzrDir(transport, _client=False)
 
378
        branch = RemoteBranch(bzrdir, None, _client=client)
 
379
        result = branch.control_files.get('branch.conf')
 
380
        self.assertEqual(
 
381
            [('call_expecting_body', 'Branch.get_config_file', ('///quack/',))],
 
382
            client._calls)
 
383
        self.assertEqual('config file body', result.read())
784
384
 
785
385
 
786
386
class TestBranchLockWrite(tests.TestCase):
787
387
 
788
388
    def test_lock_write_unlockable(self):
 
389
        client = FakeClient([(('UnlockableTransport', ), '')])
789
390
        transport = MemoryTransport()
790
 
        client = FakeClient(transport.base)
791
 
        client.add_error_response('UnlockableTransport')
792
391
        transport.mkdir('quack')
793
392
        transport = transport.clone('quack')
794
393
        # we do not want bzrdir to make any remote calls
795
394
        bzrdir = RemoteBzrDir(transport, _client=False)
796
 
        repo = RemoteRepository(bzrdir, None, _client=client)
797
 
        branch = RemoteBranch(bzrdir, repo, _client=client)
 
395
        branch = RemoteBranch(bzrdir, None, _client=client)
798
396
        self.assertRaises(errors.UnlockableTransport, branch.lock_write)
799
397
        self.assertEqual(
800
 
            [('call', 'Branch.lock_write', ('quack/', '', ''))],
 
398
            [('call', 'Branch.lock_write', ('///quack/', '', ''))],
801
399
            client._calls)
802
400
 
803
401
 
804
402
class TestTransportIsReadonly(tests.TestCase):
805
403
 
806
404
    def test_true(self):
807
 
        client = FakeClient()
808
 
        client.add_success_response('yes')
 
405
        client = FakeClient([(('yes',), '')])
809
406
        transport = RemoteTransport('bzr://example.com/', medium=False,
810
407
                                    _client=client)
811
408
        self.assertEqual(True, transport.is_readonly())
814
411
            client._calls)
815
412
 
816
413
    def test_false(self):
817
 
        client = FakeClient()
818
 
        client.add_success_response('no')
 
414
        client = FakeClient([(('no',), '')])
819
415
        transport = RemoteTransport('bzr://example.com/', medium=False,
820
416
                                    _client=client)
821
417
        self.assertEqual(False, transport.is_readonly())
830
426
        advisory anyway (a transport could be read-write, but then the
831
427
        underlying filesystem could be readonly anyway).
832
428
        """
833
 
        client = FakeClient()
834
 
        client.add_unknown_method_response('Transport.is_readonly')
 
429
        client = FakeClient([(
 
430
            ('error', "Generic bzr smart protocol error: "
 
431
                      "bad request 'Transport.is_readonly'"), '')])
 
432
        transport = RemoteTransport('bzr://example.com/', medium=False,
 
433
                                    _client=client)
 
434
        self.assertEqual(False, transport.is_readonly())
 
435
        self.assertEqual(
 
436
            [('call', 'Transport.is_readonly', ())],
 
437
            client._calls)
 
438
 
 
439
    def test_error_from_old_0_11_server(self):
 
440
        """Same as test_error_from_old_server, but with the slightly different
 
441
        error message from bzr 0.11 servers.
 
442
        """
 
443
        client = FakeClient([(
 
444
            ('error', "Generic bzr smart protocol error: "
 
445
                      "bad request u'Transport.is_readonly'"), '')])
835
446
        transport = RemoteTransport('bzr://example.com/', medium=False,
836
447
                                    _client=client)
837
448
        self.assertEqual(False, transport.is_readonly())
848
459
    because they might break compatibility with different-versioned servers.
849
460
    """
850
461
 
851
 
    def setup_fake_client_and_repository(self, transport_path):
 
462
    def setup_fake_client_and_repository(self, responses, transport_path):
852
463
        """Create the fake client and repository for testing with.
853
464
        
854
465
        There's no real server here; we just have canned responses sent
857
468
        :param transport_path: Path below the root of the MemoryTransport
858
469
            where the repository will be created.
859
470
        """
 
471
        client = FakeClient(responses)
860
472
        transport = MemoryTransport()
861
473
        transport.mkdir(transport_path)
862
 
        client = FakeClient(transport.base)
863
474
        transport = transport.clone(transport_path)
864
475
        # we do not want bzrdir to make any remote calls
865
476
        bzrdir = RemoteBzrDir(transport, _client=False)
871
482
 
872
483
    def test_revid_none(self):
873
484
        # ('ok',), body with revisions and size
 
485
        responses = [(('ok', ), 'revisions: 2\nsize: 18\n')]
874
486
        transport_path = 'quack'
875
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
876
 
        client.add_success_response_with_body(
877
 
            'revisions: 2\nsize: 18\n', 'ok')
 
487
        repo, client = self.setup_fake_client_and_repository(
 
488
            responses, transport_path)
878
489
        result = repo.gather_stats(None)
879
490
        self.assertEqual(
880
491
            [('call_expecting_body', 'Repository.gather_stats',
881
 
             ('quack/','','no'))],
 
492
             ('///quack/','','no'))],
882
493
            client._calls)
883
494
        self.assertEqual({'revisions': 2, 'size': 18}, result)
884
495
 
885
496
    def test_revid_no_committers(self):
886
497
        # ('ok',), body without committers
887
 
        body = ('firstrev: 123456.300 3600\n'
888
 
                'latestrev: 654231.400 0\n'
889
 
                'revisions: 2\n'
890
 
                'size: 18\n')
 
498
        responses = [(('ok', ),
 
499
                      'firstrev: 123456.300 3600\n'
 
500
                      'latestrev: 654231.400 0\n'
 
501
                      'revisions: 2\n'
 
502
                      'size: 18\n')]
891
503
        transport_path = 'quick'
892
504
        revid = u'\xc8'.encode('utf8')
893
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
894
 
        client.add_success_response_with_body(body, 'ok')
 
505
        repo, client = self.setup_fake_client_and_repository(
 
506
            responses, transport_path)
895
507
        result = repo.gather_stats(revid)
896
508
        self.assertEqual(
897
509
            [('call_expecting_body', 'Repository.gather_stats',
898
 
              ('quick/', revid, 'no'))],
 
510
              ('///quick/', revid, 'no'))],
899
511
            client._calls)
900
512
        self.assertEqual({'revisions': 2, 'size': 18,
901
513
                          'firstrev': (123456.300, 3600),
904
516
 
905
517
    def test_revid_with_committers(self):
906
518
        # ('ok',), body with committers
907
 
        body = ('committers: 128\n'
908
 
                'firstrev: 123456.300 3600\n'
909
 
                'latestrev: 654231.400 0\n'
910
 
                'revisions: 2\n'
911
 
                'size: 18\n')
 
519
        responses = [(('ok', ),
 
520
                      'committers: 128\n'
 
521
                      'firstrev: 123456.300 3600\n'
 
522
                      'latestrev: 654231.400 0\n'
 
523
                      'revisions: 2\n'
 
524
                      'size: 18\n')]
912
525
        transport_path = 'buick'
913
526
        revid = u'\xc8'.encode('utf8')
914
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
915
 
        client.add_success_response_with_body(body, 'ok')
 
527
        repo, client = self.setup_fake_client_and_repository(
 
528
            responses, transport_path)
916
529
        result = repo.gather_stats(revid, True)
917
530
        self.assertEqual(
918
531
            [('call_expecting_body', 'Repository.gather_stats',
919
 
              ('buick/', revid, 'yes'))],
 
532
              ('///buick/', revid, 'yes'))],
920
533
            client._calls)
921
534
        self.assertEqual({'revisions': 2, 'size': 18,
922
535
                          'committers': 128,
925
538
                         result)
926
539
 
927
540
 
928
 
class TestRepositoryGetGraph(TestRemoteRepository):
929
 
 
930
 
    def test_get_graph(self):
931
 
        # get_graph returns a graph with the repository as the
932
 
        # parents_provider.
933
 
        transport_path = 'quack'
934
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
935
 
        graph = repo.get_graph()
936
 
        self.assertEqual(graph._parents_provider, repo)
937
 
 
938
 
 
939
 
class TestRepositoryGetParentMap(TestRemoteRepository):
940
 
 
941
 
    def test_get_parent_map_caching(self):
942
 
        # get_parent_map returns from cache until unlock()
943
 
        # setup a reponse with two revisions
944
 
        r1 = u'\u0e33'.encode('utf8')
945
 
        r2 = u'\u0dab'.encode('utf8')
946
 
        lines = [' '.join([r2, r1]), r1]
947
 
        encoded_body = bz2.compress('\n'.join(lines))
948
 
 
949
 
        transport_path = 'quack'
950
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
951
 
        client.add_success_response_with_body(encoded_body, 'ok')
952
 
        client.add_success_response_with_body(encoded_body, 'ok')
953
 
        repo.lock_read()
954
 
        graph = repo.get_graph()
955
 
        parents = graph.get_parent_map([r2])
956
 
        self.assertEqual({r2: (r1,)}, parents)
957
 
        # locking and unlocking deeper should not reset
958
 
        repo.lock_read()
959
 
        repo.unlock()
960
 
        parents = graph.get_parent_map([r1])
961
 
        self.assertEqual({r1: (NULL_REVISION,)}, parents)
962
 
        self.assertEqual(
963
 
            [('call_with_body_bytes_expecting_body',
964
 
              'Repository.get_parent_map', ('quack/', r2), '\n\n0')],
965
 
            client._calls)
966
 
        repo.unlock()
967
 
        # now we call again, and it should use the second response.
968
 
        repo.lock_read()
969
 
        graph = repo.get_graph()
970
 
        parents = graph.get_parent_map([r1])
971
 
        self.assertEqual({r1: (NULL_REVISION,)}, parents)
972
 
        self.assertEqual(
973
 
            [('call_with_body_bytes_expecting_body',
974
 
              'Repository.get_parent_map', ('quack/', r2), '\n\n0'),
975
 
             ('call_with_body_bytes_expecting_body',
976
 
              'Repository.get_parent_map', ('quack/', r1), '\n\n0'),
977
 
            ],
978
 
            client._calls)
979
 
        repo.unlock()
980
 
 
981
 
    def test_get_parent_map_reconnects_if_unknown_method(self):
982
 
        transport_path = 'quack'
983
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
984
 
        client.add_unknown_method_response('Repository,get_parent_map')
985
 
        client.add_success_response_with_body('', 'ok')
986
 
        self.assertFalse(client._medium._is_remote_before((1, 2)))
987
 
        rev_id = 'revision-id'
988
 
        expected_deprecations = [
989
 
            'bzrlib.remote.RemoteRepository.get_revision_graph was deprecated '
990
 
            'in version 1.4.']
991
 
        parents = self.callDeprecated(
992
 
            expected_deprecations, repo.get_parent_map, [rev_id])
993
 
        self.assertEqual(
994
 
            [('call_with_body_bytes_expecting_body',
995
 
              'Repository.get_parent_map', ('quack/', rev_id), '\n\n0'),
996
 
             ('disconnect medium',),
997
 
             ('call_expecting_body', 'Repository.get_revision_graph',
998
 
              ('quack/', ''))],
999
 
            client._calls)
1000
 
        # The medium is now marked as being connected to an older server
1001
 
        self.assertTrue(client._medium._is_remote_before((1, 2)))
1002
 
 
1003
 
    def test_get_parent_map_fallback_parentless_node(self):
1004
 
        """get_parent_map falls back to get_revision_graph on old servers.  The
1005
 
        results from get_revision_graph are tweaked to match the get_parent_map
1006
 
        API.
1007
 
 
1008
 
        Specifically, a {key: ()} result from get_revision_graph means "no
1009
 
        parents" for that key, which in get_parent_map results should be
1010
 
        represented as {key: ('null:',)}.
1011
 
 
1012
 
        This is the test for https://bugs.launchpad.net/bzr/+bug/214894
1013
 
        """
1014
 
        rev_id = 'revision-id'
1015
 
        transport_path = 'quack'
1016
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1017
 
        client.add_success_response_with_body(rev_id, 'ok')
1018
 
        client._medium._remember_remote_is_before((1, 2))
1019
 
        expected_deprecations = [
1020
 
            'bzrlib.remote.RemoteRepository.get_revision_graph was deprecated '
1021
 
            'in version 1.4.']
1022
 
        parents = self.callDeprecated(
1023
 
            expected_deprecations, repo.get_parent_map, [rev_id])
1024
 
        self.assertEqual(
1025
 
            [('call_expecting_body', 'Repository.get_revision_graph',
1026
 
             ('quack/', ''))],
1027
 
            client._calls)
1028
 
        self.assertEqual({rev_id: ('null:',)}, parents)
1029
 
 
1030
 
    def test_get_parent_map_unexpected_response(self):
1031
 
        repo, client = self.setup_fake_client_and_repository('path')
1032
 
        client.add_success_response('something unexpected!')
1033
 
        self.assertRaises(
1034
 
            errors.UnexpectedSmartServerResponse,
1035
 
            repo.get_parent_map, ['a-revision-id'])
1036
 
 
1037
 
 
1038
541
class TestRepositoryGetRevisionGraph(TestRemoteRepository):
1039
542
    
1040
543
    def test_null_revision(self):
1041
544
        # a null revision has the predictable result {}, we should have no wire
1042
545
        # traffic when calling it with this argument
 
546
        responses = [(('notused', ), '')]
1043
547
        transport_path = 'empty'
1044
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1045
 
        client.add_success_response('notused')
1046
 
        result = self.applyDeprecated(one_four, repo.get_revision_graph,
1047
 
            NULL_REVISION)
 
548
        repo, client = self.setup_fake_client_and_repository(
 
549
            responses, transport_path)
 
550
        result = repo.get_revision_graph(NULL_REVISION)
1048
551
        self.assertEqual([], client._calls)
1049
552
        self.assertEqual({}, result)
1050
553
 
1055
558
        lines = [' '.join([r2, r1]), r1]
1056
559
        encoded_body = '\n'.join(lines)
1057
560
 
 
561
        responses = [(('ok', ), encoded_body)]
1058
562
        transport_path = 'sinhala'
1059
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1060
 
        client.add_success_response_with_body(encoded_body, 'ok')
1061
 
        result = self.applyDeprecated(one_four, repo.get_revision_graph)
 
563
        repo, client = self.setup_fake_client_and_repository(
 
564
            responses, transport_path)
 
565
        result = repo.get_revision_graph()
1062
566
        self.assertEqual(
1063
567
            [('call_expecting_body', 'Repository.get_revision_graph',
1064
 
             ('sinhala/', ''))],
 
568
             ('///sinhala/', ''))],
1065
569
            client._calls)
1066
570
        self.assertEqual({r1: (), r2: (r1, )}, result)
1067
571
 
1074
578
        lines = [' '.join([r2, r11, r12]), r11, r12]
1075
579
        encoded_body = '\n'.join(lines)
1076
580
 
 
581
        responses = [(('ok', ), encoded_body)]
1077
582
        transport_path = 'sinhala'
1078
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1079
 
        client.add_success_response_with_body(encoded_body, 'ok')
1080
 
        result = self.applyDeprecated(one_four, repo.get_revision_graph, r2)
 
583
        repo, client = self.setup_fake_client_and_repository(
 
584
            responses, transport_path)
 
585
        result = repo.get_revision_graph(r2)
1081
586
        self.assertEqual(
1082
587
            [('call_expecting_body', 'Repository.get_revision_graph',
1083
 
             ('sinhala/', r2))],
 
588
             ('///sinhala/', r2))],
1084
589
            client._calls)
1085
590
        self.assertEqual({r11: (), r12: (), r2: (r11, r12), }, result)
1086
591
 
1087
592
    def test_no_such_revision(self):
1088
593
        revid = '123'
 
594
        responses = [(('nosuchrevision', revid), '')]
1089
595
        transport_path = 'sinhala'
1090
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1091
 
        client.add_error_response('nosuchrevision', revid)
 
596
        repo, client = self.setup_fake_client_and_repository(
 
597
            responses, transport_path)
1092
598
        # also check that the right revision is reported in the error
1093
599
        self.assertRaises(errors.NoSuchRevision,
1094
 
            self.applyDeprecated, one_four, repo.get_revision_graph, revid)
 
600
            repo.get_revision_graph, revid)
1095
601
        self.assertEqual(
1096
602
            [('call_expecting_body', 'Repository.get_revision_graph',
1097
 
             ('sinhala/', revid))],
 
603
             ('///sinhala/', revid))],
1098
604
            client._calls)
1099
605
 
1100
 
    def test_unexpected_error(self):
1101
 
        revid = '123'
1102
 
        transport_path = 'sinhala'
1103
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1104
 
        client.add_error_response('AnUnexpectedError')
1105
 
        e = self.assertRaises(errors.ErrorFromSmartServer,
1106
 
            self.applyDeprecated, one_four, repo.get_revision_graph, revid)
1107
 
        self.assertEqual(('AnUnexpectedError',), e.error_tuple)
1108
 
 
1109
606
        
1110
607
class TestRepositoryIsShared(TestRemoteRepository):
1111
608
 
1112
609
    def test_is_shared(self):
1113
610
        # ('yes', ) for Repository.is_shared -> 'True'.
 
611
        responses = [(('yes', ), )]
1114
612
        transport_path = 'quack'
1115
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1116
 
        client.add_success_response('yes')
 
613
        repo, client = self.setup_fake_client_and_repository(
 
614
            responses, transport_path)
1117
615
        result = repo.is_shared()
1118
616
        self.assertEqual(
1119
 
            [('call', 'Repository.is_shared', ('quack/',))],
 
617
            [('call', 'Repository.is_shared', ('///quack/',))],
1120
618
            client._calls)
1121
619
        self.assertEqual(True, result)
1122
620
 
1123
621
    def test_is_not_shared(self):
1124
622
        # ('no', ) for Repository.is_shared -> 'False'.
 
623
        responses = [(('no', ), )]
1125
624
        transport_path = 'qwack'
1126
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1127
 
        client.add_success_response('no')
 
625
        repo, client = self.setup_fake_client_and_repository(
 
626
            responses, transport_path)
1128
627
        result = repo.is_shared()
1129
628
        self.assertEqual(
1130
 
            [('call', 'Repository.is_shared', ('qwack/',))],
 
629
            [('call', 'Repository.is_shared', ('///qwack/',))],
1131
630
            client._calls)
1132
631
        self.assertEqual(False, result)
1133
632
 
1135
634
class TestRepositoryLockWrite(TestRemoteRepository):
1136
635
 
1137
636
    def test_lock_write(self):
 
637
        responses = [(('ok', 'a token'), '')]
1138
638
        transport_path = 'quack'
1139
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1140
 
        client.add_success_response('ok', 'a token')
 
639
        repo, client = self.setup_fake_client_and_repository(
 
640
            responses, transport_path)
1141
641
        result = repo.lock_write()
1142
642
        self.assertEqual(
1143
 
            [('call', 'Repository.lock_write', ('quack/', ''))],
 
643
            [('call', 'Repository.lock_write', ('///quack/', ''))],
1144
644
            client._calls)
1145
645
        self.assertEqual('a token', result)
1146
646
 
1147
647
    def test_lock_write_already_locked(self):
 
648
        responses = [(('LockContention', ), '')]
1148
649
        transport_path = 'quack'
1149
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1150
 
        client.add_error_response('LockContention')
 
650
        repo, client = self.setup_fake_client_and_repository(
 
651
            responses, transport_path)
1151
652
        self.assertRaises(errors.LockContention, repo.lock_write)
1152
653
        self.assertEqual(
1153
 
            [('call', 'Repository.lock_write', ('quack/', ''))],
 
654
            [('call', 'Repository.lock_write', ('///quack/', ''))],
1154
655
            client._calls)
1155
656
 
1156
657
    def test_lock_write_unlockable(self):
 
658
        responses = [(('UnlockableTransport', ), '')]
1157
659
        transport_path = 'quack'
1158
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1159
 
        client.add_error_response('UnlockableTransport')
 
660
        repo, client = self.setup_fake_client_and_repository(
 
661
            responses, transport_path)
1160
662
        self.assertRaises(errors.UnlockableTransport, repo.lock_write)
1161
663
        self.assertEqual(
1162
 
            [('call', 'Repository.lock_write', ('quack/', ''))],
 
664
            [('call', 'Repository.lock_write', ('///quack/', ''))],
1163
665
            client._calls)
1164
666
 
1165
667
 
1166
668
class TestRepositoryUnlock(TestRemoteRepository):
1167
669
 
1168
670
    def test_unlock(self):
 
671
        responses = [(('ok', 'a token'), ''),
 
672
                     (('ok',), '')]
1169
673
        transport_path = 'quack'
1170
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1171
 
        client.add_success_response('ok', 'a token')
1172
 
        client.add_success_response('ok')
 
674
        repo, client = self.setup_fake_client_and_repository(
 
675
            responses, transport_path)
1173
676
        repo.lock_write()
1174
677
        repo.unlock()
1175
678
        self.assertEqual(
1176
 
            [('call', 'Repository.lock_write', ('quack/', '')),
1177
 
             ('call', 'Repository.unlock', ('quack/', 'a token'))],
 
679
            [('call', 'Repository.lock_write', ('///quack/', '')),
 
680
             ('call', 'Repository.unlock', ('///quack/', 'a token'))],
1178
681
            client._calls)
1179
682
 
1180
683
    def test_unlock_wrong_token(self):
1181
684
        # If somehow the token is wrong, unlock will raise TokenMismatch.
 
685
        responses = [(('ok', 'a token'), ''),
 
686
                     (('TokenMismatch',), '')]
1182
687
        transport_path = 'quack'
1183
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1184
 
        client.add_success_response('ok', 'a token')
1185
 
        client.add_error_response('TokenMismatch')
 
688
        repo, client = self.setup_fake_client_and_repository(
 
689
            responses, transport_path)
1186
690
        repo.lock_write()
1187
691
        self.assertRaises(errors.TokenMismatch, repo.unlock)
1188
692
 
1192
696
    def test_none(self):
1193
697
        # repo.has_revision(None) should not cause any traffic.
1194
698
        transport_path = 'quack'
1195
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
 
699
        responses = None
 
700
        repo, client = self.setup_fake_client_and_repository(
 
701
            responses, transport_path)
1196
702
 
1197
703
        # The null revision is always there, so has_revision(None) == True.
1198
 
        self.assertEqual(True, repo.has_revision(NULL_REVISION))
 
704
        self.assertEqual(True, repo.has_revision(None))
1199
705
 
1200
706
        # The remote repo shouldn't be accessed.
1201
707
        self.assertEqual([], client._calls)
1222
728
    def test_repository_tarball(self):
1223
729
        # Test that Repository.tarball generates the right operations
1224
730
        transport_path = 'repo'
 
731
        expected_responses = [(('ok',), self.tarball_content),
 
732
            ]
1225
733
        expected_calls = [('call_expecting_body', 'Repository.tarball',
1226
 
                           ('repo/', 'bz2',),),
 
734
                           ('///repo/', 'bz2',),),
1227
735
            ]
1228
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
1229
 
        client.add_success_response_with_body(self.tarball_content, 'ok')
 
736
        remote_repo, client = self.setup_fake_client_and_repository(
 
737
            expected_responses, transport_path)
1230
738
        # Now actually ask for the tarball
1231
 
        tarball_file = repo._get_tarball('bz2')
 
739
        tarball_file = remote_repo._get_tarball('bz2')
1232
740
        try:
1233
741
            self.assertEqual(expected_calls, client._calls)
1234
742
            self.assertEqual(self.tarball_content, tarball_file.read())
1255
763
        src_repo.copy_content_into(dest_repo)
1256
764
 
1257
765
 
1258
 
class TestErrorTranslationBase(tests.TestCaseWithMemoryTransport):
1259
 
    """Base class for unit tests for bzrlib.remote._translate_error."""
1260
 
 
1261
 
    def translateTuple(self, error_tuple, **context):
1262
 
        """Call _translate_error with an ErrorFromSmartServer built from the
1263
 
        given error_tuple.
1264
 
 
1265
 
        :param error_tuple: A tuple of a smart server response, as would be
1266
 
            passed to an ErrorFromSmartServer.
1267
 
        :kwargs context: context items to call _translate_error with.
1268
 
 
1269
 
        :returns: The error raised by _translate_error.
1270
 
        """
1271
 
        # Raise the ErrorFromSmartServer before passing it as an argument,
1272
 
        # because _translate_error may need to re-raise it with a bare 'raise'
1273
 
        # statement.
1274
 
        server_error = errors.ErrorFromSmartServer(error_tuple)
1275
 
        translated_error = self.translateErrorFromSmartServer(
1276
 
            server_error, **context)
1277
 
        return translated_error
1278
 
 
1279
 
    def translateErrorFromSmartServer(self, error_object, **context):
1280
 
        """Like translateTuple, but takes an already constructed
1281
 
        ErrorFromSmartServer rather than a tuple.
1282
 
        """
1283
 
        try:
1284
 
            raise error_object
1285
 
        except errors.ErrorFromSmartServer, server_error:
1286
 
            translated_error = self.assertRaises(
1287
 
                errors.BzrError, remote._translate_error, server_error,
1288
 
                **context)
1289
 
        return translated_error
1290
 
 
1291
 
    
1292
 
class TestErrorTranslationSuccess(TestErrorTranslationBase):
1293
 
    """Unit tests for bzrlib.remote._translate_error.
1294
 
    
1295
 
    Given an ErrorFromSmartServer (which has an error tuple from a smart
1296
 
    server) and some context, _translate_error raises more specific errors from
1297
 
    bzrlib.errors.
1298
 
 
1299
 
    This test case covers the cases where _translate_error succeeds in
1300
 
    translating an ErrorFromSmartServer to something better.  See
1301
 
    TestErrorTranslationRobustness for other cases.
1302
 
    """
1303
 
 
1304
 
    def test_NoSuchRevision(self):
1305
 
        branch = self.make_branch('')
1306
 
        revid = 'revid'
1307
 
        translated_error = self.translateTuple(
1308
 
            ('NoSuchRevision', revid), branch=branch)
1309
 
        expected_error = errors.NoSuchRevision(branch, revid)
1310
 
        self.assertEqual(expected_error, translated_error)
1311
 
 
1312
 
    def test_nosuchrevision(self):
1313
 
        repository = self.make_repository('')
1314
 
        revid = 'revid'
1315
 
        translated_error = self.translateTuple(
1316
 
            ('nosuchrevision', revid), repository=repository)
1317
 
        expected_error = errors.NoSuchRevision(repository, revid)
1318
 
        self.assertEqual(expected_error, translated_error)
1319
 
 
1320
 
    def test_nobranch(self):
1321
 
        bzrdir = self.make_bzrdir('')
1322
 
        translated_error = self.translateTuple(('nobranch',), bzrdir=bzrdir)
1323
 
        expected_error = errors.NotBranchError(path=bzrdir.root_transport.base)
1324
 
        self.assertEqual(expected_error, translated_error)
1325
 
 
1326
 
    def test_LockContention(self):
1327
 
        translated_error = self.translateTuple(('LockContention',))
1328
 
        expected_error = errors.LockContention('(remote lock)')
1329
 
        self.assertEqual(expected_error, translated_error)
1330
 
 
1331
 
    def test_UnlockableTransport(self):
1332
 
        bzrdir = self.make_bzrdir('')
1333
 
        translated_error = self.translateTuple(
1334
 
            ('UnlockableTransport',), bzrdir=bzrdir)
1335
 
        expected_error = errors.UnlockableTransport(bzrdir.root_transport)
1336
 
        self.assertEqual(expected_error, translated_error)
1337
 
 
1338
 
    def test_LockFailed(self):
1339
 
        lock = 'str() of a server lock'
1340
 
        why = 'str() of why'
1341
 
        translated_error = self.translateTuple(('LockFailed', lock, why))
1342
 
        expected_error = errors.LockFailed(lock, why)
1343
 
        self.assertEqual(expected_error, translated_error)
1344
 
 
1345
 
    def test_TokenMismatch(self):
1346
 
        token = 'a lock token'
1347
 
        translated_error = self.translateTuple(('TokenMismatch',), token=token)
1348
 
        expected_error = errors.TokenMismatch(token, '(remote token)')
1349
 
        self.assertEqual(expected_error, translated_error)
1350
 
 
1351
 
    def test_Diverged(self):
1352
 
        branch = self.make_branch('a')
1353
 
        other_branch = self.make_branch('b')
1354
 
        translated_error = self.translateTuple(
1355
 
            ('Diverged',), branch=branch, other_branch=other_branch)
1356
 
        expected_error = errors.DivergedBranches(branch, other_branch)
1357
 
        self.assertEqual(expected_error, translated_error)
1358
 
 
1359
 
 
1360
 
class TestErrorTranslationRobustness(TestErrorTranslationBase):
1361
 
    """Unit tests for bzrlib.remote._translate_error's robustness.
1362
 
    
1363
 
    TestErrorTranslationSuccess is for cases where _translate_error can
1364
 
    translate successfully.  This class about how _translate_err behaves when
1365
 
    it fails to translate: it re-raises the original error.
1366
 
    """
1367
 
 
1368
 
    def test_unrecognised_server_error(self):
1369
 
        """If the error code from the server is not recognised, the original
1370
 
        ErrorFromSmartServer is propagated unmodified.
1371
 
        """
1372
 
        error_tuple = ('An unknown error tuple',)
1373
 
        server_error = errors.ErrorFromSmartServer(error_tuple)
1374
 
        translated_error = self.translateErrorFromSmartServer(server_error)
1375
 
        self.assertEqual(server_error, translated_error)
1376
 
 
1377
 
    def test_context_missing_a_key(self):
1378
 
        """In case of a bug in the client, or perhaps an unexpected response
1379
 
        from a server, _translate_error returns the original error tuple from
1380
 
        the server and mutters a warning.
1381
 
        """
1382
 
        # To translate a NoSuchRevision error _translate_error needs a 'branch'
1383
 
        # in the context dict.  So let's give it an empty context dict instead
1384
 
        # to exercise its error recovery.
1385
 
        empty_context = {}
1386
 
        error_tuple = ('NoSuchRevision', 'revid')
1387
 
        server_error = errors.ErrorFromSmartServer(error_tuple)
1388
 
        translated_error = self.translateErrorFromSmartServer(server_error)
1389
 
        self.assertEqual(server_error, translated_error)
1390
 
        # In addition to re-raising ErrorFromSmartServer, some debug info has
1391
 
        # been muttered to the log file for developer to look at.
1392
 
        self.assertContainsRe(
1393
 
            self._get_log(keep_log_file=True),
1394
 
            "Missing key 'branch' in context")
 
766
class TestRepositoryStreamKnitData(TestRemoteRepository):
 
767
 
 
768
    def make_pack_file(self, records):
 
769
        pack_file = StringIO()
 
770
        pack_writer = pack.ContainerWriter(pack_file.write)
 
771
        pack_writer.begin()
 
772
        for bytes, names in records:
 
773
            pack_writer.add_bytes_record(bytes, names)
 
774
        pack_writer.end()
 
775
        pack_file.seek(0)
 
776
        return pack_file
 
777
 
 
778
    def test_bad_pack_from_server(self):
 
779
        """A response with invalid data (e.g. it has a record with multiple
 
780
        names) triggers an exception.
1395
781
        
 
782
        Not all possible errors will be caught at this stage, but obviously
 
783
        malformed data should be.
 
784
        """
 
785
        record = ('bytes', [('name1',), ('name2',)])
 
786
        pack_file = self.make_pack_file([record])
 
787
        responses = [(('ok',), pack_file.getvalue()), ]
 
788
        transport_path = 'quack'
 
789
        repo, client = self.setup_fake_client_and_repository(
 
790
            responses, transport_path)
 
791
        stream = repo.get_data_stream(['revid'])
 
792
        self.assertRaises(errors.SmartProtocolError, list, stream)
 
793
    
 
794
    def test_backwards_compatibility(self):
 
795
        """If the server doesn't recognise this request, fallback to VFS."""
 
796
        error_msg = (
 
797
            "Generic bzr smart protocol error: "
 
798
            "bad request 'Repository.stream_knit_data_for_revisions'")
 
799
        responses = [
 
800
            (('error', error_msg), '')]
 
801
        repo, client = self.setup_fake_client_and_repository(
 
802
            responses, 'path')
 
803
        self.mock_called = False
 
804
        repo._real_repository = MockRealRepository(self)
 
805
        repo.get_data_stream(['revid'])
 
806
        self.assertTrue(self.mock_called)
 
807
        self.failIf(client.expecting_body,
 
808
            "The protocol has been left in an unclean state that will cause "
 
809
            "TooManyConcurrentRequests errors.")
 
810
 
 
811
 
 
812
class MockRealRepository(object):
 
813
    """Helper class for TestRepositoryStreamKnitData.test_unknown_method."""
 
814
 
 
815
    def __init__(self, test):
 
816
        self.test = test
 
817
 
 
818
    def get_data_stream(self, revision_ids):
 
819
        self.test.assertEqual(['revid'], revision_ids)
 
820
        self.test.mock_called = True
 
821
 
 
822