~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-07-19 16:09:34 UTC
  • mfrom: (2520.4.135 bzr.mpbundle)
  • Revision ID: pqm@pqm.ubuntu.com-20070719160934-d51fyijw69oto88p
Add new bundle and merge-directive formats

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2011 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
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Tests for remote bzrdir/branch/repo/etc
18
18
 
19
19
These are proxy objects which act on remote objects by sending messages
20
20
through a smart client.  The proxies are to be created when attempting to open
21
 
the object given a transport that supports smartserver rpc operations.
 
21
the object given a transport that supports smartserver rpc operations. 
22
22
 
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
 
import zlib
29
27
 
30
28
from bzrlib import (
31
 
    branch,
32
29
    bzrdir,
33
 
    config,
34
 
    controldir,
35
30
    errors,
36
 
    graph as _mod_graph,
37
 
    inventory,
38
 
    inventory_delta,
39
31
    remote,
40
32
    repository,
41
33
    tests,
42
 
    transport,
43
 
    treebuilder,
44
 
    versionedfile,
45
 
    vf_search,
46
34
    )
47
35
from bzrlib.branch import Branch
48
 
from bzrlib.bzrdir import (
49
 
    BzrDir,
50
 
    BzrDirFormat,
51
 
    RemoteBzrProber,
52
 
    )
53
 
from bzrlib.chk_serializer import chk_bencode_serializer
 
36
from bzrlib.bzrdir import BzrDir, BzrDirFormat
54
37
from bzrlib.remote import (
55
38
    RemoteBranch,
56
 
    RemoteBranchFormat,
57
39
    RemoteBzrDir,
58
40
    RemoteBzrDirFormat,
59
41
    RemoteRepository,
60
 
    RemoteRepositoryFormat,
61
 
    )
62
 
from bzrlib.repofmt import groupcompress_repo, knitpack_repo
63
 
from bzrlib.revision import (
64
 
    NULL_REVISION,
65
 
    Revision,
66
 
    )
67
 
from bzrlib.smart import medium, request
 
42
    )
 
43
from bzrlib.revision import NULL_REVISION
 
44
from bzrlib.smart import server, medium
68
45
from bzrlib.smart.client import _SmartClient
69
 
from bzrlib.smart.repository import (
70
 
    SmartServerRepositoryGetParentMap,
71
 
    SmartServerRepositoryGetStream_1_19,
72
 
    _stream_to_byte_stream,
73
 
    )
74
 
from bzrlib.symbol_versioning import deprecated_in
75
 
from bzrlib.tests import (
76
 
    test_server,
77
 
    )
78
 
from bzrlib.tests.scenarios import load_tests_apply_scenarios
79
46
from bzrlib.transport.memory import MemoryTransport
80
 
from bzrlib.transport.remote import (
81
 
    RemoteTransport,
82
 
    RemoteSSHTransport,
83
 
    RemoteTCPTransport,
84
 
    )
85
 
 
86
 
 
87
 
load_tests = load_tests_apply_scenarios
 
47
from bzrlib.transport.remote import RemoteTransport
88
48
 
89
49
 
90
50
class BasicRemoteObjectTests(tests.TestCaseWithTransport):
91
51
 
92
 
    scenarios = [
93
 
        ('HPSS-v2',
94
 
            {'transport_server': test_server.SmartTCPServer_for_testing_v2_only}),
95
 
        ('HPSS-v3',
96
 
            {'transport_server': test_server.SmartTCPServer_for_testing})]
97
 
 
98
 
 
99
52
    def setUp(self):
 
53
        self.transport_server = server.SmartTCPServer_for_testing
100
54
        super(BasicRemoteObjectTests, self).setUp()
101
55
        self.transport = self.get_transport()
 
56
        self.client = self.transport.get_smart_client()
102
57
        # make a branch that can be opened over the smart transport
103
58
        self.local_wt = BzrDir.create_standalone_workingtree('.')
104
 
        self.addCleanup(self.transport.disconnect)
 
59
 
 
60
    def tearDown(self):
 
61
        self.transport.disconnect()
 
62
        tests.TestCaseWithTransport.tearDown(self)
105
63
 
106
64
    def test_create_remote_bzrdir(self):
107
 
        b = remote.RemoteBzrDir(self.transport, RemoteBzrDirFormat())
 
65
        b = remote.RemoteBzrDir(self.transport)
108
66
        self.assertIsInstance(b, BzrDir)
109
67
 
110
68
    def test_open_remote_branch(self):
111
69
        # open a standalone branch in the working directory
112
 
        b = remote.RemoteBzrDir(self.transport, RemoteBzrDirFormat())
 
70
        b = remote.RemoteBzrDir(self.transport)
113
71
        branch = b.open_branch()
114
72
        self.assertIsInstance(branch, Branch)
115
73
 
123
81
 
124
82
    def test_remote_branch_revision_history(self):
125
83
        b = BzrDir.open_from_transport(self.transport).open_branch()
126
 
        self.assertEqual([],
127
 
            self.applyDeprecated(deprecated_in((2, 5, 0)), b.revision_history))
 
84
        self.assertEqual([], b.revision_history())
128
85
        r1 = self.local_wt.commit('1st commit')
129
86
        r2 = self.local_wt.commit('1st commit', rev_id=u'\xc8'.encode('utf8'))
130
 
        self.assertEqual([r1, r2],
131
 
            self.applyDeprecated(deprecated_in((2, 5, 0)), b.revision_history))
 
87
        self.assertEqual([r1, r2], b.revision_history())
132
88
 
133
89
    def test_find_correct_format(self):
134
90
        """Should open a RemoteBzrDir over a RemoteTransport"""
135
91
        fmt = BzrDirFormat.find_format(self.transport)
136
 
        self.assertTrue(bzrdir.RemoteBzrProber
137
 
                        in controldir.ControlDirFormat._server_probers)
138
 
        self.assertIsInstance(fmt, RemoteBzrDirFormat)
 
92
        self.assertTrue(RemoteBzrDirFormat
 
93
                        in BzrDirFormat._control_server_formats)
 
94
        self.assertIsInstance(fmt, remote.RemoteBzrDirFormat)
139
95
 
140
96
    def test_open_detected_smart_format(self):
141
97
        fmt = BzrDirFormat.find_format(self.transport)
146
102
        b = BzrDir.open_from_transport(self.transport).open_branch()
147
103
        self.assertStartsWith(str(b), 'RemoteBranch(')
148
104
 
149
 
    def test_remote_bzrdir_repr(self):
150
 
        b = BzrDir.open_from_transport(self.transport)
151
 
        self.assertStartsWith(str(b), 'RemoteBzrDir(')
152
 
 
153
 
    def test_remote_branch_format_supports_stacking(self):
154
 
        t = self.transport
155
 
        self.make_branch('unstackable', format='pack-0.92')
156
 
        b = BzrDir.open_from_transport(t.clone('unstackable')).open_branch()
157
 
        self.assertFalse(b._format.supports_stacking())
158
 
        self.make_branch('stackable', format='1.9')
159
 
        b = BzrDir.open_from_transport(t.clone('stackable')).open_branch()
160
 
        self.assertTrue(b._format.supports_stacking())
161
 
 
162
 
    def test_remote_repo_format_supports_external_references(self):
163
 
        t = self.transport
164
 
        bd = self.make_bzrdir('unstackable', format='pack-0.92')
165
 
        r = bd.create_repository()
166
 
        self.assertFalse(r._format.supports_external_lookups)
167
 
        r = BzrDir.open_from_transport(t.clone('unstackable')).open_repository()
168
 
        self.assertFalse(r._format.supports_external_lookups)
169
 
        bd = self.make_bzrdir('stackable', format='1.9')
170
 
        r = bd.create_repository()
171
 
        self.assertTrue(r._format.supports_external_lookups)
172
 
        r = BzrDir.open_from_transport(t.clone('stackable')).open_repository()
173
 
        self.assertTrue(r._format.supports_external_lookups)
174
 
 
175
 
    def test_remote_branch_set_append_revisions_only(self):
176
 
        # Make a format 1.9 branch, which supports append_revisions_only
177
 
        branch = self.make_branch('branch', format='1.9')
178
 
        branch.set_append_revisions_only(True)
179
 
        config = branch.get_config_stack()
180
 
        self.assertEqual(
181
 
            True, config.get('append_revisions_only'))
182
 
        branch.set_append_revisions_only(False)
183
 
        config = branch.get_config_stack()
184
 
        self.assertEqual(
185
 
            False, config.get('append_revisions_only'))
186
 
 
187
 
    def test_remote_branch_set_append_revisions_only_upgrade_reqd(self):
188
 
        branch = self.make_branch('branch', format='knit')
189
 
        self.assertRaises(
190
 
            errors.UpgradeRequired, branch.set_append_revisions_only, True)
191
 
 
192
105
 
193
106
class FakeProtocol(object):
194
107
    """Lookalike SmartClientRequestProtocolOne allowing body reading tests."""
195
108
 
196
 
    def __init__(self, body, fake_client):
197
 
        self.body = body
198
 
        self._body_buffer = None
199
 
        self._fake_client = fake_client
 
109
    def __init__(self, body):
 
110
        self._body_buffer = StringIO(body)
200
111
 
201
112
    def read_body_bytes(self, count=-1):
202
 
        if self._body_buffer is None:
203
 
            self._body_buffer = StringIO(self.body)
204
 
        bytes = self._body_buffer.read(count)
205
 
        if self._body_buffer.tell() == len(self._body_buffer.getvalue()):
206
 
            self._fake_client.expecting_body = False
207
 
        return bytes
208
 
 
209
 
    def cancel_read_body(self):
210
 
        self._fake_client.expecting_body = False
211
 
 
212
 
    def read_streamed_body(self):
213
 
        return self.body
 
113
        return self._body_buffer.read(count)
214
114
 
215
115
 
216
116
class FakeClient(_SmartClient):
217
117
    """Lookalike for _SmartClient allowing testing."""
 
118
    
 
119
    def __init__(self, responses):
 
120
        # We don't call the super init because there is no medium.
 
121
        """create a FakeClient.
218
122
 
219
 
    def __init__(self, fake_medium_base='fake base'):
220
 
        """Create a FakeClient."""
221
 
        self.responses = []
 
123
        :param respones: A list of response-tuple, body-data pairs to be sent
 
124
            back to callers.
 
125
        """
 
126
        self.responses = responses
222
127
        self._calls = []
223
 
        self.expecting_body = False
224
 
        # if non-None, this is the list of expected calls, with only the
225
 
        # method name and arguments included.  the body might be hard to
226
 
        # compute so is not included. If a call is None, that call can
227
 
        # be anything.
228
 
        self._expected_calls = None
229
 
        _SmartClient.__init__(self, FakeMedium(self._calls, fake_medium_base))
230
 
 
231
 
    def add_expected_call(self, call_name, call_args, response_type,
232
 
        response_args, response_body=None):
233
 
        if self._expected_calls is None:
234
 
            self._expected_calls = []
235
 
        self._expected_calls.append((call_name, call_args))
236
 
        self.responses.append((response_type, response_args, response_body))
237
 
 
238
 
    def add_success_response(self, *args):
239
 
        self.responses.append(('success', args, None))
240
 
 
241
 
    def add_success_response_with_body(self, body, *args):
242
 
        self.responses.append(('success', args, body))
243
 
        if self._expected_calls is not None:
244
 
            self._expected_calls.append(None)
245
 
 
246
 
    def add_error_response(self, *args):
247
 
        self.responses.append(('error', args))
248
 
 
249
 
    def add_unknown_method_response(self, verb):
250
 
        self.responses.append(('unknown', verb))
251
 
 
252
 
    def finished_test(self):
253
 
        if self._expected_calls:
254
 
            raise AssertionError("%r finished but was still expecting %r"
255
 
                % (self, self._expected_calls[0]))
256
 
 
257
 
    def _get_next_response(self):
258
 
        try:
259
 
            response_tuple = self.responses.pop(0)
260
 
        except IndexError, e:
261
 
            raise AssertionError("%r didn't expect any more calls"
262
 
                % (self,))
263
 
        if response_tuple[0] == 'unknown':
264
 
            raise errors.UnknownSmartMethod(response_tuple[1])
265
 
        elif response_tuple[0] == 'error':
266
 
            raise errors.ErrorFromSmartServer(response_tuple[1])
267
 
        return response_tuple
268
 
 
269
 
    def _check_call(self, method, args):
270
 
        if self._expected_calls is None:
271
 
            # the test should be updated to say what it expects
272
 
            return
273
 
        try:
274
 
            next_call = self._expected_calls.pop(0)
275
 
        except IndexError:
276
 
            raise AssertionError("%r didn't expect any more calls "
277
 
                "but got %r%r"
278
 
                % (self, method, args,))
279
 
        if next_call is None:
280
 
            return
281
 
        if method != next_call[0] or args != next_call[1]:
282
 
            raise AssertionError("%r expected %r%r "
283
 
                "but got %r%r"
284
 
                % (self, next_call[0], next_call[1], method, args,))
285
128
 
286
129
    def call(self, method, *args):
287
 
        self._check_call(method, args)
288
130
        self._calls.append(('call', method, args))
289
 
        return self._get_next_response()[1]
 
131
        return self.responses.pop(0)[0]
290
132
 
291
133
    def call_expecting_body(self, method, *args):
292
 
        self._check_call(method, args)
293
134
        self._calls.append(('call_expecting_body', method, args))
294
 
        result = self._get_next_response()
295
 
        self.expecting_body = True
296
 
        return result[1], FakeProtocol(result[2], self)
297
 
 
298
 
    def call_with_body_bytes(self, method, args, body):
299
 
        self._check_call(method, args)
300
 
        self._calls.append(('call_with_body_bytes', method, args, body))
301
 
        result = self._get_next_response()
302
 
        return result[1], FakeProtocol(result[2], self)
303
 
 
304
 
    def call_with_body_bytes_expecting_body(self, method, args, body):
305
 
        self._check_call(method, args)
306
 
        self._calls.append(('call_with_body_bytes_expecting_body', method,
307
 
            args, body))
308
 
        result = self._get_next_response()
309
 
        self.expecting_body = True
310
 
        return result[1], FakeProtocol(result[2], self)
311
 
 
312
 
    def call_with_body_stream(self, args, stream):
313
 
        # Explicitly consume the stream before checking for an error, because
314
 
        # that's what happens a real medium.
315
 
        stream = list(stream)
316
 
        self._check_call(args[0], args[1:])
317
 
        self._calls.append(('call_with_body_stream', args[0], args[1:], stream))
318
 
        result = self._get_next_response()
319
 
        # The second value returned from call_with_body_stream is supposed to
320
 
        # be a response_handler object, but so far no tests depend on that.
321
 
        response_handler = None 
322
 
        return result[1], response_handler
323
 
 
324
 
 
325
 
class FakeMedium(medium.SmartClientMedium):
326
 
 
327
 
    def __init__(self, client_calls, base):
328
 
        medium.SmartClientMedium.__init__(self, base)
329
 
        self._client_calls = client_calls
330
 
 
331
 
    def disconnect(self):
332
 
        self._client_calls.append(('disconnect medium',))
333
 
 
334
 
 
335
 
class TestVfsHas(tests.TestCase):
336
 
 
337
 
    def test_unicode_path(self):
338
 
        client = FakeClient('/')
339
 
        client.add_success_response('yes',)
340
 
        transport = RemoteTransport('bzr://localhost/', _client=client)
341
 
        filename = u'/hell\u00d8'.encode('utf8')
342
 
        result = transport.has(filename)
343
 
        self.assertEqual(
344
 
            [('call', 'has', (filename,))],
345
 
            client._calls)
346
 
        self.assertTrue(result)
347
 
 
348
 
 
349
 
class TestRemote(tests.TestCaseWithMemoryTransport):
350
 
 
351
 
    def get_branch_format(self):
352
 
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
353
 
        return reference_bzrdir_format.get_branch_format()
354
 
 
355
 
    def get_repo_format(self):
356
 
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
357
 
        return reference_bzrdir_format.repository_format
358
 
 
359
 
    def assertFinished(self, fake_client):
360
 
        """Assert that all of a FakeClient's expected calls have occurred."""
361
 
        fake_client.finished_test()
362
 
 
363
 
 
364
 
class Test_ClientMedium_remote_path_from_transport(tests.TestCase):
365
 
    """Tests for the behaviour of client_medium.remote_path_from_transport."""
366
 
 
367
 
    def assertRemotePath(self, expected, client_base, transport_base):
368
 
        """Assert that the result of
369
 
        SmartClientMedium.remote_path_from_transport is the expected value for
370
 
        a given client_base and transport_base.
371
 
        """
372
 
        client_medium = medium.SmartClientMedium(client_base)
373
 
        t = transport.get_transport(transport_base)
374
 
        result = client_medium.remote_path_from_transport(t)
375
 
        self.assertEqual(expected, result)
376
 
 
377
 
    def test_remote_path_from_transport(self):
378
 
        """SmartClientMedium.remote_path_from_transport calculates a URL for
379
 
        the given transport relative to the root of the client base URL.
380
 
        """
381
 
        self.assertRemotePath('xyz/', 'bzr://host/path', 'bzr://host/xyz')
382
 
        self.assertRemotePath(
383
 
            'path/xyz/', 'bzr://host/path', 'bzr://host/path/xyz')
384
 
 
385
 
    def assertRemotePathHTTP(self, expected, transport_base, relpath):
386
 
        """Assert that the result of
387
 
        HttpTransportBase.remote_path_from_transport is the expected value for
388
 
        a given transport_base and relpath of that transport.  (Note that
389
 
        HttpTransportBase is a subclass of SmartClientMedium)
390
 
        """
391
 
        base_transport = transport.get_transport(transport_base)
392
 
        client_medium = base_transport.get_smart_medium()
393
 
        cloned_transport = base_transport.clone(relpath)
394
 
        result = client_medium.remote_path_from_transport(cloned_transport)
395
 
        self.assertEqual(expected, result)
396
 
 
397
 
    def test_remote_path_from_transport_http(self):
398
 
        """Remote paths for HTTP transports are calculated differently to other
399
 
        transports.  They are just relative to the client base, not the root
400
 
        directory of the host.
401
 
        """
402
 
        for scheme in ['http:', 'https:', 'bzr+http:', 'bzr+https:']:
403
 
            self.assertRemotePathHTTP(
404
 
                '../xyz/', scheme + '//host/path', '../xyz/')
405
 
            self.assertRemotePathHTTP(
406
 
                'xyz/', scheme + '//host/path', 'xyz/')
407
 
 
408
 
 
409
 
class Test_ClientMedium_remote_is_at_least(tests.TestCase):
410
 
    """Tests for the behaviour of client_medium.remote_is_at_least."""
411
 
 
412
 
    def test_initially_unlimited(self):
413
 
        """A fresh medium assumes that the remote side supports all
414
 
        versions.
415
 
        """
416
 
        client_medium = medium.SmartClientMedium('dummy base')
417
 
        self.assertFalse(client_medium._is_remote_before((99, 99)))
418
 
 
419
 
    def test__remember_remote_is_before(self):
420
 
        """Calling _remember_remote_is_before ratchets down the known remote
421
 
        version.
422
 
        """
423
 
        client_medium = medium.SmartClientMedium('dummy base')
424
 
        # Mark the remote side as being less than 1.6.  The remote side may
425
 
        # still be 1.5.
426
 
        client_medium._remember_remote_is_before((1, 6))
427
 
        self.assertTrue(client_medium._is_remote_before((1, 6)))
428
 
        self.assertFalse(client_medium._is_remote_before((1, 5)))
429
 
        # Calling _remember_remote_is_before again with a lower value works.
430
 
        client_medium._remember_remote_is_before((1, 5))
431
 
        self.assertTrue(client_medium._is_remote_before((1, 5)))
432
 
        # If you call _remember_remote_is_before with a higher value it logs a
433
 
        # warning, and continues to remember the lower value.
434
 
        self.assertNotContainsRe(self.get_log(), '_remember_remote_is_before')
435
 
        client_medium._remember_remote_is_before((1, 9))
436
 
        self.assertContainsRe(self.get_log(), '_remember_remote_is_before')
437
 
        self.assertTrue(client_medium._is_remote_before((1, 5)))
438
 
 
439
 
 
440
 
class TestBzrDirCloningMetaDir(TestRemote):
441
 
 
442
 
    def test_backwards_compat(self):
443
 
        self.setup_smart_server_with_call_log()
444
 
        a_dir = self.make_bzrdir('.')
445
 
        self.reset_smart_call_log()
446
 
        verb = 'BzrDir.cloning_metadir'
447
 
        self.disable_verb(verb)
448
 
        format = a_dir.cloning_metadir()
449
 
        call_count = len([call for call in self.hpss_calls if
450
 
            call.call.method == verb])
451
 
        self.assertEqual(1, call_count)
452
 
 
453
 
    def test_branch_reference(self):
454
 
        transport = self.get_transport('quack')
455
 
        referenced = self.make_branch('referenced')
456
 
        expected = referenced.bzrdir.cloning_metadir()
457
 
        client = FakeClient(transport.base)
458
 
        client.add_expected_call(
459
 
            'BzrDir.cloning_metadir', ('quack/', 'False'),
460
 
            'error', ('BranchReference',)),
461
 
        client.add_expected_call(
462
 
            'BzrDir.open_branchV3', ('quack/',),
463
 
            'success', ('ref', self.get_url('referenced'))),
464
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
465
 
            _client=client)
466
 
        result = a_bzrdir.cloning_metadir()
467
 
        # We should have got a control dir matching the referenced branch.
468
 
        self.assertEqual(bzrdir.BzrDirMetaFormat1, type(result))
469
 
        self.assertEqual(expected._repository_format, result._repository_format)
470
 
        self.assertEqual(expected._branch_format, result._branch_format)
471
 
        self.assertFinished(client)
472
 
 
473
 
    def test_current_server(self):
474
 
        transport = self.get_transport('.')
475
 
        transport = transport.clone('quack')
476
 
        self.make_bzrdir('quack')
477
 
        client = FakeClient(transport.base)
478
 
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
479
 
        control_name = reference_bzrdir_format.network_name()
480
 
        client.add_expected_call(
481
 
            'BzrDir.cloning_metadir', ('quack/', 'False'),
482
 
            'success', (control_name, '', ('branch', ''))),
483
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
484
 
            _client=client)
485
 
        result = a_bzrdir.cloning_metadir()
486
 
        # We should have got a reference control dir with default branch and
487
 
        # repository formats.
488
 
        # This pokes a little, just to be sure.
489
 
        self.assertEqual(bzrdir.BzrDirMetaFormat1, type(result))
490
 
        self.assertEqual(None, result._repository_format)
491
 
        self.assertEqual(None, result._branch_format)
492
 
        self.assertFinished(client)
493
 
 
494
 
    def test_unknown(self):
495
 
        transport = self.get_transport('quack')
496
 
        referenced = self.make_branch('referenced')
497
 
        expected = referenced.bzrdir.cloning_metadir()
498
 
        client = FakeClient(transport.base)
499
 
        client.add_expected_call(
500
 
            'BzrDir.cloning_metadir', ('quack/', 'False'),
501
 
            'success', ('unknown', 'unknown', ('branch', ''))),
502
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
503
 
            _client=client)
504
 
        self.assertRaises(errors.UnknownFormatError, a_bzrdir.cloning_metadir)
505
 
 
506
 
 
507
 
class TestBzrDirCheckoutMetaDir(TestRemote):
508
 
 
509
 
    def test__get_checkout_format(self):
510
 
        transport = MemoryTransport()
511
 
        client = FakeClient(transport.base)
512
 
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
513
 
        control_name = reference_bzrdir_format.network_name()
514
 
        client.add_expected_call(
515
 
            'BzrDir.checkout_metadir', ('quack/', ),
516
 
            'success', (control_name, '', ''))
517
 
        transport.mkdir('quack')
518
 
        transport = transport.clone('quack')
519
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
520
 
            _client=client)
521
 
        result = a_bzrdir.checkout_metadir()
522
 
        # We should have got a reference control dir with default branch and
523
 
        # repository formats.
524
 
        self.assertEqual(bzrdir.BzrDirMetaFormat1, type(result))
525
 
        self.assertEqual(None, result._repository_format)
526
 
        self.assertEqual(None, result._branch_format)
527
 
        self.assertFinished(client)
528
 
 
529
 
    def test_unknown_format(self):
530
 
        transport = MemoryTransport()
531
 
        client = FakeClient(transport.base)
532
 
        client.add_expected_call(
533
 
            'BzrDir.checkout_metadir', ('quack/',),
534
 
            'success', ('dontknow', '', ''))
535
 
        transport.mkdir('quack')
536
 
        transport = transport.clone('quack')
537
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
538
 
            _client=client)
539
 
        self.assertRaises(errors.UnknownFormatError,
540
 
            a_bzrdir.checkout_metadir)
541
 
        self.assertFinished(client)
542
 
 
543
 
 
544
 
class TestBzrDirDestroyBranch(TestRemote):
545
 
 
546
 
    def test_destroy_default(self):
547
 
        transport = self.get_transport('quack')
548
 
        referenced = self.make_branch('referenced')
549
 
        client = FakeClient(transport.base)
550
 
        client.add_expected_call(
551
 
            'BzrDir.destroy_branch', ('quack/', ),
552
 
            'success', ('ok',)),
553
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
554
 
            _client=client)
555
 
        a_bzrdir.destroy_branch()
556
 
        self.assertFinished(client)
557
 
 
558
 
    def test_destroy_named(self):
559
 
        transport = self.get_transport('quack')
560
 
        referenced = self.make_branch('referenced')
561
 
        client = FakeClient(transport.base)
562
 
        client.add_expected_call(
563
 
            'BzrDir.destroy_branch', ('quack/', "foo"),
564
 
            'success', ('ok',)),
565
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
566
 
            _client=client)
567
 
        a_bzrdir.destroy_branch("foo")
568
 
        self.assertFinished(client)
569
 
 
570
 
 
571
 
class TestBzrDirHasWorkingTree(TestRemote):
572
 
 
573
 
    def test_has_workingtree(self):
574
 
        transport = self.get_transport('quack')
575
 
        client = FakeClient(transport.base)
576
 
        client.add_expected_call(
577
 
            'BzrDir.has_workingtree', ('quack/',),
578
 
            'success', ('yes',)),
579
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
580
 
            _client=client)
581
 
        self.assertTrue(a_bzrdir.has_workingtree())
582
 
        self.assertFinished(client)
583
 
 
584
 
    def test_no_workingtree(self):
585
 
        transport = self.get_transport('quack')
586
 
        client = FakeClient(transport.base)
587
 
        client.add_expected_call(
588
 
            'BzrDir.has_workingtree', ('quack/',),
589
 
            'success', ('no',)),
590
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
591
 
            _client=client)
592
 
        self.assertFalse(a_bzrdir.has_workingtree())
593
 
        self.assertFinished(client)
594
 
 
595
 
 
596
 
class TestBzrDirDestroyRepository(TestRemote):
597
 
 
598
 
    def test_destroy_repository(self):
599
 
        transport = self.get_transport('quack')
600
 
        client = FakeClient(transport.base)
601
 
        client.add_expected_call(
602
 
            'BzrDir.destroy_repository', ('quack/',),
603
 
            'success', ('ok',)),
604
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
605
 
            _client=client)
606
 
        a_bzrdir.destroy_repository()
607
 
        self.assertFinished(client)
608
 
 
609
 
 
610
 
class TestBzrDirOpen(TestRemote):
611
 
 
612
 
    def make_fake_client_and_transport(self, path='quack'):
613
 
        transport = MemoryTransport()
614
 
        transport.mkdir(path)
615
 
        transport = transport.clone(path)
616
 
        client = FakeClient(transport.base)
617
 
        return client, transport
618
 
 
619
 
    def test_absent(self):
620
 
        client, transport = self.make_fake_client_and_transport()
621
 
        client.add_expected_call(
622
 
            'BzrDir.open_2.1', ('quack/',), 'success', ('no',))
623
 
        self.assertRaises(errors.NotBranchError, RemoteBzrDir, transport,
624
 
                RemoteBzrDirFormat(), _client=client, _force_probe=True)
625
 
        self.assertFinished(client)
626
 
 
627
 
    def test_present_without_workingtree(self):
628
 
        client, transport = self.make_fake_client_and_transport()
629
 
        client.add_expected_call(
630
 
            'BzrDir.open_2.1', ('quack/',), 'success', ('yes', 'no'))
631
 
        bd = RemoteBzrDir(transport, RemoteBzrDirFormat(),
632
 
            _client=client, _force_probe=True)
633
 
        self.assertIsInstance(bd, RemoteBzrDir)
634
 
        self.assertFalse(bd.has_workingtree())
635
 
        self.assertRaises(errors.NoWorkingTree, bd.open_workingtree)
636
 
        self.assertFinished(client)
637
 
 
638
 
    def test_present_with_workingtree(self):
639
 
        client, transport = self.make_fake_client_and_transport()
640
 
        client.add_expected_call(
641
 
            'BzrDir.open_2.1', ('quack/',), 'success', ('yes', 'yes'))
642
 
        bd = RemoteBzrDir(transport, RemoteBzrDirFormat(),
643
 
            _client=client, _force_probe=True)
644
 
        self.assertIsInstance(bd, RemoteBzrDir)
645
 
        self.assertTrue(bd.has_workingtree())
646
 
        self.assertRaises(errors.NotLocalUrl, bd.open_workingtree)
647
 
        self.assertFinished(client)
648
 
 
649
 
    def test_backwards_compat(self):
650
 
        client, transport = self.make_fake_client_and_transport()
651
 
        client.add_expected_call(
652
 
            'BzrDir.open_2.1', ('quack/',), 'unknown', ('BzrDir.open_2.1',))
653
 
        client.add_expected_call(
654
 
            'BzrDir.open', ('quack/',), 'success', ('yes',))
655
 
        bd = RemoteBzrDir(transport, RemoteBzrDirFormat(),
656
 
            _client=client, _force_probe=True)
657
 
        self.assertIsInstance(bd, RemoteBzrDir)
658
 
        self.assertFinished(client)
659
 
 
660
 
    def test_backwards_compat_hpss_v2(self):
661
 
        client, transport = self.make_fake_client_and_transport()
662
 
        # Monkey-patch fake client to simulate real-world behaviour with v2
663
 
        # server: upon first RPC call detect the protocol version, and because
664
 
        # the version is 2 also do _remember_remote_is_before((1, 6)) before
665
 
        # continuing with the RPC.
666
 
        orig_check_call = client._check_call
667
 
        def check_call(method, args):
668
 
            client._medium._protocol_version = 2
669
 
            client._medium._remember_remote_is_before((1, 6))
670
 
            client._check_call = orig_check_call
671
 
            client._check_call(method, args)
672
 
        client._check_call = check_call
673
 
        client.add_expected_call(
674
 
            'BzrDir.open_2.1', ('quack/',), 'unknown', ('BzrDir.open_2.1',))
675
 
        client.add_expected_call(
676
 
            'BzrDir.open', ('quack/',), 'success', ('yes',))
677
 
        bd = RemoteBzrDir(transport, RemoteBzrDirFormat(),
678
 
            _client=client, _force_probe=True)
679
 
        self.assertIsInstance(bd, RemoteBzrDir)
680
 
        self.assertFinished(client)
681
 
 
682
 
 
683
 
class TestBzrDirOpenBranch(TestRemote):
684
 
 
685
 
    def test_backwards_compat(self):
686
 
        self.setup_smart_server_with_call_log()
687
 
        self.make_branch('.')
688
 
        a_dir = BzrDir.open(self.get_url('.'))
689
 
        self.reset_smart_call_log()
690
 
        verb = 'BzrDir.open_branchV3'
691
 
        self.disable_verb(verb)
692
 
        format = a_dir.open_branch()
693
 
        call_count = len([call for call in self.hpss_calls if
694
 
            call.call.method == verb])
695
 
        self.assertEqual(1, call_count)
 
135
        result = self.responses.pop(0)
 
136
        return result[0], FakeProtocol(result[1])
 
137
 
 
138
 
 
139
class TestBzrDirOpenBranch(tests.TestCase):
696
140
 
697
141
    def test_branch_present(self):
698
 
        reference_format = self.get_repo_format()
699
 
        network_name = reference_format.network_name()
700
 
        branch_network_name = self.get_branch_format().network_name()
 
142
        client = FakeClient([(('ok', ''), ), (('ok', '', 'no', 'no'), )])
701
143
        transport = MemoryTransport()
702
144
        transport.mkdir('quack')
703
145
        transport = transport.clone('quack')
704
 
        client = FakeClient(transport.base)
705
 
        client.add_expected_call(
706
 
            'BzrDir.open_branchV3', ('quack/',),
707
 
            'success', ('branch', branch_network_name))
708
 
        client.add_expected_call(
709
 
            'BzrDir.find_repositoryV3', ('quack/',),
710
 
            'success', ('ok', '', 'no', 'no', 'no', network_name))
711
 
        client.add_expected_call(
712
 
            'Branch.get_stacked_on_url', ('quack/',),
713
 
            'error', ('NotStacked',))
714
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
715
 
            _client=client)
 
146
        bzrdir = RemoteBzrDir(transport, _client=client)
716
147
        result = bzrdir.open_branch()
 
148
        self.assertEqual(
 
149
            [('call', 'BzrDir.open_branch', ('///quack/',)),
 
150
             ('call', 'BzrDir.find_repository', ('///quack/',))],
 
151
            client._calls)
717
152
        self.assertIsInstance(result, RemoteBranch)
718
153
        self.assertEqual(bzrdir, result.bzrdir)
719
 
        self.assertFinished(client)
720
154
 
721
155
    def test_branch_missing(self):
 
156
        client = FakeClient([(('nobranch',), )])
722
157
        transport = MemoryTransport()
723
158
        transport.mkdir('quack')
724
159
        transport = transport.clone('quack')
725
 
        client = FakeClient(transport.base)
726
 
        client.add_error_response('nobranch')
727
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
728
 
            _client=client)
 
160
        bzrdir = RemoteBzrDir(transport, _client=client)
729
161
        self.assertRaises(errors.NotBranchError, bzrdir.open_branch)
730
162
        self.assertEqual(
731
 
            [('call', 'BzrDir.open_branchV3', ('quack/',))],
 
163
            [('call', 'BzrDir.open_branch', ('///quack/',))],
732
164
            client._calls)
733
165
 
734
 
    def test__get_tree_branch(self):
735
 
        # _get_tree_branch is a form of open_branch, but it should only ask for
736
 
        # branch opening, not any other network requests.
737
 
        calls = []
738
 
        def open_branch(name=None, possible_transports=None):
739
 
            calls.append("Called")
740
 
            return "a-branch"
741
 
        transport = MemoryTransport()
742
 
        # no requests on the network - catches other api calls being made.
743
 
        client = FakeClient(transport.base)
744
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
745
 
            _client=client)
746
 
        # patch the open_branch call to record that it was called.
747
 
        bzrdir.open_branch = open_branch
748
 
        self.assertEqual((None, "a-branch"), bzrdir._get_tree_branch())
749
 
        self.assertEqual(["Called"], calls)
750
 
        self.assertEqual([], client._calls)
751
 
 
752
 
    def test_url_quoting_of_path(self):
753
 
        # Relpaths on the wire should not be URL-escaped.  So "~" should be
754
 
        # transmitted as "~", not "%7E".
755
 
        transport = RemoteTCPTransport('bzr://localhost/~hello/')
756
 
        client = FakeClient(transport.base)
757
 
        reference_format = self.get_repo_format()
758
 
        network_name = reference_format.network_name()
759
 
        branch_network_name = self.get_branch_format().network_name()
760
 
        client.add_expected_call(
761
 
            'BzrDir.open_branchV3', ('~hello/',),
762
 
            'success', ('branch', branch_network_name))
763
 
        client.add_expected_call(
764
 
            'BzrDir.find_repositoryV3', ('~hello/',),
765
 
            'success', ('ok', '', 'no', 'no', 'no', network_name))
766
 
        client.add_expected_call(
767
 
            'Branch.get_stacked_on_url', ('~hello/',),
768
 
            'error', ('NotStacked',))
769
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
770
 
            _client=client)
771
 
        result = bzrdir.open_branch()
772
 
        self.assertFinished(client)
773
 
 
774
 
    def check_open_repository(self, rich_root, subtrees, external_lookup='no'):
775
 
        reference_format = self.get_repo_format()
776
 
        network_name = reference_format.network_name()
777
 
        transport = MemoryTransport()
778
 
        transport.mkdir('quack')
779
 
        transport = transport.clone('quack')
 
166
    def check_open_repository(self, rich_root, subtrees):
780
167
        if rich_root:
781
168
            rich_response = 'yes'
782
169
        else:
785
172
            subtree_response = 'yes'
786
173
        else:
787
174
            subtree_response = 'no'
788
 
        client = FakeClient(transport.base)
789
 
        client.add_success_response(
790
 
            'ok', '', rich_response, subtree_response, external_lookup,
791
 
            network_name)
792
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
793
 
            _client=client)
 
175
        client = FakeClient([(('ok', '', rich_response, subtree_response), ),])
 
176
        transport = MemoryTransport()
 
177
        transport.mkdir('quack')
 
178
        transport = transport.clone('quack')
 
179
        bzrdir = RemoteBzrDir(transport, _client=client)
794
180
        result = bzrdir.open_repository()
795
181
        self.assertEqual(
796
 
            [('call', 'BzrDir.find_repositoryV3', ('quack/',))],
 
182
            [('call', 'BzrDir.find_repository', ('///quack/',))],
797
183
            client._calls)
798
184
        self.assertIsInstance(result, RemoteRepository)
799
185
        self.assertEqual(bzrdir, result.bzrdir)
805
191
        self.check_open_repository(False, True)
806
192
        self.check_open_repository(True, False)
807
193
        self.check_open_repository(False, False)
808
 
        self.check_open_repository(False, False, 'yes')
809
194
 
810
195
    def test_old_server(self):
811
196
        """RemoteBzrDirFormat should fail to probe if the server version is too
812
197
        old.
813
198
        """
814
199
        self.assertRaises(errors.NotBranchError,
815
 
            RemoteBzrProber.probe_transport, OldServerTransport())
816
 
 
817
 
 
818
 
class TestBzrDirCreateBranch(TestRemote):
819
 
 
820
 
    def test_backwards_compat(self):
821
 
        self.setup_smart_server_with_call_log()
822
 
        repo = self.make_repository('.')
823
 
        self.reset_smart_call_log()
824
 
        self.disable_verb('BzrDir.create_branch')
825
 
        branch = repo.bzrdir.create_branch()
826
 
        create_branch_call_count = len([call for call in self.hpss_calls if
827
 
            call.call.method == 'BzrDir.create_branch'])
828
 
        self.assertEqual(1, create_branch_call_count)
829
 
 
830
 
    def test_current_server(self):
831
 
        transport = self.get_transport('.')
832
 
        transport = transport.clone('quack')
833
 
        self.make_repository('quack')
834
 
        client = FakeClient(transport.base)
835
 
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
836
 
        reference_format = reference_bzrdir_format.get_branch_format()
837
 
        network_name = reference_format.network_name()
838
 
        reference_repo_fmt = reference_bzrdir_format.repository_format
839
 
        reference_repo_name = reference_repo_fmt.network_name()
840
 
        client.add_expected_call(
841
 
            'BzrDir.create_branch', ('quack/', network_name),
842
 
            'success', ('ok', network_name, '', 'no', 'no', 'yes',
843
 
            reference_repo_name))
844
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
845
 
            _client=client)
846
 
        branch = a_bzrdir.create_branch()
847
 
        # We should have got a remote branch
848
 
        self.assertIsInstance(branch, remote.RemoteBranch)
849
 
        # its format should have the settings from the response
850
 
        format = branch._format
851
 
        self.assertEqual(network_name, format.network_name())
852
 
 
853
 
    def test_already_open_repo_and_reused_medium(self):
854
 
        """Bug 726584: create_branch(..., repository=repo) should work
855
 
        regardless of what the smart medium's base URL is.
856
 
        """
857
 
        self.transport_server = test_server.SmartTCPServer_for_testing
858
 
        transport = self.get_transport('.')
859
 
        repo = self.make_repository('quack')
860
 
        # Client's medium rooted a transport root (not at the bzrdir)
861
 
        client = FakeClient(transport.base)
862
 
        transport = transport.clone('quack')
863
 
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
864
 
        reference_format = reference_bzrdir_format.get_branch_format()
865
 
        network_name = reference_format.network_name()
866
 
        reference_repo_fmt = reference_bzrdir_format.repository_format
867
 
        reference_repo_name = reference_repo_fmt.network_name()
868
 
        client.add_expected_call(
869
 
            'BzrDir.create_branch', ('extra/quack/', network_name),
870
 
            'success', ('ok', network_name, '', 'no', 'no', 'yes',
871
 
            reference_repo_name))
872
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
873
 
            _client=client)
874
 
        branch = a_bzrdir.create_branch(repository=repo)
875
 
        # We should have got a remote branch
876
 
        self.assertIsInstance(branch, remote.RemoteBranch)
877
 
        # its format should have the settings from the response
878
 
        format = branch._format
879
 
        self.assertEqual(network_name, format.network_name())
880
 
 
881
 
 
882
 
class TestBzrDirCreateRepository(TestRemote):
883
 
 
884
 
    def test_backwards_compat(self):
885
 
        self.setup_smart_server_with_call_log()
886
 
        bzrdir = self.make_bzrdir('.')
887
 
        self.reset_smart_call_log()
888
 
        self.disable_verb('BzrDir.create_repository')
889
 
        repo = bzrdir.create_repository()
890
 
        create_repo_call_count = len([call for call in self.hpss_calls if
891
 
            call.call.method == 'BzrDir.create_repository'])
892
 
        self.assertEqual(1, create_repo_call_count)
893
 
 
894
 
    def test_current_server(self):
895
 
        transport = self.get_transport('.')
896
 
        transport = transport.clone('quack')
897
 
        self.make_bzrdir('quack')
898
 
        client = FakeClient(transport.base)
899
 
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
900
 
        reference_format = reference_bzrdir_format.repository_format
901
 
        network_name = reference_format.network_name()
902
 
        client.add_expected_call(
903
 
            'BzrDir.create_repository', ('quack/',
904
 
                'Bazaar repository format 2a (needs bzr 1.16 or later)\n',
905
 
                'False'),
906
 
            'success', ('ok', 'yes', 'yes', 'yes', network_name))
907
 
        a_bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
908
 
            _client=client)
909
 
        repo = a_bzrdir.create_repository()
910
 
        # We should have got a remote repository
911
 
        self.assertIsInstance(repo, remote.RemoteRepository)
912
 
        # its format should have the settings from the response
913
 
        format = repo._format
914
 
        self.assertTrue(format.rich_root_data)
915
 
        self.assertTrue(format.supports_tree_reference)
916
 
        self.assertTrue(format.supports_external_lookups)
917
 
        self.assertEqual(network_name, format.network_name())
918
 
 
919
 
 
920
 
class TestBzrDirOpenRepository(TestRemote):
921
 
 
922
 
    def test_backwards_compat_1_2_3(self):
923
 
        # fallback all the way to the first version.
924
 
        reference_format = self.get_repo_format()
925
 
        network_name = reference_format.network_name()
926
 
        server_url = 'bzr://example.com/'
927
 
        self.permit_url(server_url)
928
 
        client = FakeClient(server_url)
929
 
        client.add_unknown_method_response('BzrDir.find_repositoryV3')
930
 
        client.add_unknown_method_response('BzrDir.find_repositoryV2')
931
 
        client.add_success_response('ok', '', 'no', 'no')
932
 
        # A real repository instance will be created to determine the network
933
 
        # name.
934
 
        client.add_success_response_with_body(
935
 
            "Bazaar-NG meta directory, format 1\n", 'ok')
936
 
        client.add_success_response_with_body(
937
 
            reference_format.get_format_string(), 'ok')
938
 
        # PackRepository wants to do a stat
939
 
        client.add_success_response('stat', '0', '65535')
940
 
        remote_transport = RemoteTransport(server_url + 'quack/', medium=False,
941
 
            _client=client)
942
 
        bzrdir = RemoteBzrDir(remote_transport, RemoteBzrDirFormat(),
943
 
            _client=client)
944
 
        repo = bzrdir.open_repository()
945
 
        self.assertEqual(
946
 
            [('call', 'BzrDir.find_repositoryV3', ('quack/',)),
947
 
             ('call', 'BzrDir.find_repositoryV2', ('quack/',)),
948
 
             ('call', 'BzrDir.find_repository', ('quack/',)),
949
 
             ('call_expecting_body', 'get', ('/quack/.bzr/branch-format',)),
950
 
             ('call_expecting_body', 'get', ('/quack/.bzr/repository/format',)),
951
 
             ('call', 'stat', ('/quack/.bzr/repository',)),
952
 
             ],
953
 
            client._calls)
954
 
        self.assertEqual(network_name, repo._format.network_name())
955
 
 
956
 
    def test_backwards_compat_2(self):
957
 
        # fallback to find_repositoryV2
958
 
        reference_format = self.get_repo_format()
959
 
        network_name = reference_format.network_name()
960
 
        server_url = 'bzr://example.com/'
961
 
        self.permit_url(server_url)
962
 
        client = FakeClient(server_url)
963
 
        client.add_unknown_method_response('BzrDir.find_repositoryV3')
964
 
        client.add_success_response('ok', '', 'no', 'no', 'no')
965
 
        # A real repository instance will be created to determine the network
966
 
        # name.
967
 
        client.add_success_response_with_body(
968
 
            "Bazaar-NG meta directory, format 1\n", 'ok')
969
 
        client.add_success_response_with_body(
970
 
            reference_format.get_format_string(), 'ok')
971
 
        # PackRepository wants to do a stat
972
 
        client.add_success_response('stat', '0', '65535')
973
 
        remote_transport = RemoteTransport(server_url + 'quack/', medium=False,
974
 
            _client=client)
975
 
        bzrdir = RemoteBzrDir(remote_transport, RemoteBzrDirFormat(),
976
 
            _client=client)
977
 
        repo = bzrdir.open_repository()
978
 
        self.assertEqual(
979
 
            [('call', 'BzrDir.find_repositoryV3', ('quack/',)),
980
 
             ('call', 'BzrDir.find_repositoryV2', ('quack/',)),
981
 
             ('call_expecting_body', 'get', ('/quack/.bzr/branch-format',)),
982
 
             ('call_expecting_body', 'get', ('/quack/.bzr/repository/format',)),
983
 
             ('call', 'stat', ('/quack/.bzr/repository',)),
984
 
             ],
985
 
            client._calls)
986
 
        self.assertEqual(network_name, repo._format.network_name())
987
 
 
988
 
    def test_current_server(self):
989
 
        reference_format = self.get_repo_format()
990
 
        network_name = reference_format.network_name()
991
 
        transport = MemoryTransport()
992
 
        transport.mkdir('quack')
993
 
        transport = transport.clone('quack')
994
 
        client = FakeClient(transport.base)
995
 
        client.add_success_response('ok', '', 'no', 'no', 'no', network_name)
996
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
997
 
            _client=client)
998
 
        repo = bzrdir.open_repository()
999
 
        self.assertEqual(
1000
 
            [('call', 'BzrDir.find_repositoryV3', ('quack/',))],
1001
 
            client._calls)
1002
 
        self.assertEqual(network_name, repo._format.network_name())
1003
 
 
1004
 
 
1005
 
class TestBzrDirFormatInitializeEx(TestRemote):
1006
 
 
1007
 
    def test_success(self):
1008
 
        """Simple test for typical successful call."""
1009
 
        fmt = RemoteBzrDirFormat()
1010
 
        default_format_name = BzrDirFormat.get_default_format().network_name()
1011
 
        transport = self.get_transport()
1012
 
        client = FakeClient(transport.base)
1013
 
        client.add_expected_call(
1014
 
            'BzrDirFormat.initialize_ex_1.16',
1015
 
                (default_format_name, 'path', 'False', 'False', 'False', '',
1016
 
                 '', '', '', 'False'),
1017
 
            'success',
1018
 
                ('.', 'no', 'no', 'yes', 'repo fmt', 'repo bzrdir fmt',
1019
 
                 'bzrdir fmt', 'False', '', '', 'repo lock token'))
1020
 
        # XXX: It would be better to call fmt.initialize_on_transport_ex, but
1021
 
        # it's currently hard to test that without supplying a real remote
1022
 
        # transport connected to a real server.
1023
 
        result = fmt._initialize_on_transport_ex_rpc(client, 'path',
1024
 
            transport, False, False, False, None, None, None, None, False)
1025
 
        self.assertFinished(client)
1026
 
 
1027
 
    def test_error(self):
1028
 
        """Error responses are translated, e.g. 'PermissionDenied' raises the
1029
 
        corresponding error from the client.
1030
 
        """
1031
 
        fmt = RemoteBzrDirFormat()
1032
 
        default_format_name = BzrDirFormat.get_default_format().network_name()
1033
 
        transport = self.get_transport()
1034
 
        client = FakeClient(transport.base)
1035
 
        client.add_expected_call(
1036
 
            'BzrDirFormat.initialize_ex_1.16',
1037
 
                (default_format_name, 'path', 'False', 'False', 'False', '',
1038
 
                 '', '', '', 'False'),
1039
 
            'error',
1040
 
                ('PermissionDenied', 'path', 'extra info'))
1041
 
        # XXX: It would be better to call fmt.initialize_on_transport_ex, but
1042
 
        # it's currently hard to test that without supplying a real remote
1043
 
        # transport connected to a real server.
1044
 
        err = self.assertRaises(errors.PermissionDenied,
1045
 
            fmt._initialize_on_transport_ex_rpc, client, 'path', transport,
1046
 
            False, False, False, None, None, None, None, False)
1047
 
        self.assertEqual('path', err.path)
1048
 
        self.assertEqual(': extra info', err.extra)
1049
 
        self.assertFinished(client)
1050
 
 
1051
 
    def test_error_from_real_server(self):
1052
 
        """Integration test for error translation."""
1053
 
        transport = self.make_smart_server('foo')
1054
 
        transport = transport.clone('no-such-path')
1055
 
        fmt = RemoteBzrDirFormat()
1056
 
        err = self.assertRaises(errors.NoSuchFile,
1057
 
            fmt.initialize_on_transport_ex, transport, create_prefix=False)
 
200
            RemoteBzrDirFormat.probe_transport, OldServerTransport())
1058
201
 
1059
202
 
1060
203
class OldSmartClient(object):
1069
212
            input_file, output_file)
1070
213
        return medium.SmartClientStreamMediumRequest(client_medium)
1071
214
 
1072
 
    def protocol_version(self):
1073
 
        return 1
1074
 
 
1075
215
 
1076
216
class OldServerTransport(object):
1077
217
    """A fake transport for test_old_server that reports it's smart server
1085
225
        return OldSmartClient()
1086
226
 
1087
227
 
1088
 
class RemoteBzrDirTestCase(TestRemote):
1089
 
 
1090
 
    def make_remote_bzrdir(self, transport, client):
1091
 
        """Make a RemotebzrDir using 'client' as the _client."""
1092
 
        return RemoteBzrDir(transport, RemoteBzrDirFormat(),
1093
 
            _client=client)
1094
 
 
1095
 
 
1096
 
class RemoteBranchTestCase(RemoteBzrDirTestCase):
1097
 
 
1098
 
    def lock_remote_branch(self, branch):
1099
 
        """Trick a RemoteBranch into thinking it is locked."""
1100
 
        branch._lock_mode = 'w'
1101
 
        branch._lock_count = 2
1102
 
        branch._lock_token = 'branch token'
1103
 
        branch._repo_lock_token = 'repo token'
1104
 
        branch.repository._lock_mode = 'w'
1105
 
        branch.repository._lock_count = 2
1106
 
        branch.repository._lock_token = 'repo token'
1107
 
 
1108
 
    def make_remote_branch(self, transport, client):
1109
 
        """Make a RemoteBranch using 'client' as its _SmartClient.
1110
 
 
1111
 
        A RemoteBzrDir and RemoteRepository will also be created to fill out
1112
 
        the RemoteBranch, albeit with stub values for some of their attributes.
1113
 
        """
1114
 
        # we do not want bzrdir to make any remote calls, so use False as its
1115
 
        # _client.  If it tries to make a remote call, this will fail
1116
 
        # immediately.
1117
 
        bzrdir = self.make_remote_bzrdir(transport, False)
1118
 
        repo = RemoteRepository(bzrdir, None, _client=client)
1119
 
        branch_format = self.get_branch_format()
1120
 
        format = RemoteBranchFormat(network_name=branch_format.network_name())
1121
 
        return RemoteBranch(bzrdir, repo, _client=client, format=format)
1122
 
 
1123
 
 
1124
 
class TestBranchBreakLock(RemoteBranchTestCase):
1125
 
 
1126
 
    def test_break_lock(self):
1127
 
        transport_path = 'quack'
1128
 
        transport = MemoryTransport()
1129
 
        client = FakeClient(transport.base)
1130
 
        client.add_expected_call(
1131
 
            'Branch.get_stacked_on_url', ('quack/',),
1132
 
            'error', ('NotStacked',))
1133
 
        client.add_expected_call(
1134
 
            'Branch.break_lock', ('quack/',),
1135
 
            'success', ('ok',))
1136
 
        transport.mkdir('quack')
1137
 
        transport = transport.clone('quack')
1138
 
        branch = self.make_remote_branch(transport, client)
1139
 
        branch.break_lock()
1140
 
        self.assertFinished(client)
1141
 
 
1142
 
 
1143
 
class TestBranchGetPhysicalLockStatus(RemoteBranchTestCase):
1144
 
 
1145
 
    def test_get_physical_lock_status_yes(self):
1146
 
        transport = MemoryTransport()
1147
 
        client = FakeClient(transport.base)
1148
 
        client.add_expected_call(
1149
 
            'Branch.get_stacked_on_url', ('quack/',),
1150
 
            'error', ('NotStacked',))
1151
 
        client.add_expected_call(
1152
 
            'Branch.get_physical_lock_status', ('quack/',),
1153
 
            'success', ('yes',))
1154
 
        transport.mkdir('quack')
1155
 
        transport = transport.clone('quack')
1156
 
        branch = self.make_remote_branch(transport, client)
1157
 
        result = branch.get_physical_lock_status()
1158
 
        self.assertFinished(client)
1159
 
        self.assertEqual(True, result)
1160
 
 
1161
 
    def test_get_physical_lock_status_no(self):
1162
 
        transport = MemoryTransport()
1163
 
        client = FakeClient(transport.base)
1164
 
        client.add_expected_call(
1165
 
            'Branch.get_stacked_on_url', ('quack/',),
1166
 
            'error', ('NotStacked',))
1167
 
        client.add_expected_call(
1168
 
            'Branch.get_physical_lock_status', ('quack/',),
1169
 
            'success', ('no',))
1170
 
        transport.mkdir('quack')
1171
 
        transport = transport.clone('quack')
1172
 
        branch = self.make_remote_branch(transport, client)
1173
 
        result = branch.get_physical_lock_status()
1174
 
        self.assertFinished(client)
1175
 
        self.assertEqual(False, result)
1176
 
 
1177
 
 
1178
 
class TestBranchGetParent(RemoteBranchTestCase):
1179
 
 
1180
 
    def test_no_parent(self):
1181
 
        # in an empty branch we decode the response properly
1182
 
        transport = MemoryTransport()
1183
 
        client = FakeClient(transport.base)
1184
 
        client.add_expected_call(
1185
 
            'Branch.get_stacked_on_url', ('quack/',),
1186
 
            'error', ('NotStacked',))
1187
 
        client.add_expected_call(
1188
 
            'Branch.get_parent', ('quack/',),
1189
 
            'success', ('',))
1190
 
        transport.mkdir('quack')
1191
 
        transport = transport.clone('quack')
1192
 
        branch = self.make_remote_branch(transport, client)
1193
 
        result = branch.get_parent()
1194
 
        self.assertFinished(client)
1195
 
        self.assertEqual(None, result)
1196
 
 
1197
 
    def test_parent_relative(self):
1198
 
        transport = MemoryTransport()
1199
 
        client = FakeClient(transport.base)
1200
 
        client.add_expected_call(
1201
 
            'Branch.get_stacked_on_url', ('kwaak/',),
1202
 
            'error', ('NotStacked',))
1203
 
        client.add_expected_call(
1204
 
            'Branch.get_parent', ('kwaak/',),
1205
 
            'success', ('../foo/',))
1206
 
        transport.mkdir('kwaak')
1207
 
        transport = transport.clone('kwaak')
1208
 
        branch = self.make_remote_branch(transport, client)
1209
 
        result = branch.get_parent()
1210
 
        self.assertEqual(transport.clone('../foo').base, result)
1211
 
 
1212
 
    def test_parent_absolute(self):
1213
 
        transport = MemoryTransport()
1214
 
        client = FakeClient(transport.base)
1215
 
        client.add_expected_call(
1216
 
            'Branch.get_stacked_on_url', ('kwaak/',),
1217
 
            'error', ('NotStacked',))
1218
 
        client.add_expected_call(
1219
 
            'Branch.get_parent', ('kwaak/',),
1220
 
            'success', ('http://foo/',))
1221
 
        transport.mkdir('kwaak')
1222
 
        transport = transport.clone('kwaak')
1223
 
        branch = self.make_remote_branch(transport, client)
1224
 
        result = branch.get_parent()
1225
 
        self.assertEqual('http://foo/', result)
1226
 
        self.assertFinished(client)
1227
 
 
1228
 
 
1229
 
class TestBranchSetParentLocation(RemoteBranchTestCase):
1230
 
 
1231
 
    def test_no_parent(self):
1232
 
        # We call the verb when setting parent to None
1233
 
        transport = MemoryTransport()
1234
 
        client = FakeClient(transport.base)
1235
 
        client.add_expected_call(
1236
 
            'Branch.get_stacked_on_url', ('quack/',),
1237
 
            'error', ('NotStacked',))
1238
 
        client.add_expected_call(
1239
 
            'Branch.set_parent_location', ('quack/', 'b', 'r', ''),
1240
 
            'success', ())
1241
 
        transport.mkdir('quack')
1242
 
        transport = transport.clone('quack')
1243
 
        branch = self.make_remote_branch(transport, client)
1244
 
        branch._lock_token = 'b'
1245
 
        branch._repo_lock_token = 'r'
1246
 
        branch._set_parent_location(None)
1247
 
        self.assertFinished(client)
1248
 
 
1249
 
    def test_parent(self):
1250
 
        transport = MemoryTransport()
1251
 
        client = FakeClient(transport.base)
1252
 
        client.add_expected_call(
1253
 
            'Branch.get_stacked_on_url', ('kwaak/',),
1254
 
            'error', ('NotStacked',))
1255
 
        client.add_expected_call(
1256
 
            'Branch.set_parent_location', ('kwaak/', 'b', 'r', 'foo'),
1257
 
            'success', ())
1258
 
        transport.mkdir('kwaak')
1259
 
        transport = transport.clone('kwaak')
1260
 
        branch = self.make_remote_branch(transport, client)
1261
 
        branch._lock_token = 'b'
1262
 
        branch._repo_lock_token = 'r'
1263
 
        branch._set_parent_location('foo')
1264
 
        self.assertFinished(client)
1265
 
 
1266
 
    def test_backwards_compat(self):
1267
 
        self.setup_smart_server_with_call_log()
1268
 
        branch = self.make_branch('.')
1269
 
        self.reset_smart_call_log()
1270
 
        verb = 'Branch.set_parent_location'
1271
 
        self.disable_verb(verb)
1272
 
        branch.set_parent('http://foo/')
1273
 
        self.assertLength(12, self.hpss_calls)
1274
 
 
1275
 
 
1276
 
class TestBranchGetTagsBytes(RemoteBranchTestCase):
1277
 
 
1278
 
    def test_backwards_compat(self):
1279
 
        self.setup_smart_server_with_call_log()
1280
 
        branch = self.make_branch('.')
1281
 
        self.reset_smart_call_log()
1282
 
        verb = 'Branch.get_tags_bytes'
1283
 
        self.disable_verb(verb)
1284
 
        branch.tags.get_tag_dict()
1285
 
        call_count = len([call for call in self.hpss_calls if
1286
 
            call.call.method == verb])
1287
 
        self.assertEqual(1, call_count)
1288
 
 
1289
 
    def test_trivial(self):
1290
 
        transport = MemoryTransport()
1291
 
        client = FakeClient(transport.base)
1292
 
        client.add_expected_call(
1293
 
            'Branch.get_stacked_on_url', ('quack/',),
1294
 
            'error', ('NotStacked',))
1295
 
        client.add_expected_call(
1296
 
            'Branch.get_tags_bytes', ('quack/',),
1297
 
            'success', ('',))
1298
 
        transport.mkdir('quack')
1299
 
        transport = transport.clone('quack')
1300
 
        branch = self.make_remote_branch(transport, client)
1301
 
        result = branch.tags.get_tag_dict()
1302
 
        self.assertFinished(client)
1303
 
        self.assertEqual({}, result)
1304
 
 
1305
 
 
1306
 
class TestBranchSetTagsBytes(RemoteBranchTestCase):
1307
 
 
1308
 
    def test_trivial(self):
1309
 
        transport = MemoryTransport()
1310
 
        client = FakeClient(transport.base)
1311
 
        client.add_expected_call(
1312
 
            'Branch.get_stacked_on_url', ('quack/',),
1313
 
            'error', ('NotStacked',))
1314
 
        client.add_expected_call(
1315
 
            'Branch.set_tags_bytes', ('quack/', 'branch token', 'repo token'),
1316
 
            'success', ('',))
1317
 
        transport.mkdir('quack')
1318
 
        transport = transport.clone('quack')
1319
 
        branch = self.make_remote_branch(transport, client)
1320
 
        self.lock_remote_branch(branch)
1321
 
        branch._set_tags_bytes('tags bytes')
1322
 
        self.assertFinished(client)
1323
 
        self.assertEqual('tags bytes', client._calls[-1][-1])
1324
 
 
1325
 
    def test_backwards_compatible(self):
1326
 
        transport = MemoryTransport()
1327
 
        client = FakeClient(transport.base)
1328
 
        client.add_expected_call(
1329
 
            'Branch.get_stacked_on_url', ('quack/',),
1330
 
            'error', ('NotStacked',))
1331
 
        client.add_expected_call(
1332
 
            'Branch.set_tags_bytes', ('quack/', 'branch token', 'repo token'),
1333
 
            'unknown', ('Branch.set_tags_bytes',))
1334
 
        transport.mkdir('quack')
1335
 
        transport = transport.clone('quack')
1336
 
        branch = self.make_remote_branch(transport, client)
1337
 
        self.lock_remote_branch(branch)
1338
 
        class StubRealBranch(object):
1339
 
            def __init__(self):
1340
 
                self.calls = []
1341
 
            def _set_tags_bytes(self, bytes):
1342
 
                self.calls.append(('set_tags_bytes', bytes))
1343
 
        real_branch = StubRealBranch()
1344
 
        branch._real_branch = real_branch
1345
 
        branch._set_tags_bytes('tags bytes')
1346
 
        # Call a second time, to exercise the 'remote version already inferred'
1347
 
        # code path.
1348
 
        branch._set_tags_bytes('tags bytes')
1349
 
        self.assertFinished(client)
1350
 
        self.assertEqual(
1351
 
            [('set_tags_bytes', 'tags bytes')] * 2, real_branch.calls)
1352
 
 
1353
 
 
1354
 
class TestBranchHeadsToFetch(RemoteBranchTestCase):
1355
 
 
1356
 
    def test_uses_last_revision_info_and_tags_by_default(self):
1357
 
        transport = MemoryTransport()
1358
 
        client = FakeClient(transport.base)
1359
 
        client.add_expected_call(
1360
 
            'Branch.get_stacked_on_url', ('quack/',),
1361
 
            'error', ('NotStacked',))
1362
 
        client.add_expected_call(
1363
 
            'Branch.last_revision_info', ('quack/',),
1364
 
            'success', ('ok', '1', 'rev-tip'))
1365
 
        client.add_expected_call(
1366
 
            'Branch.get_config_file', ('quack/',),
1367
 
            'success', ('ok',), '')
1368
 
        transport.mkdir('quack')
1369
 
        transport = transport.clone('quack')
1370
 
        branch = self.make_remote_branch(transport, client)
1371
 
        result = branch.heads_to_fetch()
1372
 
        self.assertFinished(client)
1373
 
        self.assertEqual((set(['rev-tip']), set()), result)
1374
 
 
1375
 
    def test_uses_last_revision_info_and_tags_when_set(self):
1376
 
        transport = MemoryTransport()
1377
 
        client = FakeClient(transport.base)
1378
 
        client.add_expected_call(
1379
 
            'Branch.get_stacked_on_url', ('quack/',),
1380
 
            'error', ('NotStacked',))
1381
 
        client.add_expected_call(
1382
 
            'Branch.last_revision_info', ('quack/',),
1383
 
            'success', ('ok', '1', 'rev-tip'))
1384
 
        client.add_expected_call(
1385
 
            'Branch.get_config_file', ('quack/',),
1386
 
            'success', ('ok',), 'branch.fetch_tags = True')
1387
 
        # XXX: this will break if the default format's serialization of tags
1388
 
        # changes, or if the RPC for fetching tags changes from get_tags_bytes.
1389
 
        client.add_expected_call(
1390
 
            'Branch.get_tags_bytes', ('quack/',),
1391
 
            'success', ('d5:tag-17:rev-foo5:tag-27:rev-bare',))
1392
 
        transport.mkdir('quack')
1393
 
        transport = transport.clone('quack')
1394
 
        branch = self.make_remote_branch(transport, client)
1395
 
        result = branch.heads_to_fetch()
1396
 
        self.assertFinished(client)
1397
 
        self.assertEqual(
1398
 
            (set(['rev-tip']), set(['rev-foo', 'rev-bar'])), result)
1399
 
 
1400
 
    def test_uses_rpc_for_formats_with_non_default_heads_to_fetch(self):
1401
 
        transport = MemoryTransport()
1402
 
        client = FakeClient(transport.base)
1403
 
        client.add_expected_call(
1404
 
            'Branch.get_stacked_on_url', ('quack/',),
1405
 
            'error', ('NotStacked',))
1406
 
        client.add_expected_call(
1407
 
            'Branch.heads_to_fetch', ('quack/',),
1408
 
            'success', (['tip'], ['tagged-1', 'tagged-2']))
1409
 
        transport.mkdir('quack')
1410
 
        transport = transport.clone('quack')
1411
 
        branch = self.make_remote_branch(transport, client)
1412
 
        branch._format._use_default_local_heads_to_fetch = lambda: False
1413
 
        result = branch.heads_to_fetch()
1414
 
        self.assertFinished(client)
1415
 
        self.assertEqual((set(['tip']), set(['tagged-1', 'tagged-2'])), result)
1416
 
 
1417
 
    def make_branch_with_tags(self):
1418
 
        self.setup_smart_server_with_call_log()
1419
 
        # Make a branch with a single revision.
1420
 
        builder = self.make_branch_builder('foo')
1421
 
        builder.start_series()
1422
 
        builder.build_snapshot('tip', None, [
1423
 
            ('add', ('', 'root-id', 'directory', ''))])
1424
 
        builder.finish_series()
1425
 
        branch = builder.get_branch()
1426
 
        # Add two tags to that branch
1427
 
        branch.tags.set_tag('tag-1', 'rev-1')
1428
 
        branch.tags.set_tag('tag-2', 'rev-2')
1429
 
        return branch
1430
 
 
1431
 
    def test_backwards_compatible(self):
1432
 
        branch = self.make_branch_with_tags()
1433
 
        c = branch.get_config()
1434
 
        c.set_user_option('branch.fetch_tags', 'True')
1435
 
        self.addCleanup(branch.lock_read().unlock)
1436
 
        # Disable the heads_to_fetch verb
1437
 
        verb = 'Branch.heads_to_fetch'
1438
 
        self.disable_verb(verb)
1439
 
        self.reset_smart_call_log()
1440
 
        result = branch.heads_to_fetch()
1441
 
        self.assertEqual((set(['tip']), set(['rev-1', 'rev-2'])), result)
1442
 
        self.assertEqual(
1443
 
            ['Branch.last_revision_info', 'Branch.get_config_file',
1444
 
             'Branch.get_tags_bytes'],
1445
 
            [call.call.method for call in self.hpss_calls])
1446
 
 
1447
 
    def test_backwards_compatible_no_tags(self):
1448
 
        branch = self.make_branch_with_tags()
1449
 
        c = branch.get_config()
1450
 
        c.set_user_option('branch.fetch_tags', 'False')
1451
 
        self.addCleanup(branch.lock_read().unlock)
1452
 
        # Disable the heads_to_fetch verb
1453
 
        verb = 'Branch.heads_to_fetch'
1454
 
        self.disable_verb(verb)
1455
 
        self.reset_smart_call_log()
1456
 
        result = branch.heads_to_fetch()
1457
 
        self.assertEqual((set(['tip']), set()), result)
1458
 
        self.assertEqual(
1459
 
            ['Branch.last_revision_info', 'Branch.get_config_file'],
1460
 
            [call.call.method for call in self.hpss_calls])
1461
 
 
1462
 
 
1463
 
class TestBranchLastRevisionInfo(RemoteBranchTestCase):
 
228
class TestBranchLastRevisionInfo(tests.TestCase):
1464
229
 
1465
230
    def test_empty_branch(self):
1466
231
        # in an empty branch we decode the response properly
 
232
        client = FakeClient([(('ok', '0', 'null:'), )])
1467
233
        transport = MemoryTransport()
1468
 
        client = FakeClient(transport.base)
1469
 
        client.add_expected_call(
1470
 
            'Branch.get_stacked_on_url', ('quack/',),
1471
 
            'error', ('NotStacked',))
1472
 
        client.add_expected_call(
1473
 
            'Branch.last_revision_info', ('quack/',),
1474
 
            'success', ('ok', '0', 'null:'))
1475
234
        transport.mkdir('quack')
1476
235
        transport = transport.clone('quack')
1477
 
        branch = self.make_remote_branch(transport, client)
 
236
        # we do not want bzrdir to make any remote calls
 
237
        bzrdir = RemoteBzrDir(transport, _client=False)
 
238
        branch = RemoteBranch(bzrdir, None, _client=client)
1478
239
        result = branch.last_revision_info()
1479
 
        self.assertFinished(client)
 
240
 
 
241
        self.assertEqual(
 
242
            [('call', 'Branch.last_revision_info', ('///quack/',))],
 
243
            client._calls)
1480
244
        self.assertEqual((0, NULL_REVISION), result)
1481
245
 
1482
246
    def test_non_empty_branch(self):
1483
247
        # in a non-empty branch we also decode the response properly
1484
248
        revid = u'\xc8'.encode('utf8')
 
249
        client = FakeClient([(('ok', '2', revid), )])
1485
250
        transport = MemoryTransport()
1486
 
        client = FakeClient(transport.base)
1487
 
        client.add_expected_call(
1488
 
            'Branch.get_stacked_on_url', ('kwaak/',),
1489
 
            'error', ('NotStacked',))
1490
 
        client.add_expected_call(
1491
 
            'Branch.last_revision_info', ('kwaak/',),
1492
 
            'success', ('ok', '2', revid))
1493
251
        transport.mkdir('kwaak')
1494
252
        transport = transport.clone('kwaak')
1495
 
        branch = self.make_remote_branch(transport, client)
 
253
        # we do not want bzrdir to make any remote calls
 
254
        bzrdir = RemoteBzrDir(transport, _client=False)
 
255
        branch = RemoteBranch(bzrdir, None, _client=client)
1496
256
        result = branch.last_revision_info()
 
257
 
 
258
        self.assertEqual(
 
259
            [('call', 'Branch.last_revision_info', ('///kwaak/',))],
 
260
            client._calls)
1497
261
        self.assertEqual((2, revid), result)
1498
262
 
1499
263
 
1500
 
class TestBranch_get_stacked_on_url(TestRemote):
1501
 
    """Test Branch._get_stacked_on_url rpc"""
1502
 
 
1503
 
    def test_get_stacked_on_invalid_url(self):
1504
 
        # test that asking for a stacked on url the server can't access works.
1505
 
        # This isn't perfect, but then as we're in the same process there
1506
 
        # really isn't anything we can do to be 100% sure that the server
1507
 
        # doesn't just open in - this test probably needs to be rewritten using
1508
 
        # a spawn()ed server.
1509
 
        stacked_branch = self.make_branch('stacked', format='1.9')
1510
 
        memory_branch = self.make_branch('base', format='1.9')
1511
 
        vfs_url = self.get_vfs_only_url('base')
1512
 
        stacked_branch.set_stacked_on_url(vfs_url)
1513
 
        transport = stacked_branch.bzrdir.root_transport
1514
 
        client = FakeClient(transport.base)
1515
 
        client.add_expected_call(
1516
 
            'Branch.get_stacked_on_url', ('stacked/',),
1517
 
            'success', ('ok', vfs_url))
1518
 
        # XXX: Multiple calls are bad, this second call documents what is
1519
 
        # today.
1520
 
        client.add_expected_call(
1521
 
            'Branch.get_stacked_on_url', ('stacked/',),
1522
 
            'success', ('ok', vfs_url))
1523
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
1524
 
            _client=client)
1525
 
        repo_fmt = remote.RemoteRepositoryFormat()
1526
 
        repo_fmt._custom_format = stacked_branch.repository._format
1527
 
        branch = RemoteBranch(bzrdir, RemoteRepository(bzrdir, repo_fmt),
1528
 
            _client=client)
1529
 
        result = branch.get_stacked_on_url()
1530
 
        self.assertEqual(vfs_url, result)
1531
 
 
1532
 
    def test_backwards_compatible(self):
1533
 
        # like with bzr1.6 with no Branch.get_stacked_on_url rpc
1534
 
        base_branch = self.make_branch('base', format='1.6')
1535
 
        stacked_branch = self.make_branch('stacked', format='1.6')
1536
 
        stacked_branch.set_stacked_on_url('../base')
1537
 
        client = FakeClient(self.get_url())
1538
 
        branch_network_name = self.get_branch_format().network_name()
1539
 
        client.add_expected_call(
1540
 
            'BzrDir.open_branchV3', ('stacked/',),
1541
 
            'success', ('branch', branch_network_name))
1542
 
        client.add_expected_call(
1543
 
            'BzrDir.find_repositoryV3', ('stacked/',),
1544
 
            'success', ('ok', '', 'no', 'no', 'yes',
1545
 
                stacked_branch.repository._format.network_name()))
1546
 
        # called twice, once from constructor and then again by us
1547
 
        client.add_expected_call(
1548
 
            'Branch.get_stacked_on_url', ('stacked/',),
1549
 
            'unknown', ('Branch.get_stacked_on_url',))
1550
 
        client.add_expected_call(
1551
 
            'Branch.get_stacked_on_url', ('stacked/',),
1552
 
            'unknown', ('Branch.get_stacked_on_url',))
1553
 
        # this will also do vfs access, but that goes direct to the transport
1554
 
        # and isn't seen by the FakeClient.
1555
 
        bzrdir = RemoteBzrDir(self.get_transport('stacked'),
1556
 
            RemoteBzrDirFormat(), _client=client)
1557
 
        branch = bzrdir.open_branch()
1558
 
        result = branch.get_stacked_on_url()
1559
 
        self.assertEqual('../base', result)
1560
 
        self.assertFinished(client)
1561
 
        # it's in the fallback list both for the RemoteRepository and its vfs
1562
 
        # repository
1563
 
        self.assertEqual(1, len(branch.repository._fallback_repositories))
1564
 
        self.assertEqual(1,
1565
 
            len(branch.repository._real_repository._fallback_repositories))
1566
 
 
1567
 
    def test_get_stacked_on_real_branch(self):
1568
 
        base_branch = self.make_branch('base')
1569
 
        stacked_branch = self.make_branch('stacked')
1570
 
        stacked_branch.set_stacked_on_url('../base')
1571
 
        reference_format = self.get_repo_format()
1572
 
        network_name = reference_format.network_name()
1573
 
        client = FakeClient(self.get_url())
1574
 
        branch_network_name = self.get_branch_format().network_name()
1575
 
        client.add_expected_call(
1576
 
            'BzrDir.open_branchV3', ('stacked/',),
1577
 
            'success', ('branch', branch_network_name))
1578
 
        client.add_expected_call(
1579
 
            'BzrDir.find_repositoryV3', ('stacked/',),
1580
 
            'success', ('ok', '', 'yes', 'no', 'yes', network_name))
1581
 
        # called twice, once from constructor and then again by us
1582
 
        client.add_expected_call(
1583
 
            'Branch.get_stacked_on_url', ('stacked/',),
1584
 
            'success', ('ok', '../base'))
1585
 
        client.add_expected_call(
1586
 
            'Branch.get_stacked_on_url', ('stacked/',),
1587
 
            'success', ('ok', '../base'))
1588
 
        bzrdir = RemoteBzrDir(self.get_transport('stacked'),
1589
 
            RemoteBzrDirFormat(), _client=client)
1590
 
        branch = bzrdir.open_branch()
1591
 
        result = branch.get_stacked_on_url()
1592
 
        self.assertEqual('../base', result)
1593
 
        self.assertFinished(client)
1594
 
        # it's in the fallback list both for the RemoteRepository.
1595
 
        self.assertEqual(1, len(branch.repository._fallback_repositories))
1596
 
        # And we haven't had to construct a real repository.
1597
 
        self.assertEqual(None, branch.repository._real_repository)
1598
 
 
1599
 
 
1600
 
class TestBranchSetLastRevision(RemoteBranchTestCase):
 
264
class TestBranchSetLastRevision(tests.TestCase):
1601
265
 
1602
266
    def test_set_empty(self):
1603
 
        # _set_last_revision_info('null:') is translated to calling
 
267
        # set_revision_history([]) is translated to calling
1604
268
        # Branch.set_last_revision(path, '') on the wire.
 
269
        client = FakeClient([
 
270
            # lock_write
 
271
            (('ok', 'branch token', 'repo token'), ),
 
272
            # set_last_revision
 
273
            (('ok',), ),
 
274
            # unlock
 
275
            (('ok',), )])
1605
276
        transport = MemoryTransport()
1606
277
        transport.mkdir('branch')
1607
278
        transport = transport.clone('branch')
1608
279
 
1609
 
        client = FakeClient(transport.base)
1610
 
        client.add_expected_call(
1611
 
            'Branch.get_stacked_on_url', ('branch/',),
1612
 
            'error', ('NotStacked',))
1613
 
        client.add_expected_call(
1614
 
            'Branch.lock_write', ('branch/', '', ''),
1615
 
            'success', ('ok', 'branch token', 'repo token'))
1616
 
        client.add_expected_call(
1617
 
            'Branch.last_revision_info',
1618
 
            ('branch/',),
1619
 
            'success', ('ok', '0', 'null:'))
1620
 
        client.add_expected_call(
1621
 
            'Branch.set_last_revision', ('branch/', 'branch token', 'repo token', 'null:',),
1622
 
            'success', ('ok',))
1623
 
        client.add_expected_call(
1624
 
            'Branch.unlock', ('branch/', 'branch token', 'repo token'),
1625
 
            'success', ('ok',))
1626
 
        branch = self.make_remote_branch(transport, client)
 
280
        bzrdir = RemoteBzrDir(transport, _client=False)
 
281
        branch = RemoteBranch(bzrdir, None, _client=client)
 
282
        # This is a hack to work around the problem that RemoteBranch currently
 
283
        # unnecessarily invokes _ensure_real upon a call to lock_write.
 
284
        branch._ensure_real = lambda: None
1627
285
        branch.lock_write()
1628
 
        result = branch._set_last_revision(NULL_REVISION)
 
286
        client._calls = []
 
287
        result = branch.set_revision_history([])
 
288
        self.assertEqual(
 
289
            [('call', 'Branch.set_last_revision',
 
290
                ('///branch/', 'branch token', 'repo token', 'null:'))],
 
291
            client._calls)
1629
292
        branch.unlock()
1630
293
        self.assertEqual(None, result)
1631
 
        self.assertFinished(client)
1632
294
 
1633
295
    def test_set_nonempty(self):
1634
 
        # set_last_revision_info(N, rev-idN) is translated to calling
 
296
        # set_revision_history([rev-id1, ..., rev-idN]) is translated to calling
1635
297
        # Branch.set_last_revision(path, rev-idN) on the wire.
1636
 
        transport = MemoryTransport()
1637
 
        transport.mkdir('branch')
1638
 
        transport = transport.clone('branch')
1639
 
 
1640
 
        client = FakeClient(transport.base)
1641
 
        client.add_expected_call(
1642
 
            'Branch.get_stacked_on_url', ('branch/',),
1643
 
            'error', ('NotStacked',))
1644
 
        client.add_expected_call(
1645
 
            'Branch.lock_write', ('branch/', '', ''),
1646
 
            'success', ('ok', 'branch token', 'repo token'))
1647
 
        client.add_expected_call(
1648
 
            'Branch.last_revision_info',
1649
 
            ('branch/',),
1650
 
            'success', ('ok', '0', 'null:'))
1651
 
        lines = ['rev-id2']
1652
 
        encoded_body = bz2.compress('\n'.join(lines))
1653
 
        client.add_success_response_with_body(encoded_body, 'ok')
1654
 
        client.add_expected_call(
1655
 
            'Branch.set_last_revision', ('branch/', 'branch token', 'repo token', 'rev-id2',),
1656
 
            'success', ('ok',))
1657
 
        client.add_expected_call(
1658
 
            'Branch.unlock', ('branch/', 'branch token', 'repo token'),
1659
 
            'success', ('ok',))
1660
 
        branch = self.make_remote_branch(transport, client)
1661
 
        # Lock the branch, reset the record of remote calls.
1662
 
        branch.lock_write()
1663
 
        result = branch._set_last_revision('rev-id2')
1664
 
        branch.unlock()
1665
 
        self.assertEqual(None, result)
1666
 
        self.assertFinished(client)
1667
 
 
1668
 
    def test_no_such_revision(self):
1669
 
        transport = MemoryTransport()
1670
 
        transport.mkdir('branch')
1671
 
        transport = transport.clone('branch')
1672
 
        # A response of 'NoSuchRevision' is translated into an exception.
1673
 
        client = FakeClient(transport.base)
1674
 
        client.add_expected_call(
1675
 
            'Branch.get_stacked_on_url', ('branch/',),
1676
 
            'error', ('NotStacked',))
1677
 
        client.add_expected_call(
1678
 
            'Branch.lock_write', ('branch/', '', ''),
1679
 
            'success', ('ok', 'branch token', 'repo token'))
1680
 
        client.add_expected_call(
1681
 
            'Branch.last_revision_info',
1682
 
            ('branch/',),
1683
 
            'success', ('ok', '0', 'null:'))
1684
 
        # get_graph calls to construct the revision history, for the set_rh
1685
 
        # hook
1686
 
        lines = ['rev-id']
1687
 
        encoded_body = bz2.compress('\n'.join(lines))
1688
 
        client.add_success_response_with_body(encoded_body, 'ok')
1689
 
        client.add_expected_call(
1690
 
            'Branch.set_last_revision', ('branch/', 'branch token', 'repo token', 'rev-id',),
1691
 
            'error', ('NoSuchRevision', 'rev-id'))
1692
 
        client.add_expected_call(
1693
 
            'Branch.unlock', ('branch/', 'branch token', 'repo token'),
1694
 
            'success', ('ok',))
1695
 
 
1696
 
        branch = self.make_remote_branch(transport, client)
1697
 
        branch.lock_write()
1698
 
        self.assertRaises(
1699
 
            errors.NoSuchRevision, branch._set_last_revision, 'rev-id')
1700
 
        branch.unlock()
1701
 
        self.assertFinished(client)
1702
 
 
1703
 
    def test_tip_change_rejected(self):
1704
 
        """TipChangeRejected responses cause a TipChangeRejected exception to
1705
 
        be raised.
1706
 
        """
1707
 
        transport = MemoryTransport()
1708
 
        transport.mkdir('branch')
1709
 
        transport = transport.clone('branch')
1710
 
        client = FakeClient(transport.base)
1711
 
        rejection_msg_unicode = u'rejection message\N{INTERROBANG}'
1712
 
        rejection_msg_utf8 = rejection_msg_unicode.encode('utf8')
1713
 
        client.add_expected_call(
1714
 
            'Branch.get_stacked_on_url', ('branch/',),
1715
 
            'error', ('NotStacked',))
1716
 
        client.add_expected_call(
1717
 
            'Branch.lock_write', ('branch/', '', ''),
1718
 
            'success', ('ok', 'branch token', 'repo token'))
1719
 
        client.add_expected_call(
1720
 
            'Branch.last_revision_info',
1721
 
            ('branch/',),
1722
 
            'success', ('ok', '0', 'null:'))
1723
 
        lines = ['rev-id']
1724
 
        encoded_body = bz2.compress('\n'.join(lines))
1725
 
        client.add_success_response_with_body(encoded_body, 'ok')
1726
 
        client.add_expected_call(
1727
 
            'Branch.set_last_revision', ('branch/', 'branch token', 'repo token', 'rev-id',),
1728
 
            'error', ('TipChangeRejected', rejection_msg_utf8))
1729
 
        client.add_expected_call(
1730
 
            'Branch.unlock', ('branch/', 'branch token', 'repo token'),
1731
 
            'success', ('ok',))
1732
 
        branch = self.make_remote_branch(transport, client)
1733
 
        branch.lock_write()
1734
 
        # The 'TipChangeRejected' error response triggered by calling
1735
 
        # set_last_revision_info causes a TipChangeRejected exception.
1736
 
        err = self.assertRaises(
1737
 
            errors.TipChangeRejected,
1738
 
            branch._set_last_revision, 'rev-id')
1739
 
        # The UTF-8 message from the response has been decoded into a unicode
1740
 
        # object.
1741
 
        self.assertIsInstance(err.msg, unicode)
1742
 
        self.assertEqual(rejection_msg_unicode, err.msg)
1743
 
        branch.unlock()
1744
 
        self.assertFinished(client)
1745
 
 
1746
 
 
1747
 
class TestBranchSetLastRevisionInfo(RemoteBranchTestCase):
1748
 
 
1749
 
    def test_set_last_revision_info(self):
1750
 
        # set_last_revision_info(num, 'rev-id') is translated to calling
1751
 
        # Branch.set_last_revision_info(num, 'rev-id') on the wire.
1752
 
        transport = MemoryTransport()
1753
 
        transport.mkdir('branch')
1754
 
        transport = transport.clone('branch')
1755
 
        client = FakeClient(transport.base)
1756
 
        # get_stacked_on_url
1757
 
        client.add_error_response('NotStacked')
1758
 
        # lock_write
1759
 
        client.add_success_response('ok', 'branch token', 'repo token')
1760
 
        # query the current revision
1761
 
        client.add_success_response('ok', '0', 'null:')
1762
 
        # set_last_revision
1763
 
        client.add_success_response('ok')
1764
 
        # unlock
1765
 
        client.add_success_response('ok')
1766
 
 
1767
 
        branch = self.make_remote_branch(transport, client)
1768
 
        # Lock the branch, reset the record of remote calls.
1769
 
        branch.lock_write()
1770
 
        client._calls = []
1771
 
        result = branch.set_last_revision_info(1234, 'a-revision-id')
1772
 
        self.assertEqual(
1773
 
            [('call', 'Branch.last_revision_info', ('branch/',)),
1774
 
             ('call', 'Branch.set_last_revision_info',
1775
 
                ('branch/', 'branch token', 'repo token',
1776
 
                 '1234', 'a-revision-id'))],
1777
 
            client._calls)
1778
 
        self.assertEqual(None, result)
1779
 
 
1780
 
    def test_no_such_revision(self):
1781
 
        # A response of 'NoSuchRevision' is translated into an exception.
1782
 
        transport = MemoryTransport()
1783
 
        transport.mkdir('branch')
1784
 
        transport = transport.clone('branch')
1785
 
        client = FakeClient(transport.base)
1786
 
        # get_stacked_on_url
1787
 
        client.add_error_response('NotStacked')
1788
 
        # lock_write
1789
 
        client.add_success_response('ok', 'branch token', 'repo token')
1790
 
        # set_last_revision
1791
 
        client.add_error_response('NoSuchRevision', 'revid')
1792
 
        # unlock
1793
 
        client.add_success_response('ok')
1794
 
 
1795
 
        branch = self.make_remote_branch(transport, client)
1796
 
        # Lock the branch, reset the record of remote calls.
1797
 
        branch.lock_write()
1798
 
        client._calls = []
1799
 
 
1800
 
        self.assertRaises(
1801
 
            errors.NoSuchRevision, branch.set_last_revision_info, 123, 'revid')
1802
 
        branch.unlock()
1803
 
 
1804
 
    def test_backwards_compatibility(self):
1805
 
        """If the server does not support the Branch.set_last_revision_info
1806
 
        verb (which is new in 1.4), then the client falls back to VFS methods.
1807
 
        """
1808
 
        # This test is a little messy.  Unlike most tests in this file, it
1809
 
        # doesn't purely test what a Remote* object sends over the wire, and
1810
 
        # how it reacts to responses from the wire.  It instead relies partly
1811
 
        # on asserting that the RemoteBranch will call
1812
 
        # self._real_branch.set_last_revision_info(...).
1813
 
 
1814
 
        # First, set up our RemoteBranch with a FakeClient that raises
1815
 
        # UnknownSmartMethod, and a StubRealBranch that logs how it is called.
1816
 
        transport = MemoryTransport()
1817
 
        transport.mkdir('branch')
1818
 
        transport = transport.clone('branch')
1819
 
        client = FakeClient(transport.base)
1820
 
        client.add_expected_call(
1821
 
            'Branch.get_stacked_on_url', ('branch/',),
1822
 
            'error', ('NotStacked',))
1823
 
        client.add_expected_call(
1824
 
            'Branch.last_revision_info',
1825
 
            ('branch/',),
1826
 
            'success', ('ok', '0', 'null:'))
1827
 
        client.add_expected_call(
1828
 
            'Branch.set_last_revision_info',
1829
 
            ('branch/', 'branch token', 'repo token', '1234', 'a-revision-id',),
1830
 
            'unknown', 'Branch.set_last_revision_info')
1831
 
 
1832
 
        branch = self.make_remote_branch(transport, client)
1833
 
        class StubRealBranch(object):
1834
 
            def __init__(self):
1835
 
                self.calls = []
1836
 
            def set_last_revision_info(self, revno, revision_id):
1837
 
                self.calls.append(
1838
 
                    ('set_last_revision_info', revno, revision_id))
1839
 
            def _clear_cached_state(self):
1840
 
                pass
1841
 
        real_branch = StubRealBranch()
1842
 
        branch._real_branch = real_branch
1843
 
        self.lock_remote_branch(branch)
1844
 
 
1845
 
        # Call set_last_revision_info, and verify it behaved as expected.
1846
 
        result = branch.set_last_revision_info(1234, 'a-revision-id')
1847
 
        self.assertEqual(
1848
 
            [('set_last_revision_info', 1234, 'a-revision-id')],
1849
 
            real_branch.calls)
1850
 
        self.assertFinished(client)
1851
 
 
1852
 
    def test_unexpected_error(self):
1853
 
        # If the server sends an error the client doesn't understand, it gets
1854
 
        # turned into an UnknownErrorFromSmartServer, which is presented as a
1855
 
        # non-internal error to the user.
1856
 
        transport = MemoryTransport()
1857
 
        transport.mkdir('branch')
1858
 
        transport = transport.clone('branch')
1859
 
        client = FakeClient(transport.base)
1860
 
        # get_stacked_on_url
1861
 
        client.add_error_response('NotStacked')
1862
 
        # lock_write
1863
 
        client.add_success_response('ok', 'branch token', 'repo token')
1864
 
        # set_last_revision
1865
 
        client.add_error_response('UnexpectedError')
1866
 
        # unlock
1867
 
        client.add_success_response('ok')
1868
 
 
1869
 
        branch = self.make_remote_branch(transport, client)
1870
 
        # Lock the branch, reset the record of remote calls.
1871
 
        branch.lock_write()
1872
 
        client._calls = []
1873
 
 
1874
 
        err = self.assertRaises(
1875
 
            errors.UnknownErrorFromSmartServer,
1876
 
            branch.set_last_revision_info, 123, 'revid')
1877
 
        self.assertEqual(('UnexpectedError',), err.error_tuple)
1878
 
        branch.unlock()
1879
 
 
1880
 
    def test_tip_change_rejected(self):
1881
 
        """TipChangeRejected responses cause a TipChangeRejected exception to
1882
 
        be raised.
1883
 
        """
1884
 
        transport = MemoryTransport()
1885
 
        transport.mkdir('branch')
1886
 
        transport = transport.clone('branch')
1887
 
        client = FakeClient(transport.base)
1888
 
        # get_stacked_on_url
1889
 
        client.add_error_response('NotStacked')
1890
 
        # lock_write
1891
 
        client.add_success_response('ok', 'branch token', 'repo token')
1892
 
        # set_last_revision
1893
 
        client.add_error_response('TipChangeRejected', 'rejection message')
1894
 
        # unlock
1895
 
        client.add_success_response('ok')
1896
 
 
1897
 
        branch = self.make_remote_branch(transport, client)
1898
 
        # Lock the branch, reset the record of remote calls.
1899
 
        branch.lock_write()
1900
 
        self.addCleanup(branch.unlock)
1901
 
        client._calls = []
1902
 
 
1903
 
        # The 'TipChangeRejected' error response triggered by calling
1904
 
        # set_last_revision_info causes a TipChangeRejected exception.
1905
 
        err = self.assertRaises(
1906
 
            errors.TipChangeRejected,
1907
 
            branch.set_last_revision_info, 123, 'revid')
1908
 
        self.assertEqual('rejection message', err.msg)
1909
 
 
1910
 
 
1911
 
class TestBranchGetSetConfig(RemoteBranchTestCase):
1912
 
 
1913
 
    def test_get_branch_conf(self):
1914
 
        # in an empty branch we decode the response properly
1915
 
        client = FakeClient()
1916
 
        client.add_expected_call(
1917
 
            'Branch.get_stacked_on_url', ('memory:///',),
1918
 
            'error', ('NotStacked',),)
1919
 
        client.add_success_response_with_body('# config file body', 'ok')
1920
 
        transport = MemoryTransport()
1921
 
        branch = self.make_remote_branch(transport, client)
1922
 
        config = branch.get_config()
1923
 
        config.has_explicit_nickname()
1924
 
        self.assertEqual(
1925
 
            [('call', 'Branch.get_stacked_on_url', ('memory:///',)),
1926
 
             ('call_expecting_body', 'Branch.get_config_file', ('memory:///',))],
1927
 
            client._calls)
1928
 
 
1929
 
    def test_get_multi_line_branch_conf(self):
1930
 
        # Make sure that multiple-line branch.conf files are supported
1931
 
        #
1932
 
        # https://bugs.launchpad.net/bzr/+bug/354075
1933
 
        client = FakeClient()
1934
 
        client.add_expected_call(
1935
 
            'Branch.get_stacked_on_url', ('memory:///',),
1936
 
            'error', ('NotStacked',),)
1937
 
        client.add_success_response_with_body('a = 1\nb = 2\nc = 3\n', 'ok')
1938
 
        transport = MemoryTransport()
1939
 
        branch = self.make_remote_branch(transport, client)
1940
 
        config = branch.get_config()
1941
 
        self.assertEqual(u'2', config.get_user_option('b'))
1942
 
 
1943
 
    def test_set_option(self):
1944
 
        client = FakeClient()
1945
 
        client.add_expected_call(
1946
 
            'Branch.get_stacked_on_url', ('memory:///',),
1947
 
            'error', ('NotStacked',),)
1948
 
        client.add_expected_call(
1949
 
            'Branch.lock_write', ('memory:///', '', ''),
1950
 
            'success', ('ok', 'branch token', 'repo token'))
1951
 
        client.add_expected_call(
1952
 
            'Branch.set_config_option', ('memory:///', 'branch token',
1953
 
            'repo token', 'foo', 'bar', ''),
1954
 
            'success', ())
1955
 
        client.add_expected_call(
1956
 
            'Branch.unlock', ('memory:///', 'branch token', 'repo token'),
1957
 
            'success', ('ok',))
1958
 
        transport = MemoryTransport()
1959
 
        branch = self.make_remote_branch(transport, client)
1960
 
        branch.lock_write()
1961
 
        config = branch._get_config()
1962
 
        config.set_option('foo', 'bar')
1963
 
        branch.unlock()
1964
 
        self.assertFinished(client)
1965
 
 
1966
 
    def test_set_option_with_dict(self):
1967
 
        client = FakeClient()
1968
 
        client.add_expected_call(
1969
 
            'Branch.get_stacked_on_url', ('memory:///',),
1970
 
            'error', ('NotStacked',),)
1971
 
        client.add_expected_call(
1972
 
            'Branch.lock_write', ('memory:///', '', ''),
1973
 
            'success', ('ok', 'branch token', 'repo token'))
1974
 
        encoded_dict_value = 'd5:ascii1:a11:unicode \xe2\x8c\x9a3:\xe2\x80\xbde'
1975
 
        client.add_expected_call(
1976
 
            'Branch.set_config_option_dict', ('memory:///', 'branch token',
1977
 
            'repo token', encoded_dict_value, 'foo', ''),
1978
 
            'success', ())
1979
 
        client.add_expected_call(
1980
 
            'Branch.unlock', ('memory:///', 'branch token', 'repo token'),
1981
 
            'success', ('ok',))
1982
 
        transport = MemoryTransport()
1983
 
        branch = self.make_remote_branch(transport, client)
1984
 
        branch.lock_write()
1985
 
        config = branch._get_config()
1986
 
        config.set_option(
1987
 
            {'ascii': 'a', u'unicode \N{WATCH}': u'\N{INTERROBANG}'},
1988
 
            'foo')
1989
 
        branch.unlock()
1990
 
        self.assertFinished(client)
1991
 
 
1992
 
    def test_backwards_compat_set_option(self):
1993
 
        self.setup_smart_server_with_call_log()
1994
 
        branch = self.make_branch('.')
1995
 
        verb = 'Branch.set_config_option'
1996
 
        self.disable_verb(verb)
1997
 
        branch.lock_write()
1998
 
        self.addCleanup(branch.unlock)
1999
 
        self.reset_smart_call_log()
2000
 
        branch._get_config().set_option('value', 'name')
2001
 
        self.assertLength(10, self.hpss_calls)
2002
 
        self.assertEqual('value', branch._get_config().get_option('name'))
2003
 
 
2004
 
    def test_backwards_compat_set_option_with_dict(self):
2005
 
        self.setup_smart_server_with_call_log()
2006
 
        branch = self.make_branch('.')
2007
 
        verb = 'Branch.set_config_option_dict'
2008
 
        self.disable_verb(verb)
2009
 
        branch.lock_write()
2010
 
        self.addCleanup(branch.unlock)
2011
 
        self.reset_smart_call_log()
2012
 
        config = branch._get_config()
2013
 
        value_dict = {'ascii': 'a', u'unicode \N{WATCH}': u'\N{INTERROBANG}'}
2014
 
        config.set_option(value_dict, 'name')
2015
 
        self.assertLength(10, self.hpss_calls)
2016
 
        self.assertEqual(value_dict, branch._get_config().get_option('name'))
2017
 
 
2018
 
 
2019
 
class TestBranchGetPutConfigStore(RemoteBranchTestCase):
2020
 
 
2021
 
    def test_get_branch_conf(self):
2022
 
        # in an empty branch we decode the response properly
2023
 
        client = FakeClient()
2024
 
        client.add_expected_call(
2025
 
            'Branch.get_stacked_on_url', ('memory:///',),
2026
 
            'error', ('NotStacked',),)
2027
 
        client.add_success_response_with_body('# config file body', 'ok')
2028
 
        transport = MemoryTransport()
2029
 
        branch = self.make_remote_branch(transport, client)
2030
 
        config = branch.get_config_stack()
2031
 
        config.get("email")
2032
 
        config.get("log_format")
2033
 
        self.assertEqual(
2034
 
            [('call', 'Branch.get_stacked_on_url', ('memory:///',)),
2035
 
             ('call_expecting_body', 'Branch.get_config_file', ('memory:///',))],
2036
 
            client._calls)
2037
 
 
2038
 
    def test_set_branch_conf(self):
2039
 
        client = FakeClient()
2040
 
        client.add_expected_call(
2041
 
            'Branch.get_stacked_on_url', ('memory:///',),
2042
 
            'error', ('NotStacked',),)
2043
 
        client.add_expected_call(
2044
 
            'Branch.lock_write', ('memory:///', '', ''),
2045
 
            'success', ('ok', 'branch token', 'repo token'))
2046
 
        client.add_expected_call(
2047
 
            'Branch.get_config_file', ('memory:///', ),
2048
 
            'success', ('ok', ), "# line 1\n")
2049
 
        client.add_expected_call(
2050
 
            'Branch.put_config_file', ('memory:///', 'branch token',
2051
 
            'repo token'),
2052
 
            'success', ('ok',))
2053
 
        client.add_expected_call(
2054
 
            'Branch.unlock', ('memory:///', 'branch token', 'repo token'),
2055
 
            'success', ('ok',))
2056
 
        transport = MemoryTransport()
2057
 
        branch = self.make_remote_branch(transport, client)
2058
 
        branch.lock_write()
2059
 
        config = branch.get_config_stack()
2060
 
        config.set('email', 'The Dude <lebowski@example.com>')
2061
 
        branch.unlock()
2062
 
        self.assertFinished(client)
2063
 
        self.assertEqual(
2064
 
            [('call', 'Branch.get_stacked_on_url', ('memory:///',)),
2065
 
             ('call', 'Branch.lock_write', ('memory:///', '', '')),
2066
 
             ('call_expecting_body', 'Branch.get_config_file', ('memory:///',)),
2067
 
             ('call_with_body_bytes_expecting_body', 'Branch.put_config_file',
2068
 
                 ('memory:///', 'branch token', 'repo token'),
2069
 
                 '# line 1\nemail = The Dude <lebowski@example.com>\n'),
2070
 
             ('call', 'Branch.unlock', ('memory:///', 'branch token', 'repo token'))],
2071
 
            client._calls)
2072
 
 
2073
 
 
2074
 
class TestBranchLockWrite(RemoteBranchTestCase):
 
298
        client = FakeClient([
 
299
            # lock_write
 
300
            (('ok', 'branch token', 'repo token'), ),
 
301
            # set_last_revision
 
302
            (('ok',), ),
 
303
            # unlock
 
304
            (('ok',), )])
 
305
        transport = MemoryTransport()
 
306
        transport.mkdir('branch')
 
307
        transport = transport.clone('branch')
 
308
 
 
309
        bzrdir = RemoteBzrDir(transport, _client=False)
 
310
        branch = RemoteBranch(bzrdir, None, _client=client)
 
311
        # This is a hack to work around the problem that RemoteBranch currently
 
312
        # unnecessarily invokes _ensure_real upon a call to lock_write.
 
313
        branch._ensure_real = lambda: None
 
314
        # Lock the branch, reset the record of remote calls.
 
315
        branch.lock_write()
 
316
        client._calls = []
 
317
 
 
318
        result = branch.set_revision_history(['rev-id1', 'rev-id2'])
 
319
        self.assertEqual(
 
320
            [('call', 'Branch.set_last_revision',
 
321
                ('///branch/', 'branch token', 'repo token', 'rev-id2'))],
 
322
            client._calls)
 
323
        branch.unlock()
 
324
        self.assertEqual(None, result)
 
325
 
 
326
    def test_no_such_revision(self):
 
327
        # A response of 'NoSuchRevision' is translated into an exception.
 
328
        client = FakeClient([
 
329
            # lock_write
 
330
            (('ok', 'branch token', 'repo token'), ),
 
331
            # set_last_revision
 
332
            (('NoSuchRevision', 'rev-id'), ),
 
333
            # unlock
 
334
            (('ok',), )])
 
335
        transport = MemoryTransport()
 
336
        transport.mkdir('branch')
 
337
        transport = transport.clone('branch')
 
338
 
 
339
        bzrdir = RemoteBzrDir(transport, _client=False)
 
340
        branch = RemoteBranch(bzrdir, None, _client=client)
 
341
        branch._ensure_real = lambda: None
 
342
        branch.lock_write()
 
343
        client._calls = []
 
344
 
 
345
        self.assertRaises(
 
346
            errors.NoSuchRevision, branch.set_revision_history, ['rev-id'])
 
347
        branch.unlock()
 
348
 
 
349
 
 
350
class TestBranchControlGetBranchConf(tests.TestCaseWithMemoryTransport):
 
351
    """Test branch.control_files api munging...
 
352
 
 
353
    We special case RemoteBranch.control_files.get('branch.conf') to
 
354
    call a specific API so that RemoteBranch's can intercept configuration
 
355
    file reading, allowing them to signal to the client about things like
 
356
    'email is configured for commits'.
 
357
    """
 
358
 
 
359
    def test_get_branch_conf(self):
 
360
        # in an empty branch we decode the response properly
 
361
        client = FakeClient([(('ok', ), 'config file body')])
 
362
        # we need to make a real branch because the remote_branch.control_files
 
363
        # will trigger _ensure_real.
 
364
        branch = self.make_branch('quack')
 
365
        transport = branch.bzrdir.root_transport
 
366
        # we do not want bzrdir to make any remote calls
 
367
        bzrdir = RemoteBzrDir(transport, _client=False)
 
368
        branch = RemoteBranch(bzrdir, None, _client=client)
 
369
        result = branch.control_files.get('branch.conf')
 
370
        self.assertEqual(
 
371
            [('call_expecting_body', 'Branch.get_config_file', ('///quack/',))],
 
372
            client._calls)
 
373
        self.assertEqual('config file body', result.read())
 
374
 
 
375
 
 
376
class TestBranchLockWrite(tests.TestCase):
2075
377
 
2076
378
    def test_lock_write_unlockable(self):
 
379
        client = FakeClient([(('UnlockableTransport', ), '')])
2077
380
        transport = MemoryTransport()
2078
 
        client = FakeClient(transport.base)
2079
 
        client.add_expected_call(
2080
 
            'Branch.get_stacked_on_url', ('quack/',),
2081
 
            'error', ('NotStacked',),)
2082
 
        client.add_expected_call(
2083
 
            'Branch.lock_write', ('quack/', '', ''),
2084
 
            'error', ('UnlockableTransport',))
2085
381
        transport.mkdir('quack')
2086
382
        transport = transport.clone('quack')
2087
 
        branch = self.make_remote_branch(transport, client)
 
383
        # we do not want bzrdir to make any remote calls
 
384
        bzrdir = RemoteBzrDir(transport, _client=False)
 
385
        branch = RemoteBranch(bzrdir, None, _client=client)
2088
386
        self.assertRaises(errors.UnlockableTransport, branch.lock_write)
2089
 
        self.assertFinished(client)
2090
 
 
2091
 
 
2092
 
class TestBranchRevisionIdToRevno(RemoteBranchTestCase):
2093
 
 
2094
 
    def test_simple(self):
2095
 
        transport = MemoryTransport()
2096
 
        client = FakeClient(transport.base)
2097
 
        client.add_expected_call(
2098
 
            'Branch.get_stacked_on_url', ('quack/',),
2099
 
            'error', ('NotStacked',),)
2100
 
        client.add_expected_call(
2101
 
            'Branch.revision_id_to_revno', ('quack/', 'null:'),
2102
 
            'success', ('ok', '0',),)
2103
 
        client.add_expected_call(
2104
 
            'Branch.revision_id_to_revno', ('quack/', 'unknown'),
2105
 
            'error', ('NoSuchRevision', 'unknown',),)
2106
 
        transport.mkdir('quack')
2107
 
        transport = transport.clone('quack')
2108
 
        branch = self.make_remote_branch(transport, client)
2109
 
        self.assertEquals(0, branch.revision_id_to_revno('null:'))
2110
 
        self.assertRaises(errors.NoSuchRevision,
2111
 
            branch.revision_id_to_revno, 'unknown')
2112
 
        self.assertFinished(client)
2113
 
 
2114
 
    def test_dotted(self):
2115
 
        transport = MemoryTransport()
2116
 
        client = FakeClient(transport.base)
2117
 
        client.add_expected_call(
2118
 
            'Branch.get_stacked_on_url', ('quack/',),
2119
 
            'error', ('NotStacked',),)
2120
 
        client.add_expected_call(
2121
 
            'Branch.revision_id_to_revno', ('quack/', 'null:'),
2122
 
            'success', ('ok', '0',),)
2123
 
        client.add_expected_call(
2124
 
            'Branch.revision_id_to_revno', ('quack/', 'unknown'),
2125
 
            'error', ('NoSuchRevision', 'unknown',),)
2126
 
        transport.mkdir('quack')
2127
 
        transport = transport.clone('quack')
2128
 
        branch = self.make_remote_branch(transport, client)
2129
 
        self.assertEquals((0, ), branch.revision_id_to_dotted_revno('null:'))
2130
 
        self.assertRaises(errors.NoSuchRevision,
2131
 
            branch.revision_id_to_dotted_revno, 'unknown')
2132
 
        self.assertFinished(client)
2133
 
 
2134
 
    def test_dotted_no_smart_verb(self):
2135
 
        self.setup_smart_server_with_call_log()
2136
 
        branch = self.make_branch('.')
2137
 
        self.disable_verb('Branch.revision_id_to_revno')
2138
 
        self.reset_smart_call_log()
2139
 
        self.assertEquals((0, ),
2140
 
            branch.revision_id_to_dotted_revno('null:'))
2141
 
        self.assertLength(7, self.hpss_calls)
2142
 
 
2143
 
 
2144
 
class TestBzrDirGetSetConfig(RemoteBzrDirTestCase):
2145
 
 
2146
 
    def test__get_config(self):
2147
 
        client = FakeClient()
2148
 
        client.add_success_response_with_body('default_stack_on = /\n', 'ok')
2149
 
        transport = MemoryTransport()
2150
 
        bzrdir = self.make_remote_bzrdir(transport, client)
2151
 
        config = bzrdir.get_config()
2152
 
        self.assertEqual('/', config.get_default_stack_on())
2153
387
        self.assertEqual(
2154
 
            [('call_expecting_body', 'BzrDir.get_config_file', ('memory:///',))],
 
388
            [('call', 'Branch.lock_write', ('///quack/', '', ''))],
2155
389
            client._calls)
2156
390
 
2157
 
    def test_set_option_uses_vfs(self):
2158
 
        self.setup_smart_server_with_call_log()
2159
 
        bzrdir = self.make_bzrdir('.')
2160
 
        self.reset_smart_call_log()
2161
 
        config = bzrdir.get_config()
2162
 
        config.set_default_stack_on('/')
2163
 
        self.assertLength(3, self.hpss_calls)
2164
 
 
2165
 
    def test_backwards_compat_get_option(self):
2166
 
        self.setup_smart_server_with_call_log()
2167
 
        bzrdir = self.make_bzrdir('.')
2168
 
        verb = 'BzrDir.get_config_file'
2169
 
        self.disable_verb(verb)
2170
 
        self.reset_smart_call_log()
2171
 
        self.assertEqual(None,
2172
 
            bzrdir._get_config().get_option('default_stack_on'))
2173
 
        self.assertLength(3, self.hpss_calls)
2174
 
 
2175
391
 
2176
392
class TestTransportIsReadonly(tests.TestCase):
2177
393
 
2178
394
    def test_true(self):
2179
 
        client = FakeClient()
2180
 
        client.add_success_response('yes')
 
395
        client = FakeClient([(('yes',), '')])
2181
396
        transport = RemoteTransport('bzr://example.com/', medium=False,
2182
397
                                    _client=client)
2183
398
        self.assertEqual(True, transport.is_readonly())
2186
401
            client._calls)
2187
402
 
2188
403
    def test_false(self):
2189
 
        client = FakeClient()
2190
 
        client.add_success_response('no')
 
404
        client = FakeClient([(('no',), '')])
2191
405
        transport = RemoteTransport('bzr://example.com/', medium=False,
2192
406
                                    _client=client)
2193
407
        self.assertEqual(False, transport.is_readonly())
2197
411
 
2198
412
    def test_error_from_old_server(self):
2199
413
        """bzr 0.15 and earlier servers don't recognise the is_readonly verb.
2200
 
 
 
414
        
2201
415
        Clients should treat it as a "no" response, because is_readonly is only
2202
416
        advisory anyway (a transport could be read-write, but then the
2203
417
        underlying filesystem could be readonly anyway).
2204
418
        """
2205
 
        client = FakeClient()
2206
 
        client.add_unknown_method_response('Transport.is_readonly')
2207
 
        transport = RemoteTransport('bzr://example.com/', medium=False,
2208
 
                                    _client=client)
2209
 
        self.assertEqual(False, transport.is_readonly())
2210
 
        self.assertEqual(
2211
 
            [('call', 'Transport.is_readonly', ())],
2212
 
            client._calls)
2213
 
 
2214
 
 
2215
 
class TestTransportMkdir(tests.TestCase):
2216
 
 
2217
 
    def test_permissiondenied(self):
2218
 
        client = FakeClient()
2219
 
        client.add_error_response('PermissionDenied', 'remote path', 'extra')
2220
 
        transport = RemoteTransport('bzr://example.com/', medium=False,
2221
 
                                    _client=client)
2222
 
        exc = self.assertRaises(
2223
 
            errors.PermissionDenied, transport.mkdir, 'client path')
2224
 
        expected_error = errors.PermissionDenied('/client path', 'extra')
2225
 
        self.assertEqual(expected_error, exc)
2226
 
 
2227
 
 
2228
 
class TestRemoteSSHTransportAuthentication(tests.TestCaseInTempDir):
2229
 
 
2230
 
    def test_defaults_to_none(self):
2231
 
        t = RemoteSSHTransport('bzr+ssh://example.com')
2232
 
        self.assertIs(None, t._get_credentials()[0])
2233
 
 
2234
 
    def test_uses_authentication_config(self):
2235
 
        conf = config.AuthenticationConfig()
2236
 
        conf._get_config().update(
2237
 
            {'bzr+sshtest': {'scheme': 'ssh', 'user': 'bar', 'host':
2238
 
            'example.com'}})
2239
 
        conf._save()
2240
 
        t = RemoteSSHTransport('bzr+ssh://example.com')
2241
 
        self.assertEqual('bar', t._get_credentials()[0])
2242
 
 
2243
 
 
2244
 
class TestRemoteRepository(TestRemote):
 
419
        client = FakeClient([(
 
420
            ('error', "Generic bzr smart protocol error: "
 
421
                      "bad request 'Transport.is_readonly'"), '')])
 
422
        transport = RemoteTransport('bzr://example.com/', medium=False,
 
423
                                    _client=client)
 
424
        self.assertEqual(False, transport.is_readonly())
 
425
        self.assertEqual(
 
426
            [('call', 'Transport.is_readonly', ())],
 
427
            client._calls)
 
428
 
 
429
    def test_error_from_old_0_11_server(self):
 
430
        """Same as test_error_from_old_server, but with the slightly different
 
431
        error message from bzr 0.11 servers.
 
432
        """
 
433
        client = FakeClient([(
 
434
            ('error', "Generic bzr smart protocol error: "
 
435
                      "bad request u'Transport.is_readonly'"), '')])
 
436
        transport = RemoteTransport('bzr://example.com/', medium=False,
 
437
                                    _client=client)
 
438
        self.assertEqual(False, transport.is_readonly())
 
439
        self.assertEqual(
 
440
            [('call', 'Transport.is_readonly', ())],
 
441
            client._calls)
 
442
 
 
443
 
 
444
class TestRemoteRepository(tests.TestCase):
2245
445
    """Base for testing RemoteRepository protocol usage.
2246
 
 
2247
 
    These tests contain frozen requests and responses.  We want any changes to
 
446
    
 
447
    These tests contain frozen requests and responses.  We want any changes to 
2248
448
    what is sent or expected to be require a thoughtful update to these tests
2249
449
    because they might break compatibility with different-versioned servers.
2250
450
    """
2251
451
 
2252
 
    def setup_fake_client_and_repository(self, transport_path):
 
452
    def setup_fake_client_and_repository(self, responses, transport_path):
2253
453
        """Create the fake client and repository for testing with.
2254
 
 
 
454
        
2255
455
        There's no real server here; we just have canned responses sent
2256
456
        back one by one.
2257
 
 
 
457
        
2258
458
        :param transport_path: Path below the root of the MemoryTransport
2259
459
            where the repository will be created.
2260
460
        """
 
461
        client = FakeClient(responses)
2261
462
        transport = MemoryTransport()
2262
463
        transport.mkdir(transport_path)
2263
 
        client = FakeClient(transport.base)
2264
464
        transport = transport.clone(transport_path)
2265
465
        # we do not want bzrdir to make any remote calls
2266
 
        bzrdir = RemoteBzrDir(transport, RemoteBzrDirFormat(),
2267
 
            _client=False)
 
466
        bzrdir = RemoteBzrDir(transport, _client=False)
2268
467
        repo = RemoteRepository(bzrdir, None, _client=client)
2269
468
        return repo, client
2270
469
 
2271
470
 
2272
 
def remoted_description(format):
2273
 
    return 'Remote: ' + format.get_format_description()
2274
 
 
2275
 
 
2276
 
class TestBranchFormat(tests.TestCase):
2277
 
 
2278
 
    def test_get_format_description(self):
2279
 
        remote_format = RemoteBranchFormat()
2280
 
        real_format = branch.format_registry.get_default()
2281
 
        remote_format._network_name = real_format.network_name()
2282
 
        self.assertEqual(remoted_description(real_format),
2283
 
            remote_format.get_format_description())
2284
 
 
2285
 
 
2286
 
class TestRepositoryFormat(TestRemoteRepository):
2287
 
 
2288
 
    def test_fast_delta(self):
2289
 
        true_name = groupcompress_repo.RepositoryFormat2a().network_name()
2290
 
        true_format = RemoteRepositoryFormat()
2291
 
        true_format._network_name = true_name
2292
 
        self.assertEqual(True, true_format.fast_deltas)
2293
 
        false_name = knitpack_repo.RepositoryFormatKnitPack1().network_name()
2294
 
        false_format = RemoteRepositoryFormat()
2295
 
        false_format._network_name = false_name
2296
 
        self.assertEqual(False, false_format.fast_deltas)
2297
 
 
2298
 
    def test_get_format_description(self):
2299
 
        remote_repo_format = RemoteRepositoryFormat()
2300
 
        real_format = repository.format_registry.get_default()
2301
 
        remote_repo_format._network_name = real_format.network_name()
2302
 
        self.assertEqual(remoted_description(real_format),
2303
 
            remote_repo_format.get_format_description())
2304
 
 
2305
 
 
2306
 
class TestRepositoryAllRevisionIds(TestRemoteRepository):
2307
 
 
2308
 
    def test_empty(self):
2309
 
        transport_path = 'quack'
2310
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2311
 
        client.add_success_response_with_body('', 'ok')
2312
 
        self.assertEquals([], repo.all_revision_ids())
2313
 
        self.assertEqual(
2314
 
            [('call_expecting_body', 'Repository.all_revision_ids',
2315
 
             ('quack/',))],
2316
 
            client._calls)
2317
 
 
2318
 
    def test_with_some_content(self):
2319
 
        transport_path = 'quack'
2320
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2321
 
        client.add_success_response_with_body(
2322
 
            'rev1\nrev2\nanotherrev\n', 'ok')
2323
 
        self.assertEquals(["rev1", "rev2", "anotherrev"],
2324
 
            repo.all_revision_ids())
2325
 
        self.assertEqual(
2326
 
            [('call_expecting_body', 'Repository.all_revision_ids',
2327
 
             ('quack/',))],
2328
 
            client._calls)
2329
 
 
2330
 
 
2331
471
class TestRepositoryGatherStats(TestRemoteRepository):
2332
472
 
2333
473
    def test_revid_none(self):
2334
474
        # ('ok',), body with revisions and size
 
475
        responses = [(('ok', ), 'revisions: 2\nsize: 18\n')]
2335
476
        transport_path = 'quack'
2336
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2337
 
        client.add_success_response_with_body(
2338
 
            'revisions: 2\nsize: 18\n', 'ok')
 
477
        repo, client = self.setup_fake_client_and_repository(
 
478
            responses, transport_path)
2339
479
        result = repo.gather_stats(None)
2340
480
        self.assertEqual(
2341
481
            [('call_expecting_body', 'Repository.gather_stats',
2342
 
             ('quack/','','no'))],
 
482
             ('///quack/','','no'))],
2343
483
            client._calls)
2344
484
        self.assertEqual({'revisions': 2, 'size': 18}, result)
2345
485
 
2346
486
    def test_revid_no_committers(self):
2347
487
        # ('ok',), body without committers
2348
 
        body = ('firstrev: 123456.300 3600\n'
2349
 
                'latestrev: 654231.400 0\n'
2350
 
                'revisions: 2\n'
2351
 
                'size: 18\n')
 
488
        responses = [(('ok', ),
 
489
                      'firstrev: 123456.300 3600\n'
 
490
                      'latestrev: 654231.400 0\n'
 
491
                      'revisions: 2\n'
 
492
                      'size: 18\n')]
2352
493
        transport_path = 'quick'
2353
494
        revid = u'\xc8'.encode('utf8')
2354
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2355
 
        client.add_success_response_with_body(body, 'ok')
 
495
        repo, client = self.setup_fake_client_and_repository(
 
496
            responses, transport_path)
2356
497
        result = repo.gather_stats(revid)
2357
498
        self.assertEqual(
2358
499
            [('call_expecting_body', 'Repository.gather_stats',
2359
 
              ('quick/', revid, 'no'))],
 
500
              ('///quick/', revid, 'no'))],
2360
501
            client._calls)
2361
502
        self.assertEqual({'revisions': 2, 'size': 18,
2362
503
                          'firstrev': (123456.300, 3600),
2365
506
 
2366
507
    def test_revid_with_committers(self):
2367
508
        # ('ok',), body with committers
2368
 
        body = ('committers: 128\n'
2369
 
                'firstrev: 123456.300 3600\n'
2370
 
                'latestrev: 654231.400 0\n'
2371
 
                'revisions: 2\n'
2372
 
                'size: 18\n')
 
509
        responses = [(('ok', ),
 
510
                      'committers: 128\n'
 
511
                      'firstrev: 123456.300 3600\n'
 
512
                      'latestrev: 654231.400 0\n'
 
513
                      'revisions: 2\n'
 
514
                      'size: 18\n')]
2373
515
        transport_path = 'buick'
2374
516
        revid = u'\xc8'.encode('utf8')
2375
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2376
 
        client.add_success_response_with_body(body, 'ok')
 
517
        repo, client = self.setup_fake_client_and_repository(
 
518
            responses, transport_path)
2377
519
        result = repo.gather_stats(revid, True)
2378
520
        self.assertEqual(
2379
521
            [('call_expecting_body', 'Repository.gather_stats',
2380
 
              ('buick/', revid, 'yes'))],
 
522
              ('///buick/', revid, 'yes'))],
2381
523
            client._calls)
2382
524
        self.assertEqual({'revisions': 2, 'size': 18,
2383
525
                          'committers': 128,
2386
528
                         result)
2387
529
 
2388
530
 
2389
 
class TestRepositoryBreakLock(TestRemoteRepository):
2390
 
 
2391
 
    def test_break_lock(self):
2392
 
        transport_path = 'quack'
2393
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2394
 
        client.add_success_response('ok')
2395
 
        repo.break_lock()
2396
 
        self.assertEqual(
2397
 
            [('call', 'Repository.break_lock', ('quack/',))],
2398
 
            client._calls)
2399
 
 
2400
 
 
2401
 
class TestRepositoryGetSerializerFormat(TestRemoteRepository):
2402
 
 
2403
 
    def test_get_serializer_format(self):
2404
 
        transport_path = 'hill'
2405
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2406
 
        client.add_success_response('ok', '7')
2407
 
        self.assertEquals('7', repo.get_serializer_format())
2408
 
        self.assertEqual(
2409
 
            [('call', 'VersionedFileRepository.get_serializer_format',
2410
 
              ('hill/', ))],
2411
 
            client._calls)
2412
 
 
2413
 
 
2414
 
class TestRepositoryReconcile(TestRemoteRepository):
2415
 
 
2416
 
    def test_reconcile(self):
2417
 
        transport_path = 'hill'
2418
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2419
 
        body = ("garbage_inventories: 2\n"
2420
 
                "inconsistent_parents: 3\n")
2421
 
        client.add_expected_call(
2422
 
            'Repository.lock_write', ('hill/', ''),
2423
 
            'success', ('ok', 'a token'))
2424
 
        client.add_success_response_with_body(body, 'ok')
2425
 
        reconciler = repo.reconcile()
2426
 
        self.assertEqual(
2427
 
            [('call', 'Repository.lock_write', ('hill/', '')),
2428
 
             ('call_expecting_body', 'Repository.reconcile',
2429
 
                ('hill/', 'a token'))],
2430
 
            client._calls)
2431
 
        self.assertEquals(2, reconciler.garbage_inventories)
2432
 
        self.assertEquals(3, reconciler.inconsistent_parents)
2433
 
 
2434
 
 
2435
 
class TestRepositoryGetRevisionSignatureText(TestRemoteRepository):
2436
 
 
2437
 
    def test_text(self):
2438
 
        # ('ok',), body with signature text
2439
 
        transport_path = 'quack'
2440
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2441
 
        client.add_success_response_with_body(
2442
 
            'THETEXT', 'ok')
2443
 
        self.assertEquals("THETEXT", repo.get_signature_text("revid"))
2444
 
        self.assertEqual(
2445
 
            [('call_expecting_body', 'Repository.get_revision_signature_text',
2446
 
             ('quack/', 'revid'))],
2447
 
            client._calls)
2448
 
 
2449
 
    def test_no_signature(self):
2450
 
        transport_path = 'quick'
2451
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2452
 
        client.add_error_response('nosuchrevision', 'unknown')
2453
 
        self.assertRaises(errors.NoSuchRevision, repo.get_signature_text,
2454
 
                "unknown")
2455
 
        self.assertEqual(
2456
 
            [('call_expecting_body', 'Repository.get_revision_signature_text',
2457
 
              ('quick/', 'unknown'))],
2458
 
            client._calls)
2459
 
 
2460
 
 
2461
 
class TestRepositoryGetGraph(TestRemoteRepository):
2462
 
 
2463
 
    def test_get_graph(self):
2464
 
        # get_graph returns a graph with a custom parents provider.
2465
 
        transport_path = 'quack'
2466
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2467
 
        graph = repo.get_graph()
2468
 
        self.assertNotEqual(graph._parents_provider, repo)
2469
 
 
2470
 
 
2471
 
class TestRepositoryAddSignatureText(TestRemoteRepository):
2472
 
 
2473
 
    def test_add_signature_text(self):
2474
 
        transport_path = 'quack'
2475
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2476
 
        client.add_expected_call(
2477
 
            'Repository.lock_write', ('quack/', ''),
2478
 
            'success', ('ok', 'a token'))
2479
 
        client.add_expected_call(
2480
 
            'Repository.start_write_group', ('quack/', 'a token'),
2481
 
            'success', ('ok', ('token1', )))
2482
 
        client.add_expected_call(
2483
 
            'Repository.add_signature_text', ('quack/', 'a token', 'rev1',
2484
 
                'token1'),
2485
 
            'success', ('ok', ), None)
2486
 
        repo.lock_write()
2487
 
        repo.start_write_group()
2488
 
        self.assertIs(None,
2489
 
            repo.add_signature_text("rev1", "every bloody emperor"))
2490
 
        self.assertEqual(
2491
 
            ('call_with_body_bytes_expecting_body',
2492
 
              'Repository.add_signature_text',
2493
 
                ('quack/', 'a token', 'rev1', 'token1'),
2494
 
              'every bloody emperor'),
2495
 
            client._calls[-1])
2496
 
 
2497
 
 
2498
 
class TestRepositoryGetParentMap(TestRemoteRepository):
2499
 
 
2500
 
    def test_get_parent_map_caching(self):
2501
 
        # get_parent_map returns from cache until unlock()
2502
 
        # setup a reponse with two revisions
2503
 
        r1 = u'\u0e33'.encode('utf8')
2504
 
        r2 = u'\u0dab'.encode('utf8')
2505
 
        lines = [' '.join([r2, r1]), r1]
2506
 
        encoded_body = bz2.compress('\n'.join(lines))
2507
 
 
2508
 
        transport_path = 'quack'
2509
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2510
 
        client.add_success_response_with_body(encoded_body, 'ok')
2511
 
        client.add_success_response_with_body(encoded_body, 'ok')
2512
 
        repo.lock_read()
2513
 
        graph = repo.get_graph()
2514
 
        parents = graph.get_parent_map([r2])
2515
 
        self.assertEqual({r2: (r1,)}, parents)
2516
 
        # locking and unlocking deeper should not reset
2517
 
        repo.lock_read()
2518
 
        repo.unlock()
2519
 
        parents = graph.get_parent_map([r1])
2520
 
        self.assertEqual({r1: (NULL_REVISION,)}, parents)
2521
 
        self.assertEqual(
2522
 
            [('call_with_body_bytes_expecting_body',
2523
 
              'Repository.get_parent_map', ('quack/', 'include-missing:', r2),
2524
 
              '\n\n0')],
2525
 
            client._calls)
2526
 
        repo.unlock()
2527
 
        # now we call again, and it should use the second response.
2528
 
        repo.lock_read()
2529
 
        graph = repo.get_graph()
2530
 
        parents = graph.get_parent_map([r1])
2531
 
        self.assertEqual({r1: (NULL_REVISION,)}, parents)
2532
 
        self.assertEqual(
2533
 
            [('call_with_body_bytes_expecting_body',
2534
 
              'Repository.get_parent_map', ('quack/', 'include-missing:', r2),
2535
 
              '\n\n0'),
2536
 
             ('call_with_body_bytes_expecting_body',
2537
 
              'Repository.get_parent_map', ('quack/', 'include-missing:', r1),
2538
 
              '\n\n0'),
2539
 
            ],
2540
 
            client._calls)
2541
 
        repo.unlock()
2542
 
 
2543
 
    def test_get_parent_map_reconnects_if_unknown_method(self):
2544
 
        transport_path = 'quack'
2545
 
        rev_id = 'revision-id'
2546
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2547
 
        client.add_unknown_method_response('Repository.get_parent_map')
2548
 
        client.add_success_response_with_body(rev_id, 'ok')
2549
 
        self.assertFalse(client._medium._is_remote_before((1, 2)))
2550
 
        parents = repo.get_parent_map([rev_id])
2551
 
        self.assertEqual(
2552
 
            [('call_with_body_bytes_expecting_body',
2553
 
              'Repository.get_parent_map',
2554
 
              ('quack/', 'include-missing:', rev_id), '\n\n0'),
2555
 
             ('disconnect medium',),
2556
 
             ('call_expecting_body', 'Repository.get_revision_graph',
2557
 
              ('quack/', ''))],
2558
 
            client._calls)
2559
 
        # The medium is now marked as being connected to an older server
2560
 
        self.assertTrue(client._medium._is_remote_before((1, 2)))
2561
 
        self.assertEqual({rev_id: ('null:',)}, parents)
2562
 
 
2563
 
    def test_get_parent_map_fallback_parentless_node(self):
2564
 
        """get_parent_map falls back to get_revision_graph on old servers.  The
2565
 
        results from get_revision_graph are tweaked to match the get_parent_map
2566
 
        API.
2567
 
 
2568
 
        Specifically, a {key: ()} result from get_revision_graph means "no
2569
 
        parents" for that key, which in get_parent_map results should be
2570
 
        represented as {key: ('null:',)}.
2571
 
 
2572
 
        This is the test for https://bugs.launchpad.net/bzr/+bug/214894
2573
 
        """
2574
 
        rev_id = 'revision-id'
2575
 
        transport_path = 'quack'
2576
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2577
 
        client.add_success_response_with_body(rev_id, 'ok')
2578
 
        client._medium._remember_remote_is_before((1, 2))
2579
 
        parents = repo.get_parent_map([rev_id])
2580
 
        self.assertEqual(
2581
 
            [('call_expecting_body', 'Repository.get_revision_graph',
2582
 
             ('quack/', ''))],
2583
 
            client._calls)
2584
 
        self.assertEqual({rev_id: ('null:',)}, parents)
2585
 
 
2586
 
    def test_get_parent_map_unexpected_response(self):
2587
 
        repo, client = self.setup_fake_client_and_repository('path')
2588
 
        client.add_success_response('something unexpected!')
2589
 
        self.assertRaises(
2590
 
            errors.UnexpectedSmartServerResponse,
2591
 
            repo.get_parent_map, ['a-revision-id'])
2592
 
 
2593
 
    def test_get_parent_map_negative_caches_missing_keys(self):
2594
 
        self.setup_smart_server_with_call_log()
2595
 
        repo = self.make_repository('foo')
2596
 
        self.assertIsInstance(repo, RemoteRepository)
2597
 
        repo.lock_read()
2598
 
        self.addCleanup(repo.unlock)
2599
 
        self.reset_smart_call_log()
2600
 
        graph = repo.get_graph()
2601
 
        self.assertEqual({},
2602
 
            graph.get_parent_map(['some-missing', 'other-missing']))
2603
 
        self.assertLength(1, self.hpss_calls)
2604
 
        # No call if we repeat this
2605
 
        self.reset_smart_call_log()
2606
 
        graph = repo.get_graph()
2607
 
        self.assertEqual({},
2608
 
            graph.get_parent_map(['some-missing', 'other-missing']))
2609
 
        self.assertLength(0, self.hpss_calls)
2610
 
        # Asking for more unknown keys makes a request.
2611
 
        self.reset_smart_call_log()
2612
 
        graph = repo.get_graph()
2613
 
        self.assertEqual({},
2614
 
            graph.get_parent_map(['some-missing', 'other-missing',
2615
 
                'more-missing']))
2616
 
        self.assertLength(1, self.hpss_calls)
2617
 
 
2618
 
    def disableExtraResults(self):
2619
 
        self.overrideAttr(SmartServerRepositoryGetParentMap,
2620
 
                          'no_extra_results', True)
2621
 
 
2622
 
    def test_null_cached_missing_and_stop_key(self):
2623
 
        self.setup_smart_server_with_call_log()
2624
 
        # Make a branch with a single revision.
2625
 
        builder = self.make_branch_builder('foo')
2626
 
        builder.start_series()
2627
 
        builder.build_snapshot('first', None, [
2628
 
            ('add', ('', 'root-id', 'directory', ''))])
2629
 
        builder.finish_series()
2630
 
        branch = builder.get_branch()
2631
 
        repo = branch.repository
2632
 
        self.assertIsInstance(repo, RemoteRepository)
2633
 
        # Stop the server from sending extra results.
2634
 
        self.disableExtraResults()
2635
 
        repo.lock_read()
2636
 
        self.addCleanup(repo.unlock)
2637
 
        self.reset_smart_call_log()
2638
 
        graph = repo.get_graph()
2639
 
        # Query for 'first' and 'null:'.  Because 'null:' is a parent of
2640
 
        # 'first' it will be a candidate for the stop_keys of subsequent
2641
 
        # requests, and because 'null:' was queried but not returned it will be
2642
 
        # cached as missing.
2643
 
        self.assertEqual({'first': ('null:',)},
2644
 
            graph.get_parent_map(['first', 'null:']))
2645
 
        # Now query for another key.  This request will pass along a recipe of
2646
 
        # start and stop keys describing the already cached results, and this
2647
 
        # recipe's revision count must be correct (or else it will trigger an
2648
 
        # error from the server).
2649
 
        self.assertEqual({}, graph.get_parent_map(['another-key']))
2650
 
        # This assertion guards against disableExtraResults silently failing to
2651
 
        # work, thus invalidating the test.
2652
 
        self.assertLength(2, self.hpss_calls)
2653
 
 
2654
 
    def test_get_parent_map_gets_ghosts_from_result(self):
2655
 
        # asking for a revision should negatively cache close ghosts in its
2656
 
        # ancestry.
2657
 
        self.setup_smart_server_with_call_log()
2658
 
        tree = self.make_branch_and_memory_tree('foo')
2659
 
        tree.lock_write()
2660
 
        try:
2661
 
            builder = treebuilder.TreeBuilder()
2662
 
            builder.start_tree(tree)
2663
 
            builder.build([])
2664
 
            builder.finish_tree()
2665
 
            tree.set_parent_ids(['non-existant'], allow_leftmost_as_ghost=True)
2666
 
            rev_id = tree.commit('')
2667
 
        finally:
2668
 
            tree.unlock()
2669
 
        tree.lock_read()
2670
 
        self.addCleanup(tree.unlock)
2671
 
        repo = tree.branch.repository
2672
 
        self.assertIsInstance(repo, RemoteRepository)
2673
 
        # ask for rev_id
2674
 
        repo.get_parent_map([rev_id])
2675
 
        self.reset_smart_call_log()
2676
 
        # Now asking for rev_id's ghost parent should not make calls
2677
 
        self.assertEqual({}, repo.get_parent_map(['non-existant']))
2678
 
        self.assertLength(0, self.hpss_calls)
2679
 
 
2680
 
    def test_exposes_get_cached_parent_map(self):
2681
 
        """RemoteRepository exposes get_cached_parent_map from
2682
 
        _unstacked_provider
2683
 
        """
2684
 
        r1 = u'\u0e33'.encode('utf8')
2685
 
        r2 = u'\u0dab'.encode('utf8')
2686
 
        lines = [' '.join([r2, r1]), r1]
2687
 
        encoded_body = bz2.compress('\n'.join(lines))
2688
 
 
2689
 
        transport_path = 'quack'
2690
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2691
 
        client.add_success_response_with_body(encoded_body, 'ok')
2692
 
        repo.lock_read()
2693
 
        # get_cached_parent_map should *not* trigger an RPC
2694
 
        self.assertEqual({}, repo.get_cached_parent_map([r1]))
2695
 
        self.assertEqual([], client._calls)
2696
 
        self.assertEqual({r2: (r1,)}, repo.get_parent_map([r2]))
2697
 
        self.assertEqual({r1: (NULL_REVISION,)},
2698
 
            repo.get_cached_parent_map([r1]))
2699
 
        self.assertEqual(
2700
 
            [('call_with_body_bytes_expecting_body',
2701
 
              'Repository.get_parent_map', ('quack/', 'include-missing:', r2),
2702
 
              '\n\n0')],
2703
 
            client._calls)
2704
 
        repo.unlock()
2705
 
 
2706
 
 
2707
 
class TestGetParentMapAllowsNew(tests.TestCaseWithTransport):
2708
 
 
2709
 
    def test_allows_new_revisions(self):
2710
 
        """get_parent_map's results can be updated by commit."""
2711
 
        smart_server = test_server.SmartTCPServer_for_testing()
2712
 
        self.start_server(smart_server)
2713
 
        self.make_branch('branch')
2714
 
        branch = Branch.open(smart_server.get_url() + '/branch')
2715
 
        tree = branch.create_checkout('tree', lightweight=True)
2716
 
        tree.lock_write()
2717
 
        self.addCleanup(tree.unlock)
2718
 
        graph = tree.branch.repository.get_graph()
2719
 
        # This provides an opportunity for the missing rev-id to be cached.
2720
 
        self.assertEqual({}, graph.get_parent_map(['rev1']))
2721
 
        tree.commit('message', rev_id='rev1')
2722
 
        graph = tree.branch.repository.get_graph()
2723
 
        self.assertEqual({'rev1': ('null:',)}, graph.get_parent_map(['rev1']))
2724
 
 
2725
 
 
2726
 
class TestRepositoryGetRevisions(TestRemoteRepository):
2727
 
 
2728
 
    def test_hpss_missing_revision(self):
2729
 
        transport_path = 'quack'
2730
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2731
 
        client.add_success_response_with_body(
2732
 
            '', 'ok', '10')
2733
 
        self.assertRaises(errors.NoSuchRevision, repo.get_revisions,
2734
 
            ['somerev1', 'anotherrev2'])
2735
 
        self.assertEqual(
2736
 
            [('call_with_body_bytes_expecting_body', 'Repository.iter_revisions',
2737
 
             ('quack/', ), "somerev1\nanotherrev2")],
2738
 
            client._calls)
2739
 
 
2740
 
    def test_hpss_get_single_revision(self):
2741
 
        transport_path = 'quack'
2742
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2743
 
        somerev1 = Revision("somerev1")
2744
 
        somerev1.committer = "Joe Committer <joe@example.com>"
2745
 
        somerev1.timestamp = 1321828927
2746
 
        somerev1.timezone = -60
2747
 
        somerev1.inventory_sha1 = "691b39be74c67b1212a75fcb19c433aaed903c2b"
2748
 
        somerev1.message = "Message"
2749
 
        body = zlib.compress(chk_bencode_serializer.write_revision_to_string(
2750
 
            somerev1))
2751
 
        # Split up body into two bits to make sure the zlib compression object
2752
 
        # gets data fed twice.
2753
 
        client.add_success_response_with_body(
2754
 
                [body[:10], body[10:]], 'ok', '10')
2755
 
        revs = repo.get_revisions(['somerev1'])
2756
 
        self.assertEquals(revs, [somerev1])
2757
 
        self.assertEqual(
2758
 
            [('call_with_body_bytes_expecting_body', 'Repository.iter_revisions',
2759
 
             ('quack/', ), "somerev1")],
2760
 
            client._calls)
2761
 
 
2762
 
 
2763
531
class TestRepositoryGetRevisionGraph(TestRemoteRepository):
2764
 
 
 
532
    
2765
533
    def test_null_revision(self):
2766
534
        # a null revision has the predictable result {}, we should have no wire
2767
535
        # traffic when calling it with this argument
 
536
        responses = [(('notused', ), '')]
2768
537
        transport_path = 'empty'
2769
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2770
 
        client.add_success_response('notused')
2771
 
        # actual RemoteRepository.get_revision_graph is gone, but there's an
2772
 
        # equivalent private method for testing
2773
 
        result = repo._get_revision_graph(NULL_REVISION)
 
538
        repo, client = self.setup_fake_client_and_repository(
 
539
            responses, transport_path)
 
540
        result = repo.get_revision_graph(NULL_REVISION)
2774
541
        self.assertEqual([], client._calls)
2775
542
        self.assertEqual({}, result)
2776
543
 
2781
548
        lines = [' '.join([r2, r1]), r1]
2782
549
        encoded_body = '\n'.join(lines)
2783
550
 
 
551
        responses = [(('ok', ), encoded_body)]
2784
552
        transport_path = 'sinhala'
2785
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2786
 
        client.add_success_response_with_body(encoded_body, 'ok')
2787
 
        # actual RemoteRepository.get_revision_graph is gone, but there's an
2788
 
        # equivalent private method for testing
2789
 
        result = repo._get_revision_graph(None)
 
553
        repo, client = self.setup_fake_client_and_repository(
 
554
            responses, transport_path)
 
555
        result = repo.get_revision_graph()
2790
556
        self.assertEqual(
2791
557
            [('call_expecting_body', 'Repository.get_revision_graph',
2792
 
             ('sinhala/', ''))],
 
558
             ('///sinhala/', ''))],
2793
559
            client._calls)
2794
 
        self.assertEqual({r1: (), r2: (r1, )}, result)
 
560
        self.assertEqual({r1: [], r2: [r1]}, result)
2795
561
 
2796
562
    def test_specific_revision(self):
2797
563
        # with a specific revision we want the graph for that
2802
568
        lines = [' '.join([r2, r11, r12]), r11, r12]
2803
569
        encoded_body = '\n'.join(lines)
2804
570
 
 
571
        responses = [(('ok', ), encoded_body)]
2805
572
        transport_path = 'sinhala'
2806
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2807
 
        client.add_success_response_with_body(encoded_body, 'ok')
2808
 
        result = repo._get_revision_graph(r2)
 
573
        repo, client = self.setup_fake_client_and_repository(
 
574
            responses, transport_path)
 
575
        result = repo.get_revision_graph(r2)
2809
576
        self.assertEqual(
2810
577
            [('call_expecting_body', 'Repository.get_revision_graph',
2811
 
             ('sinhala/', r2))],
 
578
             ('///sinhala/', r2))],
2812
579
            client._calls)
2813
 
        self.assertEqual({r11: (), r12: (), r2: (r11, r12), }, result)
 
580
        self.assertEqual({r11: [], r12: [], r2: [r11, r12], }, result)
2814
581
 
2815
582
    def test_no_such_revision(self):
2816
583
        revid = '123'
 
584
        responses = [(('nosuchrevision', revid), '')]
2817
585
        transport_path = 'sinhala'
2818
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2819
 
        client.add_error_response('nosuchrevision', revid)
 
586
        repo, client = self.setup_fake_client_and_repository(
 
587
            responses, transport_path)
2820
588
        # also check that the right revision is reported in the error
2821
589
        self.assertRaises(errors.NoSuchRevision,
2822
 
            repo._get_revision_graph, revid)
 
590
            repo.get_revision_graph, revid)
2823
591
        self.assertEqual(
2824
592
            [('call_expecting_body', 'Repository.get_revision_graph',
2825
 
             ('sinhala/', revid))],
2826
 
            client._calls)
2827
 
 
2828
 
    def test_unexpected_error(self):
2829
 
        revid = '123'
2830
 
        transport_path = 'sinhala'
2831
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2832
 
        client.add_error_response('AnUnexpectedError')
2833
 
        e = self.assertRaises(errors.UnknownErrorFromSmartServer,
2834
 
            repo._get_revision_graph, revid)
2835
 
        self.assertEqual(('AnUnexpectedError',), e.error_tuple)
2836
 
 
2837
 
 
2838
 
class TestRepositoryGetRevIdForRevno(TestRemoteRepository):
2839
 
 
2840
 
    def test_ok(self):
2841
 
        repo, client = self.setup_fake_client_and_repository('quack')
2842
 
        client.add_expected_call(
2843
 
            'Repository.get_rev_id_for_revno', ('quack/', 5, (42, 'rev-foo')),
2844
 
            'success', ('ok', 'rev-five'))
2845
 
        result = repo.get_rev_id_for_revno(5, (42, 'rev-foo'))
2846
 
        self.assertEqual((True, 'rev-five'), result)
2847
 
        self.assertFinished(client)
2848
 
 
2849
 
    def test_history_incomplete(self):
2850
 
        repo, client = self.setup_fake_client_and_repository('quack')
2851
 
        client.add_expected_call(
2852
 
            'Repository.get_rev_id_for_revno', ('quack/', 5, (42, 'rev-foo')),
2853
 
            'success', ('history-incomplete', 10, 'rev-ten'))
2854
 
        result = repo.get_rev_id_for_revno(5, (42, 'rev-foo'))
2855
 
        self.assertEqual((False, (10, 'rev-ten')), result)
2856
 
        self.assertFinished(client)
2857
 
 
2858
 
    def test_history_incomplete_with_fallback(self):
2859
 
        """A 'history-incomplete' response causes the fallback repository to be
2860
 
        queried too, if one is set.
2861
 
        """
2862
 
        # Make a repo with a fallback repo, both using a FakeClient.
2863
 
        format = remote.response_tuple_to_repo_format(
2864
 
            ('yes', 'no', 'yes', self.get_repo_format().network_name()))
2865
 
        repo, client = self.setup_fake_client_and_repository('quack')
2866
 
        repo._format = format
2867
 
        fallback_repo, ignored = self.setup_fake_client_and_repository(
2868
 
            'fallback')
2869
 
        fallback_repo._client = client
2870
 
        fallback_repo._format = format
2871
 
        repo.add_fallback_repository(fallback_repo)
2872
 
        # First the client should ask the primary repo
2873
 
        client.add_expected_call(
2874
 
            'Repository.get_rev_id_for_revno', ('quack/', 1, (42, 'rev-foo')),
2875
 
            'success', ('history-incomplete', 2, 'rev-two'))
2876
 
        # Then it should ask the fallback, using revno/revid from the
2877
 
        # history-incomplete response as the known revno/revid.
2878
 
        client.add_expected_call(
2879
 
            'Repository.get_rev_id_for_revno',('fallback/', 1, (2, 'rev-two')),
2880
 
            'success', ('ok', 'rev-one'))
2881
 
        result = repo.get_rev_id_for_revno(1, (42, 'rev-foo'))
2882
 
        self.assertEqual((True, 'rev-one'), result)
2883
 
        self.assertFinished(client)
2884
 
 
2885
 
    def test_nosuchrevision(self):
2886
 
        # 'nosuchrevision' is returned when the known-revid is not found in the
2887
 
        # remote repo.  The client translates that response to NoSuchRevision.
2888
 
        repo, client = self.setup_fake_client_and_repository('quack')
2889
 
        client.add_expected_call(
2890
 
            'Repository.get_rev_id_for_revno', ('quack/', 5, (42, 'rev-foo')),
2891
 
            'error', ('nosuchrevision', 'rev-foo'))
2892
 
        self.assertRaises(
2893
 
            errors.NoSuchRevision,
2894
 
            repo.get_rev_id_for_revno, 5, (42, 'rev-foo'))
2895
 
        self.assertFinished(client)
2896
 
 
2897
 
    def test_branch_fallback_locking(self):
2898
 
        """RemoteBranch.get_rev_id takes a read lock, and tries to call the
2899
 
        get_rev_id_for_revno verb.  If the verb is unknown the VFS fallback
2900
 
        will be invoked, which will fail if the repo is unlocked.
2901
 
        """
2902
 
        self.setup_smart_server_with_call_log()
2903
 
        tree = self.make_branch_and_memory_tree('.')
2904
 
        tree.lock_write()
2905
 
        tree.add('')
2906
 
        rev1 = tree.commit('First')
2907
 
        rev2 = tree.commit('Second')
2908
 
        tree.unlock()
2909
 
        branch = tree.branch
2910
 
        self.assertFalse(branch.is_locked())
2911
 
        self.reset_smart_call_log()
2912
 
        verb = 'Repository.get_rev_id_for_revno'
2913
 
        self.disable_verb(verb)
2914
 
        self.assertEqual(rev1, branch.get_rev_id(1))
2915
 
        self.assertLength(1, [call for call in self.hpss_calls if
2916
 
                              call.call.method == verb])
2917
 
 
2918
 
 
2919
 
class TestRepositoryHasSignatureForRevisionId(TestRemoteRepository):
2920
 
 
2921
 
    def test_has_signature_for_revision_id(self):
2922
 
        # ('yes', ) for Repository.has_signature_for_revision_id -> 'True'.
2923
 
        transport_path = 'quack'
2924
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2925
 
        client.add_success_response('yes')
2926
 
        result = repo.has_signature_for_revision_id('A')
2927
 
        self.assertEqual(
2928
 
            [('call', 'Repository.has_signature_for_revision_id',
2929
 
              ('quack/', 'A'))],
2930
 
            client._calls)
2931
 
        self.assertEqual(True, result)
2932
 
 
2933
 
    def test_is_not_shared(self):
2934
 
        # ('no', ) for Repository.has_signature_for_revision_id -> 'False'.
2935
 
        transport_path = 'qwack'
2936
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2937
 
        client.add_success_response('no')
2938
 
        result = repo.has_signature_for_revision_id('A')
2939
 
        self.assertEqual(
2940
 
            [('call', 'Repository.has_signature_for_revision_id',
2941
 
              ('qwack/', 'A'))],
2942
 
            client._calls)
2943
 
        self.assertEqual(False, result)
2944
 
 
2945
 
 
2946
 
class TestRepositoryPhysicalLockStatus(TestRemoteRepository):
2947
 
 
2948
 
    def test_get_physical_lock_status_yes(self):
2949
 
        transport_path = 'qwack'
2950
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2951
 
        client.add_success_response('yes')
2952
 
        result = repo.get_physical_lock_status()
2953
 
        self.assertEqual(
2954
 
            [('call', 'Repository.get_physical_lock_status',
2955
 
              ('qwack/', ))],
2956
 
            client._calls)
2957
 
        self.assertEqual(True, result)
2958
 
 
2959
 
    def test_get_physical_lock_status_no(self):
2960
 
        transport_path = 'qwack'
2961
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2962
 
        client.add_success_response('no')
2963
 
        result = repo.get_physical_lock_status()
2964
 
        self.assertEqual(
2965
 
            [('call', 'Repository.get_physical_lock_status',
2966
 
              ('qwack/', ))],
2967
 
            client._calls)
2968
 
        self.assertEqual(False, result)
2969
 
 
2970
 
 
 
593
             ('///sinhala/', revid))],
 
594
            client._calls)
 
595
 
 
596
        
2971
597
class TestRepositoryIsShared(TestRemoteRepository):
2972
598
 
2973
599
    def test_is_shared(self):
2974
600
        # ('yes', ) for Repository.is_shared -> 'True'.
 
601
        responses = [(('yes', ), )]
2975
602
        transport_path = 'quack'
2976
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2977
 
        client.add_success_response('yes')
 
603
        repo, client = self.setup_fake_client_and_repository(
 
604
            responses, transport_path)
2978
605
        result = repo.is_shared()
2979
606
        self.assertEqual(
2980
 
            [('call', 'Repository.is_shared', ('quack/',))],
 
607
            [('call', 'Repository.is_shared', ('///quack/',))],
2981
608
            client._calls)
2982
609
        self.assertEqual(True, result)
2983
610
 
2984
611
    def test_is_not_shared(self):
2985
612
        # ('no', ) for Repository.is_shared -> 'False'.
 
613
        responses = [(('no', ), )]
2986
614
        transport_path = 'qwack'
2987
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
2988
 
        client.add_success_response('no')
 
615
        repo, client = self.setup_fake_client_and_repository(
 
616
            responses, transport_path)
2989
617
        result = repo.is_shared()
2990
618
        self.assertEqual(
2991
 
            [('call', 'Repository.is_shared', ('qwack/',))],
2992
 
            client._calls)
2993
 
        self.assertEqual(False, result)
2994
 
 
2995
 
 
2996
 
class TestRepositoryMakeWorkingTrees(TestRemoteRepository):
2997
 
 
2998
 
    def test_make_working_trees(self):
2999
 
        # ('yes', ) for Repository.make_working_trees -> 'True'.
3000
 
        transport_path = 'quack'
3001
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3002
 
        client.add_success_response('yes')
3003
 
        result = repo.make_working_trees()
3004
 
        self.assertEqual(
3005
 
            [('call', 'Repository.make_working_trees', ('quack/',))],
3006
 
            client._calls)
3007
 
        self.assertEqual(True, result)
3008
 
 
3009
 
    def test_no_working_trees(self):
3010
 
        # ('no', ) for Repository.make_working_trees -> 'False'.
3011
 
        transport_path = 'qwack'
3012
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3013
 
        client.add_success_response('no')
3014
 
        result = repo.make_working_trees()
3015
 
        self.assertEqual(
3016
 
            [('call', 'Repository.make_working_trees', ('qwack/',))],
 
619
            [('call', 'Repository.is_shared', ('///qwack/',))],
3017
620
            client._calls)
3018
621
        self.assertEqual(False, result)
3019
622
 
3021
624
class TestRepositoryLockWrite(TestRemoteRepository):
3022
625
 
3023
626
    def test_lock_write(self):
 
627
        responses = [(('ok', 'a token'), '')]
3024
628
        transport_path = 'quack'
3025
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3026
 
        client.add_success_response('ok', 'a token')
3027
 
        token = repo.lock_write().repository_token
 
629
        repo, client = self.setup_fake_client_and_repository(
 
630
            responses, transport_path)
 
631
        result = repo.lock_write()
3028
632
        self.assertEqual(
3029
 
            [('call', 'Repository.lock_write', ('quack/', ''))],
 
633
            [('call', 'Repository.lock_write', ('///quack/', ''))],
3030
634
            client._calls)
3031
 
        self.assertEqual('a token', token)
 
635
        self.assertEqual('a token', result)
3032
636
 
3033
637
    def test_lock_write_already_locked(self):
 
638
        responses = [(('LockContention', ), '')]
3034
639
        transport_path = 'quack'
3035
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3036
 
        client.add_error_response('LockContention')
 
640
        repo, client = self.setup_fake_client_and_repository(
 
641
            responses, transport_path)
3037
642
        self.assertRaises(errors.LockContention, repo.lock_write)
3038
643
        self.assertEqual(
3039
 
            [('call', 'Repository.lock_write', ('quack/', ''))],
 
644
            [('call', 'Repository.lock_write', ('///quack/', ''))],
3040
645
            client._calls)
3041
646
 
3042
647
    def test_lock_write_unlockable(self):
 
648
        responses = [(('UnlockableTransport', ), '')]
3043
649
        transport_path = 'quack'
3044
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3045
 
        client.add_error_response('UnlockableTransport')
 
650
        repo, client = self.setup_fake_client_and_repository(
 
651
            responses, transport_path)
3046
652
        self.assertRaises(errors.UnlockableTransport, repo.lock_write)
3047
653
        self.assertEqual(
3048
 
            [('call', 'Repository.lock_write', ('quack/', ''))],
 
654
            [('call', 'Repository.lock_write', ('///quack/', ''))],
3049
655
            client._calls)
3050
656
 
3051
657
 
3052
 
class TestRepositoryWriteGroups(TestRemoteRepository):
3053
 
 
3054
 
    def test_start_write_group(self):
3055
 
        transport_path = 'quack'
3056
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3057
 
        client.add_expected_call(
3058
 
            'Repository.lock_write', ('quack/', ''),
3059
 
            'success', ('ok', 'a token'))
3060
 
        client.add_expected_call(
3061
 
            'Repository.start_write_group', ('quack/', 'a token'),
3062
 
            'success', ('ok', ('token1', )))
3063
 
        repo.lock_write()
3064
 
        repo.start_write_group()
3065
 
 
3066
 
    def test_start_write_group_unsuspendable(self):
3067
 
        # Some repositories do not support suspending write
3068
 
        # groups. For those, fall back to the "real" repository.
3069
 
        transport_path = 'quack'
3070
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3071
 
        def stub_ensure_real():
3072
 
            client._calls.append(('_ensure_real',))
3073
 
            repo._real_repository = _StubRealPackRepository(client._calls)
3074
 
        repo._ensure_real = stub_ensure_real
3075
 
        client.add_expected_call(
3076
 
            'Repository.lock_write', ('quack/', ''),
3077
 
            'success', ('ok', 'a token'))
3078
 
        client.add_expected_call(
3079
 
            'Repository.start_write_group', ('quack/', 'a token'),
3080
 
            'error', ('UnsuspendableWriteGroup',))
3081
 
        repo.lock_write()
3082
 
        repo.start_write_group()
3083
 
        self.assertEquals(client._calls[-2:], [ 
3084
 
            ('_ensure_real',),
3085
 
            ('start_write_group',)])
3086
 
 
3087
 
    def test_commit_write_group(self):
3088
 
        transport_path = 'quack'
3089
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3090
 
        client.add_expected_call(
3091
 
            'Repository.lock_write', ('quack/', ''),
3092
 
            'success', ('ok', 'a token'))
3093
 
        client.add_expected_call(
3094
 
            'Repository.start_write_group', ('quack/', 'a token'),
3095
 
            'success', ('ok', ['token1']))
3096
 
        client.add_expected_call(
3097
 
            'Repository.commit_write_group', ('quack/', 'a token', ['token1']),
3098
 
            'success', ('ok',))
3099
 
        repo.lock_write()
3100
 
        repo.start_write_group()
3101
 
        repo.commit_write_group()
3102
 
 
3103
 
    def test_abort_write_group(self):
3104
 
        transport_path = 'quack'
3105
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3106
 
        client.add_expected_call(
3107
 
            'Repository.lock_write', ('quack/', ''),
3108
 
            'success', ('ok', 'a token'))
3109
 
        client.add_expected_call(
3110
 
            'Repository.start_write_group', ('quack/', 'a token'),
3111
 
            'success', ('ok', ['token1']))
3112
 
        client.add_expected_call(
3113
 
            'Repository.abort_write_group', ('quack/', 'a token', ['token1']),
3114
 
            'success', ('ok',))
3115
 
        repo.lock_write()
3116
 
        repo.start_write_group()
3117
 
        repo.abort_write_group(False)
3118
 
 
3119
 
    def test_suspend_write_group(self):
3120
 
        transport_path = 'quack'
3121
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3122
 
        self.assertEquals([], repo.suspend_write_group())
3123
 
 
3124
 
    def test_resume_write_group(self):
3125
 
        transport_path = 'quack'
3126
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3127
 
        client.add_expected_call(
3128
 
            'Repository.lock_write', ('quack/', ''),
3129
 
            'success', ('ok', 'a token'))
3130
 
        client.add_expected_call(
3131
 
            'Repository.check_write_group', ('quack/', 'a token', ['token1']),
3132
 
            'success', ('ok',))
3133
 
        repo.lock_write()
3134
 
        repo.resume_write_group(['token1'])
3135
 
 
3136
 
 
3137
 
class TestRepositorySetMakeWorkingTrees(TestRemoteRepository):
3138
 
 
3139
 
    def test_backwards_compat(self):
3140
 
        self.setup_smart_server_with_call_log()
3141
 
        repo = self.make_repository('.')
3142
 
        self.reset_smart_call_log()
3143
 
        verb = 'Repository.set_make_working_trees'
3144
 
        self.disable_verb(verb)
3145
 
        repo.set_make_working_trees(True)
3146
 
        call_count = len([call for call in self.hpss_calls if
3147
 
            call.call.method == verb])
3148
 
        self.assertEqual(1, call_count)
3149
 
 
3150
 
    def test_current(self):
3151
 
        transport_path = 'quack'
3152
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3153
 
        client.add_expected_call(
3154
 
            'Repository.set_make_working_trees', ('quack/', 'True'),
3155
 
            'success', ('ok',))
3156
 
        client.add_expected_call(
3157
 
            'Repository.set_make_working_trees', ('quack/', 'False'),
3158
 
            'success', ('ok',))
3159
 
        repo.set_make_working_trees(True)
3160
 
        repo.set_make_working_trees(False)
3161
 
 
3162
 
 
3163
658
class TestRepositoryUnlock(TestRemoteRepository):
3164
659
 
3165
660
    def test_unlock(self):
 
661
        responses = [(('ok', 'a token'), ''),
 
662
                     (('ok',), '')]
3166
663
        transport_path = 'quack'
3167
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3168
 
        client.add_success_response('ok', 'a token')
3169
 
        client.add_success_response('ok')
 
664
        repo, client = self.setup_fake_client_and_repository(
 
665
            responses, transport_path)
3170
666
        repo.lock_write()
3171
667
        repo.unlock()
3172
668
        self.assertEqual(
3173
 
            [('call', 'Repository.lock_write', ('quack/', '')),
3174
 
             ('call', 'Repository.unlock', ('quack/', 'a token'))],
 
669
            [('call', 'Repository.lock_write', ('///quack/', '')),
 
670
             ('call', 'Repository.unlock', ('///quack/', 'a token'))],
3175
671
            client._calls)
3176
672
 
3177
673
    def test_unlock_wrong_token(self):
3178
674
        # If somehow the token is wrong, unlock will raise TokenMismatch.
 
675
        responses = [(('ok', 'a token'), ''),
 
676
                     (('TokenMismatch',), '')]
3179
677
        transport_path = 'quack'
3180
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3181
 
        client.add_success_response('ok', 'a token')
3182
 
        client.add_error_response('TokenMismatch')
 
678
        repo, client = self.setup_fake_client_and_repository(
 
679
            responses, transport_path)
3183
680
        repo.lock_write()
3184
681
        self.assertRaises(errors.TokenMismatch, repo.unlock)
3185
682
 
3189
686
    def test_none(self):
3190
687
        # repo.has_revision(None) should not cause any traffic.
3191
688
        transport_path = 'quack'
3192
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
 
689
        responses = None
 
690
        repo, client = self.setup_fake_client_and_repository(
 
691
            responses, transport_path)
3193
692
 
3194
693
        # The null revision is always there, so has_revision(None) == True.
3195
 
        self.assertEqual(True, repo.has_revision(NULL_REVISION))
 
694
        self.assertEqual(True, repo.has_revision(None))
3196
695
 
3197
696
        # The remote repo shouldn't be accessed.
3198
697
        self.assertEqual([], client._calls)
3199
698
 
3200
699
 
3201
 
class TestRepositoryIterFilesBytes(TestRemoteRepository):
3202
 
    """Test Repository.iter_file_bytes."""
3203
 
 
3204
 
    def test_single(self):
3205
 
        transport_path = 'quack'
3206
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3207
 
        client.add_expected_call(
3208
 
            'Repository.iter_files_bytes', ('quack/', ),
3209
 
            'success', ('ok',), iter(["ok\x000", "\n", zlib.compress("mydata" * 10)]))
3210
 
        for (identifier, byte_stream) in repo.iter_files_bytes([("somefile",
3211
 
                "somerev", "myid")]):
3212
 
            self.assertEquals("myid", identifier)
3213
 
            self.assertEquals("".join(byte_stream), "mydata" * 10)
3214
 
 
3215
 
    def test_missing(self):
3216
 
        transport_path = 'quack'
3217
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3218
 
        client.add_expected_call(
3219
 
            'Repository.iter_files_bytes',
3220
 
                ('quack/', ),
3221
 
            'error', ('RevisionNotPresent', 'somefile', 'somerev'),
3222
 
            iter(["absent\0somefile\0somerev\n"]))
3223
 
        self.assertRaises(errors.RevisionNotPresent, list,
3224
 
                repo.iter_files_bytes(
3225
 
                [("somefile", "somerev", "myid")]))
3226
 
 
3227
 
 
3228
 
class TestRepositoryInsertStreamBase(TestRemoteRepository):
3229
 
    """Base class for Repository.insert_stream and .insert_stream_1.19
3230
 
    tests.
3231
 
    """
3232
 
    
3233
 
    def checkInsertEmptyStream(self, repo, client):
3234
 
        """Insert an empty stream, checking the result.
3235
 
 
3236
 
        This checks that there are no resume_tokens or missing_keys, and that
3237
 
        the client is finished.
3238
 
        """
3239
 
        sink = repo._get_sink()
3240
 
        fmt = repository.format_registry.get_default()
3241
 
        resume_tokens, missing_keys = sink.insert_stream([], fmt, [])
3242
 
        self.assertEqual([], resume_tokens)
3243
 
        self.assertEqual(set(), missing_keys)
3244
 
        self.assertFinished(client)
3245
 
 
3246
 
 
3247
 
class TestRepositoryInsertStream(TestRepositoryInsertStreamBase):
3248
 
    """Tests for using Repository.insert_stream verb when the _1.19 variant is
3249
 
    not available.
3250
 
 
3251
 
    This test case is very similar to TestRepositoryInsertStream_1_19.
3252
 
    """
3253
 
 
3254
 
    def setUp(self):
3255
 
        TestRemoteRepository.setUp(self)
3256
 
        self.disable_verb('Repository.insert_stream_1.19')
3257
 
 
3258
 
    def test_unlocked_repo(self):
3259
 
        transport_path = 'quack'
3260
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3261
 
        client.add_expected_call(
3262
 
            'Repository.insert_stream_1.19', ('quack/', ''),
3263
 
            'unknown', ('Repository.insert_stream_1.19',))
3264
 
        client.add_expected_call(
3265
 
            'Repository.insert_stream', ('quack/', ''),
3266
 
            'success', ('ok',))
3267
 
        client.add_expected_call(
3268
 
            'Repository.insert_stream', ('quack/', ''),
3269
 
            'success', ('ok',))
3270
 
        self.checkInsertEmptyStream(repo, client)
3271
 
 
3272
 
    def test_locked_repo_with_no_lock_token(self):
3273
 
        transport_path = 'quack'
3274
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3275
 
        client.add_expected_call(
3276
 
            'Repository.lock_write', ('quack/', ''),
3277
 
            'success', ('ok', ''))
3278
 
        client.add_expected_call(
3279
 
            'Repository.insert_stream_1.19', ('quack/', ''),
3280
 
            'unknown', ('Repository.insert_stream_1.19',))
3281
 
        client.add_expected_call(
3282
 
            'Repository.insert_stream', ('quack/', ''),
3283
 
            'success', ('ok',))
3284
 
        client.add_expected_call(
3285
 
            'Repository.insert_stream', ('quack/', ''),
3286
 
            'success', ('ok',))
3287
 
        repo.lock_write()
3288
 
        self.checkInsertEmptyStream(repo, client)
3289
 
 
3290
 
    def test_locked_repo_with_lock_token(self):
3291
 
        transport_path = 'quack'
3292
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3293
 
        client.add_expected_call(
3294
 
            'Repository.lock_write', ('quack/', ''),
3295
 
            'success', ('ok', 'a token'))
3296
 
        client.add_expected_call(
3297
 
            'Repository.insert_stream_1.19', ('quack/', '', 'a token'),
3298
 
            'unknown', ('Repository.insert_stream_1.19',))
3299
 
        client.add_expected_call(
3300
 
            'Repository.insert_stream_locked', ('quack/', '', 'a token'),
3301
 
            'success', ('ok',))
3302
 
        client.add_expected_call(
3303
 
            'Repository.insert_stream_locked', ('quack/', '', 'a token'),
3304
 
            'success', ('ok',))
3305
 
        repo.lock_write()
3306
 
        self.checkInsertEmptyStream(repo, client)
3307
 
 
3308
 
    def test_stream_with_inventory_deltas(self):
3309
 
        """'inventory-deltas' substreams cannot be sent to the
3310
 
        Repository.insert_stream verb, because not all servers that implement
3311
 
        that verb will accept them.  So when one is encountered the RemoteSink
3312
 
        immediately stops using that verb and falls back to VFS insert_stream.
3313
 
        """
3314
 
        transport_path = 'quack'
3315
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3316
 
        client.add_expected_call(
3317
 
            'Repository.insert_stream_1.19', ('quack/', ''),
3318
 
            'unknown', ('Repository.insert_stream_1.19',))
3319
 
        client.add_expected_call(
3320
 
            'Repository.insert_stream', ('quack/', ''),
3321
 
            'success', ('ok',))
3322
 
        client.add_expected_call(
3323
 
            'Repository.insert_stream', ('quack/', ''),
3324
 
            'success', ('ok',))
3325
 
        # Create a fake real repository for insert_stream to fall back on, so
3326
 
        # that we can directly see the records the RemoteSink passes to the
3327
 
        # real sink.
3328
 
        class FakeRealSink:
3329
 
            def __init__(self):
3330
 
                self.records = []
3331
 
            def insert_stream(self, stream, src_format, resume_tokens):
3332
 
                for substream_kind, substream in stream:
3333
 
                    self.records.append(
3334
 
                        (substream_kind, [record.key for record in substream]))
3335
 
                return ['fake tokens'], ['fake missing keys']
3336
 
        fake_real_sink = FakeRealSink()
3337
 
        class FakeRealRepository:
3338
 
            def _get_sink(self):
3339
 
                return fake_real_sink
3340
 
            def is_in_write_group(self):
3341
 
                return False
3342
 
            def refresh_data(self):
3343
 
                return True
3344
 
        repo._real_repository = FakeRealRepository()
3345
 
        sink = repo._get_sink()
3346
 
        fmt = repository.format_registry.get_default()
3347
 
        stream = self.make_stream_with_inv_deltas(fmt)
3348
 
        resume_tokens, missing_keys = sink.insert_stream(stream, fmt, [])
3349
 
        # Every record from the first inventory delta should have been sent to
3350
 
        # the VFS sink.
3351
 
        expected_records = [
3352
 
            ('inventory-deltas', [('rev2',), ('rev3',)]),
3353
 
            ('texts', [('some-rev', 'some-file')])]
3354
 
        self.assertEqual(expected_records, fake_real_sink.records)
3355
 
        # The return values from the real sink's insert_stream are propagated
3356
 
        # back to the original caller.
3357
 
        self.assertEqual(['fake tokens'], resume_tokens)
3358
 
        self.assertEqual(['fake missing keys'], missing_keys)
3359
 
        self.assertFinished(client)
3360
 
 
3361
 
    def make_stream_with_inv_deltas(self, fmt):
3362
 
        """Make a simple stream with an inventory delta followed by more
3363
 
        records and more substreams to test that all records and substreams
3364
 
        from that point on are used.
3365
 
 
3366
 
        This sends, in order:
3367
 
           * inventories substream: rev1, rev2, rev3.  rev2 and rev3 are
3368
 
             inventory-deltas.
3369
 
           * texts substream: (some-rev, some-file)
3370
 
        """
3371
 
        # Define a stream using generators so that it isn't rewindable.
3372
 
        inv = inventory.Inventory(revision_id='rev1')
3373
 
        inv.root.revision = 'rev1'
3374
 
        def stream_with_inv_delta():
3375
 
            yield ('inventories', inventories_substream())
3376
 
            yield ('inventory-deltas', inventory_delta_substream())
3377
 
            yield ('texts', [
3378
 
                versionedfile.FulltextContentFactory(
3379
 
                    ('some-rev', 'some-file'), (), None, 'content')])
3380
 
        def inventories_substream():
3381
 
            # An empty inventory fulltext.  This will be streamed normally.
3382
 
            text = fmt._serializer.write_inventory_to_string(inv)
3383
 
            yield versionedfile.FulltextContentFactory(
3384
 
                ('rev1',), (), None, text)
3385
 
        def inventory_delta_substream():
3386
 
            # An inventory delta.  This can't be streamed via this verb, so it
3387
 
            # will trigger a fallback to VFS insert_stream.
3388
 
            entry = inv.make_entry(
3389
 
                'directory', 'newdir', inv.root.file_id, 'newdir-id')
3390
 
            entry.revision = 'ghost'
3391
 
            delta = [(None, 'newdir', 'newdir-id', entry)]
3392
 
            serializer = inventory_delta.InventoryDeltaSerializer(
3393
 
                versioned_root=True, tree_references=False)
3394
 
            lines = serializer.delta_to_lines('rev1', 'rev2', delta)
3395
 
            yield versionedfile.ChunkedContentFactory(
3396
 
                ('rev2',), (('rev1',)), None, lines)
3397
 
            # Another delta.
3398
 
            lines = serializer.delta_to_lines('rev1', 'rev3', delta)
3399
 
            yield versionedfile.ChunkedContentFactory(
3400
 
                ('rev3',), (('rev1',)), None, lines)
3401
 
        return stream_with_inv_delta()
3402
 
 
3403
 
 
3404
 
class TestRepositoryInsertStream_1_19(TestRepositoryInsertStreamBase):
3405
 
 
3406
 
    def test_unlocked_repo(self):
3407
 
        transport_path = 'quack'
3408
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3409
 
        client.add_expected_call(
3410
 
            'Repository.insert_stream_1.19', ('quack/', ''),
3411
 
            'success', ('ok',))
3412
 
        client.add_expected_call(
3413
 
            'Repository.insert_stream_1.19', ('quack/', ''),
3414
 
            'success', ('ok',))
3415
 
        self.checkInsertEmptyStream(repo, client)
3416
 
 
3417
 
    def test_locked_repo_with_no_lock_token(self):
3418
 
        transport_path = 'quack'
3419
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3420
 
        client.add_expected_call(
3421
 
            'Repository.lock_write', ('quack/', ''),
3422
 
            'success', ('ok', ''))
3423
 
        client.add_expected_call(
3424
 
            'Repository.insert_stream_1.19', ('quack/', ''),
3425
 
            'success', ('ok',))
3426
 
        client.add_expected_call(
3427
 
            'Repository.insert_stream_1.19', ('quack/', ''),
3428
 
            'success', ('ok',))
3429
 
        repo.lock_write()
3430
 
        self.checkInsertEmptyStream(repo, client)
3431
 
 
3432
 
    def test_locked_repo_with_lock_token(self):
3433
 
        transport_path = 'quack'
3434
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3435
 
        client.add_expected_call(
3436
 
            'Repository.lock_write', ('quack/', ''),
3437
 
            'success', ('ok', 'a token'))
3438
 
        client.add_expected_call(
3439
 
            'Repository.insert_stream_1.19', ('quack/', '', 'a token'),
3440
 
            'success', ('ok',))
3441
 
        client.add_expected_call(
3442
 
            'Repository.insert_stream_1.19', ('quack/', '', 'a token'),
3443
 
            'success', ('ok',))
3444
 
        repo.lock_write()
3445
 
        self.checkInsertEmptyStream(repo, client)
3446
 
 
3447
 
 
3448
700
class TestRepositoryTarball(TestRemoteRepository):
3449
701
 
3450
702
    # This is a canned tarball reponse we can validate against
3466
718
    def test_repository_tarball(self):
3467
719
        # Test that Repository.tarball generates the right operations
3468
720
        transport_path = 'repo'
 
721
        expected_responses = [(('ok',), self.tarball_content),
 
722
            ]
3469
723
        expected_calls = [('call_expecting_body', 'Repository.tarball',
3470
 
                           ('repo/', 'bz2',),),
 
724
                           ('///repo/', 'bz2',),),
3471
725
            ]
3472
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3473
 
        client.add_success_response_with_body(self.tarball_content, 'ok')
 
726
        remote_repo, client = self.setup_fake_client_and_repository(
 
727
            expected_responses, transport_path)
3474
728
        # Now actually ask for the tarball
3475
 
        tarball_file = repo._get_tarball('bz2')
 
729
        tarball_file = remote_repo._get_tarball('bz2')
3476
730
        try:
3477
731
            self.assertEqual(expected_calls, client._calls)
3478
732
            self.assertEqual(self.tarball_content, tarball_file.read())
3479
733
        finally:
3480
734
            tarball_file.close()
3481
735
 
 
736
    def test_sprout_uses_tarball(self):
 
737
        # RemoteRepository.sprout should try to use the
 
738
        # tarball command rather than accessing all the files
 
739
        transport_path = 'srcrepo'
 
740
        expected_responses = [(('ok',), self.tarball_content),
 
741
            ]
 
742
        expected_calls = [('call2', 'Repository.tarball', ('///srcrepo/', 'bz2',),),
 
743
            ]
 
744
        remote_repo, client = self.setup_fake_client_and_repository(
 
745
            expected_responses, transport_path)
 
746
        # make a regular local repository to receive the results
 
747
        dest_transport = MemoryTransport()
 
748
        dest_transport.mkdir('destrepo')
 
749
        bzrdir_format = bzrdir.format_registry.make_bzrdir('default')
 
750
        dest_bzrdir = bzrdir_format.initialize_on_transport(dest_transport)
 
751
        # try to copy...
 
752
        remote_repo.sprout(dest_bzrdir)
 
753
 
3482
754
 
3483
755
class TestRemoteRepositoryCopyContent(tests.TestCaseWithTransport):
3484
756
    """RemoteRepository.copy_content_into optimizations"""
3485
757
 
3486
758
    def test_copy_content_remote_to_local(self):
3487
 
        self.transport_server = test_server.SmartTCPServer_for_testing
 
759
        self.transport_server = server.SmartTCPServer_for_testing
3488
760
        src_repo = self.make_repository('repo1')
3489
761
        src_repo = repository.Repository.open(self.get_url('repo1'))
3490
762
        # At the moment the tarball-based copy_content_into can't write back
3497
769
        self.assertFalse(isinstance(dest_repo, RemoteRepository))
3498
770
        self.assertTrue(isinstance(src_repo, RemoteRepository))
3499
771
        src_repo.copy_content_into(dest_repo)
3500
 
 
3501
 
 
3502
 
class _StubRealPackRepository(object):
3503
 
 
3504
 
    def __init__(self, calls):
3505
 
        self.calls = calls
3506
 
        self._pack_collection = _StubPackCollection(calls)
3507
 
 
3508
 
    def start_write_group(self):
3509
 
        self.calls.append(('start_write_group',))
3510
 
 
3511
 
    def is_in_write_group(self):
3512
 
        return False
3513
 
 
3514
 
    def refresh_data(self):
3515
 
        self.calls.append(('pack collection reload_pack_names',))
3516
 
 
3517
 
 
3518
 
class _StubPackCollection(object):
3519
 
 
3520
 
    def __init__(self, calls):
3521
 
        self.calls = calls
3522
 
 
3523
 
    def autopack(self):
3524
 
        self.calls.append(('pack collection autopack',))
3525
 
 
3526
 
 
3527
 
class TestRemotePackRepositoryAutoPack(TestRemoteRepository):
3528
 
    """Tests for RemoteRepository.autopack implementation."""
3529
 
 
3530
 
    def test_ok(self):
3531
 
        """When the server returns 'ok' and there's no _real_repository, then
3532
 
        nothing else happens: the autopack method is done.
3533
 
        """
3534
 
        transport_path = 'quack'
3535
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3536
 
        client.add_expected_call(
3537
 
            'PackRepository.autopack', ('quack/',), 'success', ('ok',))
3538
 
        repo.autopack()
3539
 
        self.assertFinished(client)
3540
 
 
3541
 
    def test_ok_with_real_repo(self):
3542
 
        """When the server returns 'ok' and there is a _real_repository, then
3543
 
        the _real_repository's reload_pack_name's method will be called.
3544
 
        """
3545
 
        transport_path = 'quack'
3546
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3547
 
        client.add_expected_call(
3548
 
            'PackRepository.autopack', ('quack/',),
3549
 
            'success', ('ok',))
3550
 
        repo._real_repository = _StubRealPackRepository(client._calls)
3551
 
        repo.autopack()
3552
 
        self.assertEqual(
3553
 
            [('call', 'PackRepository.autopack', ('quack/',)),
3554
 
             ('pack collection reload_pack_names',)],
3555
 
            client._calls)
3556
 
 
3557
 
    def test_backwards_compatibility(self):
3558
 
        """If the server does not recognise the PackRepository.autopack verb,
3559
 
        fallback to the real_repository's implementation.
3560
 
        """
3561
 
        transport_path = 'quack'
3562
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3563
 
        client.add_unknown_method_response('PackRepository.autopack')
3564
 
        def stub_ensure_real():
3565
 
            client._calls.append(('_ensure_real',))
3566
 
            repo._real_repository = _StubRealPackRepository(client._calls)
3567
 
        repo._ensure_real = stub_ensure_real
3568
 
        repo.autopack()
3569
 
        self.assertEqual(
3570
 
            [('call', 'PackRepository.autopack', ('quack/',)),
3571
 
             ('_ensure_real',),
3572
 
             ('pack collection autopack',)],
3573
 
            client._calls)
3574
 
 
3575
 
    def test_oom_error_reporting(self):
3576
 
        """An out-of-memory condition on the server is reported clearly"""
3577
 
        transport_path = 'quack'
3578
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
3579
 
        client.add_expected_call(
3580
 
            'PackRepository.autopack', ('quack/',),
3581
 
            'error', ('MemoryError',))
3582
 
        err = self.assertRaises(errors.BzrError, repo.autopack)
3583
 
        self.assertContainsRe(str(err), "^remote server out of mem")
3584
 
 
3585
 
 
3586
 
class TestErrorTranslationBase(tests.TestCaseWithMemoryTransport):
3587
 
    """Base class for unit tests for bzrlib.remote._translate_error."""
3588
 
 
3589
 
    def translateTuple(self, error_tuple, **context):
3590
 
        """Call _translate_error with an ErrorFromSmartServer built from the
3591
 
        given error_tuple.
3592
 
 
3593
 
        :param error_tuple: A tuple of a smart server response, as would be
3594
 
            passed to an ErrorFromSmartServer.
3595
 
        :kwargs context: context items to call _translate_error with.
3596
 
 
3597
 
        :returns: The error raised by _translate_error.
3598
 
        """
3599
 
        # Raise the ErrorFromSmartServer before passing it as an argument,
3600
 
        # because _translate_error may need to re-raise it with a bare 'raise'
3601
 
        # statement.
3602
 
        server_error = errors.ErrorFromSmartServer(error_tuple)
3603
 
        translated_error = self.translateErrorFromSmartServer(
3604
 
            server_error, **context)
3605
 
        return translated_error
3606
 
 
3607
 
    def translateErrorFromSmartServer(self, error_object, **context):
3608
 
        """Like translateTuple, but takes an already constructed
3609
 
        ErrorFromSmartServer rather than a tuple.
3610
 
        """
3611
 
        try:
3612
 
            raise error_object
3613
 
        except errors.ErrorFromSmartServer, server_error:
3614
 
            translated_error = self.assertRaises(
3615
 
                errors.BzrError, remote._translate_error, server_error,
3616
 
                **context)
3617
 
        return translated_error
3618
 
 
3619
 
 
3620
 
class TestErrorTranslationSuccess(TestErrorTranslationBase):
3621
 
    """Unit tests for bzrlib.remote._translate_error.
3622
 
 
3623
 
    Given an ErrorFromSmartServer (which has an error tuple from a smart
3624
 
    server) and some context, _translate_error raises more specific errors from
3625
 
    bzrlib.errors.
3626
 
 
3627
 
    This test case covers the cases where _translate_error succeeds in
3628
 
    translating an ErrorFromSmartServer to something better.  See
3629
 
    TestErrorTranslationRobustness for other cases.
3630
 
    """
3631
 
 
3632
 
    def test_NoSuchRevision(self):
3633
 
        branch = self.make_branch('')
3634
 
        revid = 'revid'
3635
 
        translated_error = self.translateTuple(
3636
 
            ('NoSuchRevision', revid), branch=branch)
3637
 
        expected_error = errors.NoSuchRevision(branch, revid)
3638
 
        self.assertEqual(expected_error, translated_error)
3639
 
 
3640
 
    def test_nosuchrevision(self):
3641
 
        repository = self.make_repository('')
3642
 
        revid = 'revid'
3643
 
        translated_error = self.translateTuple(
3644
 
            ('nosuchrevision', revid), repository=repository)
3645
 
        expected_error = errors.NoSuchRevision(repository, revid)
3646
 
        self.assertEqual(expected_error, translated_error)
3647
 
 
3648
 
    def test_nobranch(self):
3649
 
        bzrdir = self.make_bzrdir('')
3650
 
        translated_error = self.translateTuple(('nobranch',), bzrdir=bzrdir)
3651
 
        expected_error = errors.NotBranchError(path=bzrdir.root_transport.base)
3652
 
        self.assertEqual(expected_error, translated_error)
3653
 
 
3654
 
    def test_nobranch_one_arg(self):
3655
 
        bzrdir = self.make_bzrdir('')
3656
 
        translated_error = self.translateTuple(
3657
 
            ('nobranch', 'extra detail'), bzrdir=bzrdir)
3658
 
        expected_error = errors.NotBranchError(
3659
 
            path=bzrdir.root_transport.base,
3660
 
            detail='extra detail')
3661
 
        self.assertEqual(expected_error, translated_error)
3662
 
 
3663
 
    def test_norepository(self):
3664
 
        bzrdir = self.make_bzrdir('')
3665
 
        translated_error = self.translateTuple(('norepository',),
3666
 
            bzrdir=bzrdir)
3667
 
        expected_error = errors.NoRepositoryPresent(bzrdir)
3668
 
        self.assertEqual(expected_error, translated_error)
3669
 
 
3670
 
    def test_LockContention(self):
3671
 
        translated_error = self.translateTuple(('LockContention',))
3672
 
        expected_error = errors.LockContention('(remote lock)')
3673
 
        self.assertEqual(expected_error, translated_error)
3674
 
 
3675
 
    def test_UnlockableTransport(self):
3676
 
        bzrdir = self.make_bzrdir('')
3677
 
        translated_error = self.translateTuple(
3678
 
            ('UnlockableTransport',), bzrdir=bzrdir)
3679
 
        expected_error = errors.UnlockableTransport(bzrdir.root_transport)
3680
 
        self.assertEqual(expected_error, translated_error)
3681
 
 
3682
 
    def test_LockFailed(self):
3683
 
        lock = 'str() of a server lock'
3684
 
        why = 'str() of why'
3685
 
        translated_error = self.translateTuple(('LockFailed', lock, why))
3686
 
        expected_error = errors.LockFailed(lock, why)
3687
 
        self.assertEqual(expected_error, translated_error)
3688
 
 
3689
 
    def test_TokenMismatch(self):
3690
 
        token = 'a lock token'
3691
 
        translated_error = self.translateTuple(('TokenMismatch',), token=token)
3692
 
        expected_error = errors.TokenMismatch(token, '(remote token)')
3693
 
        self.assertEqual(expected_error, translated_error)
3694
 
 
3695
 
    def test_Diverged(self):
3696
 
        branch = self.make_branch('a')
3697
 
        other_branch = self.make_branch('b')
3698
 
        translated_error = self.translateTuple(
3699
 
            ('Diverged',), branch=branch, other_branch=other_branch)
3700
 
        expected_error = errors.DivergedBranches(branch, other_branch)
3701
 
        self.assertEqual(expected_error, translated_error)
3702
 
 
3703
 
    def test_NotStacked(self):
3704
 
        branch = self.make_branch('')
3705
 
        translated_error = self.translateTuple(('NotStacked',), branch=branch)
3706
 
        expected_error = errors.NotStacked(branch)
3707
 
        self.assertEqual(expected_error, translated_error)
3708
 
 
3709
 
    def test_ReadError_no_args(self):
3710
 
        path = 'a path'
3711
 
        translated_error = self.translateTuple(('ReadError',), path=path)
3712
 
        expected_error = errors.ReadError(path)
3713
 
        self.assertEqual(expected_error, translated_error)
3714
 
 
3715
 
    def test_ReadError(self):
3716
 
        path = 'a path'
3717
 
        translated_error = self.translateTuple(('ReadError', path))
3718
 
        expected_error = errors.ReadError(path)
3719
 
        self.assertEqual(expected_error, translated_error)
3720
 
 
3721
 
    def test_IncompatibleRepositories(self):
3722
 
        translated_error = self.translateTuple(('IncompatibleRepositories',
3723
 
            "repo1", "repo2", "details here"))
3724
 
        expected_error = errors.IncompatibleRepositories("repo1", "repo2",
3725
 
            "details here")
3726
 
        self.assertEqual(expected_error, translated_error)
3727
 
 
3728
 
    def test_PermissionDenied_no_args(self):
3729
 
        path = 'a path'
3730
 
        translated_error = self.translateTuple(('PermissionDenied',),
3731
 
            path=path)
3732
 
        expected_error = errors.PermissionDenied(path)
3733
 
        self.assertEqual(expected_error, translated_error)
3734
 
 
3735
 
    def test_PermissionDenied_one_arg(self):
3736
 
        path = 'a path'
3737
 
        translated_error = self.translateTuple(('PermissionDenied', path))
3738
 
        expected_error = errors.PermissionDenied(path)
3739
 
        self.assertEqual(expected_error, translated_error)
3740
 
 
3741
 
    def test_PermissionDenied_one_arg_and_context(self):
3742
 
        """Given a choice between a path from the local context and a path on
3743
 
        the wire, _translate_error prefers the path from the local context.
3744
 
        """
3745
 
        local_path = 'local path'
3746
 
        remote_path = 'remote path'
3747
 
        translated_error = self.translateTuple(
3748
 
            ('PermissionDenied', remote_path), path=local_path)
3749
 
        expected_error = errors.PermissionDenied(local_path)
3750
 
        self.assertEqual(expected_error, translated_error)
3751
 
 
3752
 
    def test_PermissionDenied_two_args(self):
3753
 
        path = 'a path'
3754
 
        extra = 'a string with extra info'
3755
 
        translated_error = self.translateTuple(
3756
 
            ('PermissionDenied', path, extra))
3757
 
        expected_error = errors.PermissionDenied(path, extra)
3758
 
        self.assertEqual(expected_error, translated_error)
3759
 
 
3760
 
    # GZ 2011-03-02: TODO test for PermissionDenied with non-ascii 'extra'
3761
 
 
3762
 
    def test_NoSuchFile_context_path(self):
3763
 
        local_path = "local path"
3764
 
        translated_error = self.translateTuple(('ReadError', "remote path"),
3765
 
            path=local_path)
3766
 
        expected_error = errors.ReadError(local_path)
3767
 
        self.assertEqual(expected_error, translated_error)
3768
 
 
3769
 
    def test_NoSuchFile_without_context(self):
3770
 
        remote_path = "remote path"
3771
 
        translated_error = self.translateTuple(('ReadError', remote_path))
3772
 
        expected_error = errors.ReadError(remote_path)
3773
 
        self.assertEqual(expected_error, translated_error)
3774
 
 
3775
 
    def test_ReadOnlyError(self):
3776
 
        translated_error = self.translateTuple(('ReadOnlyError',))
3777
 
        expected_error = errors.TransportNotPossible("readonly transport")
3778
 
        self.assertEqual(expected_error, translated_error)
3779
 
 
3780
 
    def test_MemoryError(self):
3781
 
        translated_error = self.translateTuple(('MemoryError',))
3782
 
        self.assertStartsWith(str(translated_error),
3783
 
            "remote server out of memory")
3784
 
 
3785
 
    def test_generic_IndexError_no_classname(self):
3786
 
        err = errors.ErrorFromSmartServer(('error', "list index out of range"))
3787
 
        translated_error = self.translateErrorFromSmartServer(err)
3788
 
        expected_error = errors.UnknownErrorFromSmartServer(err)
3789
 
        self.assertEqual(expected_error, translated_error)
3790
 
 
3791
 
    # GZ 2011-03-02: TODO test generic non-ascii error string
3792
 
 
3793
 
    def test_generic_KeyError(self):
3794
 
        err = errors.ErrorFromSmartServer(('error', 'KeyError', "1"))
3795
 
        translated_error = self.translateErrorFromSmartServer(err)
3796
 
        expected_error = errors.UnknownErrorFromSmartServer(err)
3797
 
        self.assertEqual(expected_error, translated_error)
3798
 
 
3799
 
 
3800
 
class TestErrorTranslationRobustness(TestErrorTranslationBase):
3801
 
    """Unit tests for bzrlib.remote._translate_error's robustness.
3802
 
 
3803
 
    TestErrorTranslationSuccess is for cases where _translate_error can
3804
 
    translate successfully.  This class about how _translate_err behaves when
3805
 
    it fails to translate: it re-raises the original error.
3806
 
    """
3807
 
 
3808
 
    def test_unrecognised_server_error(self):
3809
 
        """If the error code from the server is not recognised, the original
3810
 
        ErrorFromSmartServer is propagated unmodified.
3811
 
        """
3812
 
        error_tuple = ('An unknown error tuple',)
3813
 
        server_error = errors.ErrorFromSmartServer(error_tuple)
3814
 
        translated_error = self.translateErrorFromSmartServer(server_error)
3815
 
        expected_error = errors.UnknownErrorFromSmartServer(server_error)
3816
 
        self.assertEqual(expected_error, translated_error)
3817
 
 
3818
 
    def test_context_missing_a_key(self):
3819
 
        """In case of a bug in the client, or perhaps an unexpected response
3820
 
        from a server, _translate_error returns the original error tuple from
3821
 
        the server and mutters a warning.
3822
 
        """
3823
 
        # To translate a NoSuchRevision error _translate_error needs a 'branch'
3824
 
        # in the context dict.  So let's give it an empty context dict instead
3825
 
        # to exercise its error recovery.
3826
 
        empty_context = {}
3827
 
        error_tuple = ('NoSuchRevision', 'revid')
3828
 
        server_error = errors.ErrorFromSmartServer(error_tuple)
3829
 
        translated_error = self.translateErrorFromSmartServer(server_error)
3830
 
        self.assertEqual(server_error, translated_error)
3831
 
        # In addition to re-raising ErrorFromSmartServer, some debug info has
3832
 
        # been muttered to the log file for developer to look at.
3833
 
        self.assertContainsRe(
3834
 
            self.get_log(),
3835
 
            "Missing key 'branch' in context")
3836
 
 
3837
 
    def test_path_missing(self):
3838
 
        """Some translations (PermissionDenied, ReadError) can determine the
3839
 
        'path' variable from either the wire or the local context.  If neither
3840
 
        has it, then an error is raised.
3841
 
        """
3842
 
        error_tuple = ('ReadError',)
3843
 
        server_error = errors.ErrorFromSmartServer(error_tuple)
3844
 
        translated_error = self.translateErrorFromSmartServer(server_error)
3845
 
        self.assertEqual(server_error, translated_error)
3846
 
        # In addition to re-raising ErrorFromSmartServer, some debug info has
3847
 
        # been muttered to the log file for developer to look at.
3848
 
        self.assertContainsRe(self.get_log(), "Missing key 'path' in context")
3849
 
 
3850
 
 
3851
 
class TestStacking(tests.TestCaseWithTransport):
3852
 
    """Tests for operations on stacked remote repositories.
3853
 
 
3854
 
    The underlying format type must support stacking.
3855
 
    """
3856
 
 
3857
 
    def test_access_stacked_remote(self):
3858
 
        # based on <http://launchpad.net/bugs/261315>
3859
 
        # make a branch stacked on another repository containing an empty
3860
 
        # revision, then open it over hpss - we should be able to see that
3861
 
        # revision.
3862
 
        base_transport = self.get_transport()
3863
 
        base_builder = self.make_branch_builder('base', format='1.9')
3864
 
        base_builder.start_series()
3865
 
        base_revid = base_builder.build_snapshot('rev-id', None,
3866
 
            [('add', ('', None, 'directory', None))],
3867
 
            'message')
3868
 
        base_builder.finish_series()
3869
 
        stacked_branch = self.make_branch('stacked', format='1.9')
3870
 
        stacked_branch.set_stacked_on_url('../base')
3871
 
        # start a server looking at this
3872
 
        smart_server = test_server.SmartTCPServer_for_testing()
3873
 
        self.start_server(smart_server)
3874
 
        remote_bzrdir = BzrDir.open(smart_server.get_url() + '/stacked')
3875
 
        # can get its branch and repository
3876
 
        remote_branch = remote_bzrdir.open_branch()
3877
 
        remote_repo = remote_branch.repository
3878
 
        remote_repo.lock_read()
3879
 
        try:
3880
 
            # it should have an appropriate fallback repository, which should also
3881
 
            # be a RemoteRepository
3882
 
            self.assertLength(1, remote_repo._fallback_repositories)
3883
 
            self.assertIsInstance(remote_repo._fallback_repositories[0],
3884
 
                RemoteRepository)
3885
 
            # and it has the revision committed to the underlying repository;
3886
 
            # these have varying implementations so we try several of them
3887
 
            self.assertTrue(remote_repo.has_revisions([base_revid]))
3888
 
            self.assertTrue(remote_repo.has_revision(base_revid))
3889
 
            self.assertEqual(remote_repo.get_revision(base_revid).message,
3890
 
                'message')
3891
 
        finally:
3892
 
            remote_repo.unlock()
3893
 
 
3894
 
    def prepare_stacked_remote_branch(self):
3895
 
        """Get stacked_upon and stacked branches with content in each."""
3896
 
        self.setup_smart_server_with_call_log()
3897
 
        tree1 = self.make_branch_and_tree('tree1', format='1.9')
3898
 
        tree1.commit('rev1', rev_id='rev1')
3899
 
        tree2 = tree1.branch.bzrdir.sprout('tree2', stacked=True
3900
 
            ).open_workingtree()
3901
 
        local_tree = tree2.branch.create_checkout('local')
3902
 
        local_tree.commit('local changes make me feel good.')
3903
 
        branch2 = Branch.open(self.get_url('tree2'))
3904
 
        branch2.lock_read()
3905
 
        self.addCleanup(branch2.unlock)
3906
 
        return tree1.branch, branch2
3907
 
 
3908
 
    def test_stacked_get_parent_map(self):
3909
 
        # the public implementation of get_parent_map obeys stacking
3910
 
        _, branch = self.prepare_stacked_remote_branch()
3911
 
        repo = branch.repository
3912
 
        self.assertEqual(['rev1'], repo.get_parent_map(['rev1']).keys())
3913
 
 
3914
 
    def test_unstacked_get_parent_map(self):
3915
 
        # _unstacked_provider.get_parent_map ignores stacking
3916
 
        _, branch = self.prepare_stacked_remote_branch()
3917
 
        provider = branch.repository._unstacked_provider
3918
 
        self.assertEqual([], provider.get_parent_map(['rev1']).keys())
3919
 
 
3920
 
    def fetch_stream_to_rev_order(self, stream):
3921
 
        result = []
3922
 
        for kind, substream in stream:
3923
 
            if not kind == 'revisions':
3924
 
                list(substream)
3925
 
            else:
3926
 
                for content in substream:
3927
 
                    result.append(content.key[-1])
3928
 
        return result
3929
 
 
3930
 
    def get_ordered_revs(self, format, order, branch_factory=None):
3931
 
        """Get a list of the revisions in a stream to format format.
3932
 
 
3933
 
        :param format: The format of the target.
3934
 
        :param order: the order that target should have requested.
3935
 
        :param branch_factory: A callable to create a trunk and stacked branch
3936
 
            to fetch from. If none, self.prepare_stacked_remote_branch is used.
3937
 
        :result: The revision ids in the stream, in the order seen,
3938
 
            the topological order of revisions in the source.
3939
 
        """
3940
 
        unordered_format = bzrdir.format_registry.get(format)()
3941
 
        target_repository_format = unordered_format.repository_format
3942
 
        # Cross check
3943
 
        self.assertEqual(order, target_repository_format._fetch_order)
3944
 
        if branch_factory is None:
3945
 
            branch_factory = self.prepare_stacked_remote_branch
3946
 
        _, stacked = branch_factory()
3947
 
        source = stacked.repository._get_source(target_repository_format)
3948
 
        tip = stacked.last_revision()
3949
 
        stacked.repository._ensure_real()
3950
 
        graph = stacked.repository.get_graph()
3951
 
        revs = [r for (r,ps) in graph.iter_ancestry([tip])
3952
 
                if r != NULL_REVISION]
3953
 
        revs.reverse()
3954
 
        search = vf_search.PendingAncestryResult([tip], stacked.repository)
3955
 
        self.reset_smart_call_log()
3956
 
        stream = source.get_stream(search)
3957
 
        # We trust that if a revision is in the stream the rest of the new
3958
 
        # content for it is too, as per our main fetch tests; here we are
3959
 
        # checking that the revisions are actually included at all, and their
3960
 
        # order.
3961
 
        return self.fetch_stream_to_rev_order(stream), revs
3962
 
 
3963
 
    def test_stacked_get_stream_unordered(self):
3964
 
        # Repository._get_source.get_stream() from a stacked repository with
3965
 
        # unordered yields the full data from both stacked and stacked upon
3966
 
        # sources.
3967
 
        rev_ord, expected_revs = self.get_ordered_revs('1.9', 'unordered')
3968
 
        self.assertEqual(set(expected_revs), set(rev_ord))
3969
 
        # Getting unordered results should have made a streaming data request
3970
 
        # from the server, then one from the backing branch.
3971
 
        self.assertLength(2, self.hpss_calls)
3972
 
 
3973
 
    def test_stacked_on_stacked_get_stream_unordered(self):
3974
 
        # Repository._get_source.get_stream() from a stacked repository which
3975
 
        # is itself stacked yields the full data from all three sources.
3976
 
        def make_stacked_stacked():
3977
 
            _, stacked = self.prepare_stacked_remote_branch()
3978
 
            tree = stacked.bzrdir.sprout('tree3', stacked=True
3979
 
                ).open_workingtree()
3980
 
            local_tree = tree.branch.create_checkout('local-tree3')
3981
 
            local_tree.commit('more local changes are better')
3982
 
            branch = Branch.open(self.get_url('tree3'))
3983
 
            branch.lock_read()
3984
 
            self.addCleanup(branch.unlock)
3985
 
            return None, branch
3986
 
        rev_ord, expected_revs = self.get_ordered_revs('1.9', 'unordered',
3987
 
            branch_factory=make_stacked_stacked)
3988
 
        self.assertEqual(set(expected_revs), set(rev_ord))
3989
 
        # Getting unordered results should have made a streaming data request
3990
 
        # from the server, and one from each backing repo
3991
 
        self.assertLength(3, self.hpss_calls)
3992
 
 
3993
 
    def test_stacked_get_stream_topological(self):
3994
 
        # Repository._get_source.get_stream() from a stacked repository with
3995
 
        # topological sorting yields the full data from both stacked and
3996
 
        # stacked upon sources in topological order.
3997
 
        rev_ord, expected_revs = self.get_ordered_revs('knit', 'topological')
3998
 
        self.assertEqual(expected_revs, rev_ord)
3999
 
        # Getting topological sort requires VFS calls still - one of which is
4000
 
        # pushing up from the bound branch.
4001
 
        self.assertLength(14, self.hpss_calls)
4002
 
 
4003
 
    def test_stacked_get_stream_groupcompress(self):
4004
 
        # Repository._get_source.get_stream() from a stacked repository with
4005
 
        # groupcompress sorting yields the full data from both stacked and
4006
 
        # stacked upon sources in groupcompress order.
4007
 
        raise tests.TestSkipped('No groupcompress ordered format available')
4008
 
        rev_ord, expected_revs = self.get_ordered_revs('dev5', 'groupcompress')
4009
 
        self.assertEqual(expected_revs, reversed(rev_ord))
4010
 
        # Getting unordered results should have made a streaming data request
4011
 
        # from the backing branch, and one from the stacked on branch.
4012
 
        self.assertLength(2, self.hpss_calls)
4013
 
 
4014
 
    def test_stacked_pull_more_than_stacking_has_bug_360791(self):
4015
 
        # When pulling some fixed amount of content that is more than the
4016
 
        # source has (because some is coming from a fallback branch, no error
4017
 
        # should be received. This was reported as bug 360791.
4018
 
        # Need three branches: a trunk, a stacked branch, and a preexisting
4019
 
        # branch pulling content from stacked and trunk.
4020
 
        self.setup_smart_server_with_call_log()
4021
 
        trunk = self.make_branch_and_tree('trunk', format="1.9-rich-root")
4022
 
        r1 = trunk.commit('start')
4023
 
        stacked_branch = trunk.branch.create_clone_on_transport(
4024
 
            self.get_transport('stacked'), stacked_on=trunk.branch.base)
4025
 
        local = self.make_branch('local', format='1.9-rich-root')
4026
 
        local.repository.fetch(stacked_branch.repository,
4027
 
            stacked_branch.last_revision())
4028
 
 
4029
 
 
4030
 
class TestRemoteBranchEffort(tests.TestCaseWithTransport):
4031
 
 
4032
 
    def setUp(self):
4033
 
        super(TestRemoteBranchEffort, self).setUp()
4034
 
        # Create a smart server that publishes whatever the backing VFS server
4035
 
        # does.
4036
 
        self.smart_server = test_server.SmartTCPServer_for_testing()
4037
 
        self.start_server(self.smart_server, self.get_server())
4038
 
        # Log all HPSS calls into self.hpss_calls.
4039
 
        _SmartClient.hooks.install_named_hook(
4040
 
            'call', self.capture_hpss_call, None)
4041
 
        self.hpss_calls = []
4042
 
 
4043
 
    def capture_hpss_call(self, params):
4044
 
        self.hpss_calls.append(params.method)
4045
 
 
4046
 
    def test_copy_content_into_avoids_revision_history(self):
4047
 
        local = self.make_branch('local')
4048
 
        builder = self.make_branch_builder('remote')
4049
 
        builder.build_commit(message="Commit.")
4050
 
        remote_branch_url = self.smart_server.get_url() + 'remote'
4051
 
        remote_branch = bzrdir.BzrDir.open(remote_branch_url).open_branch()
4052
 
        local.repository.fetch(remote_branch.repository)
4053
 
        self.hpss_calls = []
4054
 
        remote_branch.copy_content_into(local)
4055
 
        self.assertFalse('Branch.revision_history' in self.hpss_calls)
4056
 
 
4057
 
    def test_fetch_everything_needs_just_one_call(self):
4058
 
        local = self.make_branch('local')
4059
 
        builder = self.make_branch_builder('remote')
4060
 
        builder.build_commit(message="Commit.")
4061
 
        remote_branch_url = self.smart_server.get_url() + 'remote'
4062
 
        remote_branch = bzrdir.BzrDir.open(remote_branch_url).open_branch()
4063
 
        self.hpss_calls = []
4064
 
        local.repository.fetch(
4065
 
            remote_branch.repository,
4066
 
            fetch_spec=vf_search.EverythingResult(remote_branch.repository))
4067
 
        self.assertEqual(['Repository.get_stream_1.19'], self.hpss_calls)
4068
 
 
4069
 
    def override_verb(self, verb_name, verb):
4070
 
        request_handlers = request.request_handlers
4071
 
        orig_verb = request_handlers.get(verb_name)
4072
 
        orig_info = request_handlers.get_info(verb_name)
4073
 
        request_handlers.register(verb_name, verb, override_existing=True)
4074
 
        self.addCleanup(request_handlers.register, verb_name, orig_verb,
4075
 
                override_existing=True, info=orig_info)
4076
 
 
4077
 
    def test_fetch_everything_backwards_compat(self):
4078
 
        """Can fetch with EverythingResult even with pre 2.4 servers.
4079
 
        
4080
 
        Pre-2.4 do not support 'everything' searches with the
4081
 
        Repository.get_stream_1.19 verb.
4082
 
        """
4083
 
        verb_log = []
4084
 
        class OldGetStreamVerb(SmartServerRepositoryGetStream_1_19):
4085
 
            """A version of the Repository.get_stream_1.19 verb patched to
4086
 
            reject 'everything' searches the way 2.3 and earlier do.
4087
 
            """
4088
 
            def recreate_search(self, repository, search_bytes,
4089
 
                                discard_excess=False):
4090
 
                verb_log.append(search_bytes.split('\n', 1)[0])
4091
 
                if search_bytes == 'everything':
4092
 
                    return (None,
4093
 
                            request.FailedSmartServerResponse(('BadSearch',)))
4094
 
                return super(OldGetStreamVerb,
4095
 
                        self).recreate_search(repository, search_bytes,
4096
 
                            discard_excess=discard_excess)
4097
 
        self.override_verb('Repository.get_stream_1.19', OldGetStreamVerb)
4098
 
        local = self.make_branch('local')
4099
 
        builder = self.make_branch_builder('remote')
4100
 
        builder.build_commit(message="Commit.")
4101
 
        remote_branch_url = self.smart_server.get_url() + 'remote'
4102
 
        remote_branch = bzrdir.BzrDir.open(remote_branch_url).open_branch()
4103
 
        self.hpss_calls = []
4104
 
        local.repository.fetch(
4105
 
            remote_branch.repository,
4106
 
            fetch_spec=vf_search.EverythingResult(remote_branch.repository))
4107
 
        # make sure the overridden verb was used
4108
 
        self.assertLength(1, verb_log)
4109
 
        # more than one HPSS call is needed, but because it's a VFS callback
4110
 
        # its hard to predict exactly how many.
4111
 
        self.assertTrue(len(self.hpss_calls) > 1)
4112
 
 
4113
 
 
4114
 
class TestUpdateBoundBranchWithModifiedBoundLocation(
4115
 
    tests.TestCaseWithTransport):
4116
 
    """Ensure correct handling of bound_location modifications.
4117
 
 
4118
 
    This is tested against a smart server as http://pad.lv/786980 was about a
4119
 
    ReadOnlyError (write attempt during a read-only transaction) which can only
4120
 
    happen in this context.
4121
 
    """
4122
 
 
4123
 
    def setUp(self):
4124
 
        super(TestUpdateBoundBranchWithModifiedBoundLocation, self).setUp()
4125
 
        self.transport_server = test_server.SmartTCPServer_for_testing
4126
 
 
4127
 
    def make_master_and_checkout(self, master_name, checkout_name):
4128
 
        # Create the master branch and its associated checkout
4129
 
        self.master = self.make_branch_and_tree(master_name)
4130
 
        self.checkout = self.master.branch.create_checkout(checkout_name)
4131
 
        # Modify the master branch so there is something to update
4132
 
        self.master.commit('add stuff')
4133
 
        self.last_revid = self.master.commit('even more stuff')
4134
 
        self.bound_location = self.checkout.branch.get_bound_location()
4135
 
 
4136
 
    def assertUpdateSucceeds(self, new_location):
4137
 
        self.checkout.branch.set_bound_location(new_location)
4138
 
        self.checkout.update()
4139
 
        self.assertEquals(self.last_revid, self.checkout.last_revision())
4140
 
 
4141
 
    def test_without_final_slash(self):
4142
 
        self.make_master_and_checkout('master', 'checkout')
4143
 
        # For unclear reasons some users have a bound_location without a final
4144
 
        # '/', simulate that by forcing such a value
4145
 
        self.assertEndsWith(self.bound_location, '/')
4146
 
        self.assertUpdateSucceeds(self.bound_location.rstrip('/'))
4147
 
 
4148
 
    def test_plus_sign(self):
4149
 
        self.make_master_and_checkout('+master', 'checkout')
4150
 
        self.assertUpdateSucceeds(self.bound_location.replace('%2B', '+', 1))
4151
 
 
4152
 
    def test_tilda(self):
4153
 
        # Embed ~ in the middle of the path just to avoid any $HOME
4154
 
        # interpretation
4155
 
        self.make_master_and_checkout('mas~ter', 'checkout')
4156
 
        self.assertUpdateSucceeds(self.bound_location.replace('%2E', '~', 1))
4157
 
 
4158
 
 
4159
 
class TestWithCustomErrorHandler(RemoteBranchTestCase):
4160
 
 
4161
 
    def test_no_context(self):
4162
 
        class OutOfCoffee(errors.BzrError):
4163
 
            """A dummy exception for testing."""
4164
 
 
4165
 
            def __init__(self, urgency):
4166
 
                self.urgency = urgency
4167
 
        remote.no_context_error_translators.register("OutOfCoffee",
4168
 
            lambda err: OutOfCoffee(err.error_args[0]))
4169
 
        transport = MemoryTransport()
4170
 
        client = FakeClient(transport.base)
4171
 
        client.add_expected_call(
4172
 
            'Branch.get_stacked_on_url', ('quack/',),
4173
 
            'error', ('NotStacked',))
4174
 
        client.add_expected_call(
4175
 
            'Branch.last_revision_info',
4176
 
            ('quack/',),
4177
 
            'error', ('OutOfCoffee', 'low'))
4178
 
        transport.mkdir('quack')
4179
 
        transport = transport.clone('quack')
4180
 
        branch = self.make_remote_branch(transport, client)
4181
 
        self.assertRaises(OutOfCoffee, branch.last_revision_info)
4182
 
        self.assertFinished(client)
4183
 
 
4184
 
    def test_with_context(self):
4185
 
        class OutOfTea(errors.BzrError):
4186
 
            def __init__(self, branch, urgency):
4187
 
                self.branch = branch
4188
 
                self.urgency = urgency
4189
 
        remote.error_translators.register("OutOfTea",
4190
 
            lambda err, find, path: OutOfTea(err.error_args[0],
4191
 
                find("branch")))
4192
 
        transport = MemoryTransport()
4193
 
        client = FakeClient(transport.base)
4194
 
        client.add_expected_call(
4195
 
            'Branch.get_stacked_on_url', ('quack/',),
4196
 
            'error', ('NotStacked',))
4197
 
        client.add_expected_call(
4198
 
            'Branch.last_revision_info',
4199
 
            ('quack/',),
4200
 
            'error', ('OutOfTea', 'low'))
4201
 
        transport.mkdir('quack')
4202
 
        transport = transport.clone('quack')
4203
 
        branch = self.make_remote_branch(transport, client)
4204
 
        self.assertRaises(OutOfTea, branch.last_revision_info)
4205
 
        self.assertFinished(client)
4206
 
 
4207
 
 
4208
 
class TestRepositoryPack(TestRemoteRepository):
4209
 
 
4210
 
    def test_pack(self):
4211
 
        transport_path = 'quack'
4212
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
4213
 
        client.add_expected_call(
4214
 
            'Repository.lock_write', ('quack/', ''),
4215
 
            'success', ('ok', 'token'))
4216
 
        client.add_expected_call(
4217
 
            'Repository.pack', ('quack/', 'token', 'False'),
4218
 
            'success', ('ok',), )
4219
 
        client.add_expected_call(
4220
 
            'Repository.unlock', ('quack/', 'token'),
4221
 
            'success', ('ok', ))
4222
 
        repo.pack()
4223
 
 
4224
 
    def test_pack_with_hint(self):
4225
 
        transport_path = 'quack'
4226
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
4227
 
        client.add_expected_call(
4228
 
            'Repository.lock_write', ('quack/', ''),
4229
 
            'success', ('ok', 'token'))
4230
 
        client.add_expected_call(
4231
 
            'Repository.pack', ('quack/', 'token', 'False'),
4232
 
            'success', ('ok',), )
4233
 
        client.add_expected_call(
4234
 
            'Repository.unlock', ('quack/', 'token', 'False'),
4235
 
            'success', ('ok', ))
4236
 
        repo.pack(['hinta', 'hintb'])
4237
 
 
4238
 
 
4239
 
class TestRepositoryIterInventories(TestRemoteRepository):
4240
 
    """Test Repository.iter_inventories."""
4241
 
 
4242
 
    def _serialize_inv_delta(self, old_name, new_name, delta):
4243
 
        serializer = inventory_delta.InventoryDeltaSerializer(True, False)
4244
 
        return "".join(serializer.delta_to_lines(old_name, new_name, delta))
4245
 
 
4246
 
    def test_single_empty(self):
4247
 
        transport_path = 'quack'
4248
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
4249
 
        fmt = bzrdir.format_registry.get('2a')().repository_format
4250
 
        repo._format = fmt
4251
 
        stream = [('inventory-deltas', [
4252
 
            versionedfile.FulltextContentFactory('somerevid', None, None,
4253
 
                self._serialize_inv_delta('null:', 'somerevid', []))])]
4254
 
        client.add_expected_call(
4255
 
            'VersionedFileRepository.get_inventories', ('quack/', 'unordered'),
4256
 
            'success', ('ok', ),
4257
 
            _stream_to_byte_stream(stream, fmt))
4258
 
        ret = list(repo.iter_inventories(["somerevid"]))
4259
 
        self.assertLength(1, ret)
4260
 
        inv = ret[0]
4261
 
        self.assertEquals("somerevid", inv.revision_id)
4262
 
 
4263
 
    def test_empty(self):
4264
 
        transport_path = 'quack'
4265
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
4266
 
        ret = list(repo.iter_inventories([]))
4267
 
        self.assertEquals(ret, [])
4268
 
 
4269
 
    def test_missing(self):
4270
 
        transport_path = 'quack'
4271
 
        repo, client = self.setup_fake_client_and_repository(transport_path)
4272
 
        client.add_expected_call(
4273
 
            'VersionedFileRepository.get_inventories', ('quack/', 'unordered'),
4274
 
            'success', ('ok', ), iter([]))
4275
 
        self.assertRaises(errors.NoSuchRevision, list, repo.iter_inventories(
4276
 
            ["somerevid"]))