~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_smart.py

  • Committer: Johan Walles
  • Date: 2009-05-07 05:08:46 UTC
  • mfrom: (4342 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4343.
  • Revision ID: johan.walles@gmail.com-20090507050846-nkwvcyauf1eh653q
MergeĀ fromĀ upstream.

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
25
25
"""
26
26
 
27
27
import bz2
 
28
from cStringIO import StringIO
 
29
import tarfile
28
30
 
29
31
from bzrlib import (
30
 
    branch as _mod_branch,
31
32
    bzrdir,
32
33
    errors,
 
34
    pack,
 
35
    smart,
33
36
    tests,
34
 
    transport,
35
37
    urlutils,
36
 
    versionedfile,
37
 
    )
38
 
from bzrlib.smart import (
39
 
    branch as smart_branch,
40
 
    bzrdir as smart_dir,
41
 
    repository as smart_repo,
42
 
    packrepository as smart_packrepo,
43
 
    request as smart_req,
44
 
    server,
45
 
    vfs,
46
 
    )
47
 
from bzrlib.tests import test_server
48
 
from bzrlib.transport import (
49
 
    chroot,
50
 
    memory,
51
 
    )
 
38
    )
 
39
from bzrlib.branch import Branch, BranchReferenceFormat
 
40
import bzrlib.smart.branch
 
41
import bzrlib.smart.bzrdir, bzrlib.smart.bzrdir as smart_dir
 
42
import bzrlib.smart.packrepository
 
43
import bzrlib.smart.repository
 
44
from bzrlib.smart.request import (
 
45
    FailedSmartServerResponse,
 
46
    SmartServerRequest,
 
47
    SmartServerResponse,
 
48
    SuccessfulSmartServerResponse,
 
49
    )
 
50
from bzrlib.tests import (
 
51
    split_suite_by_re,
 
52
    )
 
53
from bzrlib.transport import chroot, get_transport
 
54
from bzrlib.util import bencode
52
55
 
53
56
 
54
57
def load_tests(standard_tests, module, loader):
55
58
    """Multiply tests version and protocol consistency."""
56
59
    # FindRepository tests.
 
60
    bzrdir_mod = bzrlib.smart.bzrdir
57
61
    scenarios = [
58
62
        ("find_repository", {
59
 
            "_request_class": smart_dir.SmartServerRequestFindRepositoryV1}),
 
63
            "_request_class":bzrdir_mod.SmartServerRequestFindRepositoryV1}),
60
64
        ("find_repositoryV2", {
61
 
            "_request_class": smart_dir.SmartServerRequestFindRepositoryV2}),
 
65
            "_request_class":bzrdir_mod.SmartServerRequestFindRepositoryV2}),
62
66
        ("find_repositoryV3", {
63
 
            "_request_class": smart_dir.SmartServerRequestFindRepositoryV3}),
 
67
            "_request_class":bzrdir_mod.SmartServerRequestFindRepositoryV3}),
64
68
        ]
65
 
    to_adapt, result = tests.split_suite_by_re(standard_tests,
 
69
    to_adapt, result = split_suite_by_re(standard_tests,
66
70
        "TestSmartServerRequestFindRepository")
67
 
    v2_only, v1_and_2 = tests.split_suite_by_re(to_adapt,
 
71
    v2_only, v1_and_2 = split_suite_by_re(to_adapt,
68
72
        "_v2")
69
73
    tests.multiply_tests(v1_and_2, scenarios, result)
70
74
    # The first scenario is only applicable to v1 protocols, it is deleted
76
80
class TestCaseWithChrootedTransport(tests.TestCaseWithTransport):
77
81
 
78
82
    def setUp(self):
79
 
        self.vfs_transport_factory = memory.MemoryServer
80
83
        tests.TestCaseWithTransport.setUp(self)
81
84
        self._chroot_server = None
82
85
 
84
87
        if self._chroot_server is None:
85
88
            backing_transport = tests.TestCaseWithTransport.get_transport(self)
86
89
            self._chroot_server = chroot.ChrootServer(backing_transport)
87
 
            self.start_server(self._chroot_server)
88
 
        t = transport.get_transport(self._chroot_server.get_url())
 
90
            self._chroot_server.setUp()
 
91
            self.addCleanup(self._chroot_server.tearDown)
 
92
        t = get_transport(self._chroot_server.get_url())
89
93
        if relpath is not None:
90
94
            t = t.clone(relpath)
91
95
        return t
92
96
 
93
97
 
94
 
class TestCaseWithSmartMedium(tests.TestCaseWithMemoryTransport):
 
98
class TestCaseWithSmartMedium(tests.TestCaseWithTransport):
95
99
 
96
100
    def setUp(self):
97
101
        super(TestCaseWithSmartMedium, self).setUp()
99
103
        # the default or a parameterized class, but rather use the
100
104
        # TestCaseWithTransport infrastructure to set up a smart server and
101
105
        # transport.
102
 
        self.overrideAttr(self, "transport_server", self.make_transport_server)
 
106
        self.transport_server = self.make_transport_server
103
107
 
104
108
    def make_transport_server(self):
105
 
        return test_server.SmartTCPServer_for_testing('-' + self.id())
 
109
        return smart.server.SmartTCPServer_for_testing('-' + self.id())
106
110
 
107
111
    def get_smart_medium(self):
108
112
        """Get a smart medium to use in tests."""
109
113
        return self.get_transport().get_smart_medium()
110
114
 
111
115
 
112
 
class TestByteStreamToStream(tests.TestCase):
113
 
 
114
 
    def test_repeated_substreams_same_kind_are_one_stream(self):
115
 
        # Make a stream - an iterable of bytestrings.
116
 
        stream = [('text', [versionedfile.FulltextContentFactory(('k1',), None,
117
 
            None, 'foo')]),('text', [
118
 
            versionedfile.FulltextContentFactory(('k2',), None, None, 'bar')])]
119
 
        fmt = bzrdir.format_registry.get('pack-0.92')().repository_format
120
 
        bytes = smart_repo._stream_to_byte_stream(stream, fmt)
121
 
        streams = []
122
 
        # Iterate the resulting iterable; checking that we get only one stream
123
 
        # out.
124
 
        fmt, stream = smart_repo._byte_stream_to_stream(bytes)
125
 
        for kind, substream in stream:
126
 
            streams.append((kind, list(substream)))
127
 
        self.assertLength(1, streams)
128
 
        self.assertLength(2, streams[0][1])
129
 
 
130
 
 
131
116
class TestSmartServerResponse(tests.TestCase):
132
117
 
133
118
    def test__eq__(self):
134
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', )),
135
 
            smart_req.SmartServerResponse(('ok', )))
136
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), 'body'),
137
 
            smart_req.SmartServerResponse(('ok', ), 'body'))
138
 
        self.assertNotEqual(smart_req.SmartServerResponse(('ok', )),
139
 
            smart_req.SmartServerResponse(('notok', )))
140
 
        self.assertNotEqual(smart_req.SmartServerResponse(('ok', ), 'body'),
141
 
            smart_req.SmartServerResponse(('ok', )))
 
119
        self.assertEqual(SmartServerResponse(('ok', )),
 
120
            SmartServerResponse(('ok', )))
 
121
        self.assertEqual(SmartServerResponse(('ok', ), 'body'),
 
122
            SmartServerResponse(('ok', ), 'body'))
 
123
        self.assertNotEqual(SmartServerResponse(('ok', )),
 
124
            SmartServerResponse(('notok', )))
 
125
        self.assertNotEqual(SmartServerResponse(('ok', ), 'body'),
 
126
            SmartServerResponse(('ok', )))
142
127
        self.assertNotEqual(None,
143
 
            smart_req.SmartServerResponse(('ok', )))
 
128
            SmartServerResponse(('ok', )))
144
129
 
145
130
    def test__str__(self):
146
131
        """SmartServerResponses can be stringified."""
147
132
        self.assertEqual(
148
133
            "<SuccessfulSmartServerResponse args=('args',) body='body'>",
149
 
            str(smart_req.SuccessfulSmartServerResponse(('args',), 'body')))
 
134
            str(SuccessfulSmartServerResponse(('args',), 'body')))
150
135
        self.assertEqual(
151
136
            "<FailedSmartServerResponse args=('args',) body='body'>",
152
 
            str(smart_req.FailedSmartServerResponse(('args',), 'body')))
 
137
            str(FailedSmartServerResponse(('args',), 'body')))
153
138
 
154
139
 
155
140
class TestSmartServerRequest(tests.TestCaseWithMemoryTransport):
156
141
 
157
142
    def test_translate_client_path(self):
158
143
        transport = self.get_transport()
159
 
        request = smart_req.SmartServerRequest(transport, 'foo/')
 
144
        request = SmartServerRequest(transport, 'foo/')
160
145
        self.assertEqual('./', request.translate_client_path('foo/'))
161
146
        self.assertRaises(
162
147
            errors.InvalidURLJoin, request.translate_client_path, 'foo/..')
165
150
        self.assertRaises(
166
151
            errors.PathNotChild, request.translate_client_path, 'bar/')
167
152
        self.assertEqual('./baz', request.translate_client_path('foo/baz'))
168
 
        e_acute = u'\N{LATIN SMALL LETTER E WITH ACUTE}'.encode('utf-8')
169
 
        self.assertEqual('./' + urlutils.escape(e_acute),
170
 
                         request.translate_client_path('foo/' + e_acute))
171
 
 
172
 
    def test_translate_client_path_vfs(self):
173
 
        """VfsRequests receive escaped paths rather than raw UTF-8."""
174
 
        transport = self.get_transport()
175
 
        request = vfs.VfsRequest(transport, 'foo/')
176
 
        e_acute = u'\N{LATIN SMALL LETTER E WITH ACUTE}'.encode('utf-8')
177
 
        escaped = urlutils.escape('foo/' + e_acute)
178
 
        self.assertEqual('./' + urlutils.escape(e_acute),
179
 
                         request.translate_client_path(escaped))
180
153
 
181
154
    def test_transport_from_client_path(self):
182
155
        transport = self.get_transport()
183
 
        request = smart_req.SmartServerRequest(transport, 'foo/')
 
156
        request = SmartServerRequest(transport, 'foo/')
184
157
        self.assertEqual(
185
158
            transport.base,
186
159
            request.transport_from_client_path('foo/').base)
197
170
        local_result = dir.cloning_metadir()
198
171
        request_class = smart_dir.SmartServerBzrDirRequestCloningMetaDir
199
172
        request = request_class(backing)
200
 
        expected = smart_req.SuccessfulSmartServerResponse(
 
173
        expected = SuccessfulSmartServerResponse(
201
174
            (local_result.network_name(),
202
175
            local_result.repository_format.network_name(),
203
176
            ('branch', local_result.get_branch_format().network_name())))
209
182
        referenced_branch = self.make_branch('referenced')
210
183
        dir = self.make_bzrdir('.')
211
184
        local_result = dir.cloning_metadir()
212
 
        reference = _mod_branch.BranchReferenceFormat().initialize(
213
 
            dir, target_branch=referenced_branch)
214
 
        reference_url = _mod_branch.BranchReferenceFormat().get_reference(dir)
 
185
        reference = BranchReferenceFormat().initialize(dir, referenced_branch)
 
186
        reference_url = BranchReferenceFormat().get_reference(dir)
215
187
        # The server shouldn't try to follow the branch reference, so it's fine
216
188
        # if the referenced branch isn't reachable.
217
189
        backing.rename('referenced', 'moved')
218
190
        request_class = smart_dir.SmartServerBzrDirRequestCloningMetaDir
219
191
        request = request_class(backing)
220
 
        expected = smart_req.FailedSmartServerResponse(('BranchReference',))
 
192
        expected = FailedSmartServerResponse(('BranchReference',))
221
193
        self.assertEqual(expected, request.execute('', 'False'))
222
194
 
223
195
 
228
200
        """When there is a bzrdir present, the call succeeds."""
229
201
        backing = self.get_transport()
230
202
        self.make_bzrdir('.')
231
 
        request_class = smart_dir.SmartServerRequestCreateRepository
 
203
        request_class = bzrlib.smart.bzrdir.SmartServerRequestCreateRepository
232
204
        request = request_class(backing)
233
 
        reference_bzrdir_format = bzrdir.format_registry.get('pack-0.92')()
 
205
        reference_bzrdir_format = bzrdir.format_registry.get('default')()
234
206
        reference_format = reference_bzrdir_format.repository_format
235
207
        network_name = reference_format.network_name()
236
 
        expected = smart_req.SuccessfulSmartServerResponse(
 
208
        expected = SuccessfulSmartServerResponse(
237
209
            ('ok', 'no', 'no', 'no', network_name))
238
210
        self.assertEqual(expected, request.execute('', network_name, 'True'))
239
211
 
246
218
        backing = self.get_transport()
247
219
        request = self._request_class(backing)
248
220
        self.make_bzrdir('.')
249
 
        self.assertEqual(smart_req.SmartServerResponse(('norepository', )),
 
221
        self.assertEqual(SmartServerResponse(('norepository', )),
250
222
            request.execute(''))
251
223
 
252
224
    def test_nonshared_repository(self):
258
230
        result = self._make_repository_and_result()
259
231
        self.assertEqual(result, request.execute(''))
260
232
        self.make_bzrdir('subdir')
261
 
        self.assertEqual(smart_req.SmartServerResponse(('norepository', )),
 
233
        self.assertEqual(SmartServerResponse(('norepository', )),
262
234
            request.execute('subdir'))
263
235
 
264
236
    def _make_repository_and_result(self, shared=False, format=None):
275
247
            subtrees = 'yes'
276
248
        else:
277
249
            subtrees = 'no'
278
 
        if repo._format.supports_external_lookups:
279
 
            external = 'yes'
280
 
        else:
281
 
            external = 'no'
282
 
        if (smart_dir.SmartServerRequestFindRepositoryV3 ==
 
250
        if (smart.bzrdir.SmartServerRequestFindRepositoryV3 ==
283
251
            self._request_class):
284
 
            return smart_req.SuccessfulSmartServerResponse(
285
 
                ('ok', '', rich_root, subtrees, external,
 
252
            return SuccessfulSmartServerResponse(
 
253
                ('ok', '', rich_root, subtrees, 'no',
286
254
                 repo._format.network_name()))
287
 
        elif (smart_dir.SmartServerRequestFindRepositoryV2 ==
 
255
        elif (smart.bzrdir.SmartServerRequestFindRepositoryV2 ==
288
256
            self._request_class):
289
257
            # All tests so far are on formats, and for non-external
290
258
            # repositories.
291
 
            return smart_req.SuccessfulSmartServerResponse(
292
 
                ('ok', '', rich_root, subtrees, external))
 
259
            return SuccessfulSmartServerResponse(
 
260
                ('ok', '', rich_root, subtrees, 'no'))
293
261
        else:
294
 
            return smart_req.SuccessfulSmartServerResponse(
295
 
                ('ok', '', rich_root, subtrees))
 
262
            return SuccessfulSmartServerResponse(('ok', '', rich_root, subtrees))
296
263
 
297
264
    def test_shared_repository(self):
298
265
        """When there is a shared repository, we get 'ok', 'relpath-to-repo'."""
301
268
        result = self._make_repository_and_result(shared=True)
302
269
        self.assertEqual(result, request.execute(''))
303
270
        self.make_bzrdir('subdir')
304
 
        result2 = smart_req.SmartServerResponse(
305
 
            result.args[0:1] + ('..', ) + result.args[2:])
 
271
        result2 = SmartServerResponse(result.args[0:1] + ('..', ) + result.args[2:])
306
272
        self.assertEqual(result2,
307
273
            request.execute('subdir'))
308
274
        self.make_bzrdir('subdir/deeper')
309
 
        result3 = smart_req.SmartServerResponse(
310
 
            result.args[0:1] + ('../..', ) + result.args[2:])
 
275
        result3 = SmartServerResponse(result.args[0:1] + ('../..', ) + result.args[2:])
311
276
        self.assertEqual(result3,
312
277
            request.execute('subdir/deeper'))
313
278
 
315
280
        """Test for the format attributes for rich root and subtree support."""
316
281
        backing = self.get_transport()
317
282
        request = self._request_class(backing)
318
 
        result = self._make_repository_and_result(
319
 
            format='dirstate-with-subtree')
 
283
        result = self._make_repository_and_result(format='dirstate-with-subtree')
320
284
        # check the test will be valid
321
285
        self.assertEqual('yes', result.args[2])
322
286
        self.assertEqual('yes', result.args[3])
326
290
        """Test for the supports_external_lookups attribute."""
327
291
        backing = self.get_transport()
328
292
        request = self._request_class(backing)
329
 
        result = self._make_repository_and_result(
330
 
            format='dirstate-with-subtree')
 
293
        result = self._make_repository_and_result(format='dirstate-with-subtree')
331
294
        # check the test will be valid
332
295
        self.assertEqual('no', result.args[4])
333
296
        self.assertEqual(result, request.execute(''))
344
307
        local_result = dir._get_config()._get_config_file().read()
345
308
        request_class = smart_dir.SmartServerBzrDirRequestConfigFile
346
309
        request = request_class(backing)
347
 
        expected = smart_req.SuccessfulSmartServerResponse((), local_result)
 
310
        expected = SuccessfulSmartServerResponse((), local_result)
348
311
        self.assertEqual(expected, request.execute(''))
349
312
 
350
313
    def test_missing(self):
352
315
        dir = self.make_bzrdir('.')
353
316
        request_class = smart_dir.SmartServerBzrDirRequestConfigFile
354
317
        request = request_class(backing)
355
 
        expected = smart_req.SuccessfulSmartServerResponse((), '')
 
318
        expected = SuccessfulSmartServerResponse((), '')
356
319
        self.assertEqual(expected, request.execute(''))
357
320
 
358
321
 
361
324
    def test_empty_dir(self):
362
325
        """Initializing an empty dir should succeed and do it."""
363
326
        backing = self.get_transport()
364
 
        request = smart_dir.SmartServerRequestInitializeBzrDir(backing)
365
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', )),
 
327
        request = smart.bzrdir.SmartServerRequestInitializeBzrDir(backing)
 
328
        self.assertEqual(SmartServerResponse(('ok', )),
366
329
            request.execute(''))
367
330
        made_dir = bzrdir.BzrDir.open_from_transport(backing)
368
331
        # no branch, tree or repository is expected with the current
374
337
    def test_missing_dir(self):
375
338
        """Initializing a missing directory should fail like the bzrdir api."""
376
339
        backing = self.get_transport()
377
 
        request = smart_dir.SmartServerRequestInitializeBzrDir(backing)
 
340
        request = smart.bzrdir.SmartServerRequestInitializeBzrDir(backing)
378
341
        self.assertRaises(errors.NoSuchFile,
379
342
            request.execute, 'subdir')
380
343
 
381
344
    def test_initialized_dir(self):
382
345
        """Initializing an extant bzrdir should fail like the bzrdir api."""
383
346
        backing = self.get_transport()
384
 
        request = smart_dir.SmartServerRequestInitializeBzrDir(backing)
 
347
        request = smart.bzrdir.SmartServerRequestInitializeBzrDir(backing)
385
348
        self.make_bzrdir('subdir')
386
349
        self.assertRaises(errors.FileExists,
387
350
            request.execute, 'subdir')
388
351
 
389
352
 
390
 
class TestSmartServerRequestBzrDirInitializeEx(
391
 
    tests.TestCaseWithMemoryTransport):
392
 
    """Basic tests for BzrDir.initialize_ex_1.16 in the smart server.
 
353
class TestSmartServerRequestBzrDirInitializeEx(tests.TestCaseWithMemoryTransport):
 
354
    """Basic tests for BzrDir.initialize_ex in the smart server.
393
355
 
394
356
    The main unit tests in test_bzrdir exercise the API comprehensively.
395
357
    """
398
360
        """Initializing an empty dir should succeed and do it."""
399
361
        backing = self.get_transport()
400
362
        name = self.make_bzrdir('reference')._format.network_name()
401
 
        request = smart_dir.SmartServerRequestBzrDirInitializeEx(backing)
402
 
        self.assertEqual(
403
 
            smart_req.SmartServerResponse(('', '', '', '', '', '', name,
404
 
                                           'False', '', '', '')),
 
363
        request = smart.bzrdir.SmartServerRequestBzrDirInitializeEx(backing)
 
364
        self.assertEqual(SmartServerResponse(('', '', '', '', '', '', name,
 
365
            'False', '', '', '')),
405
366
            request.execute(name, '', 'True', 'False', 'False', '', '', '', '',
406
 
                            'False'))
 
367
            'False'))
407
368
        made_dir = bzrdir.BzrDir.open_from_transport(backing)
408
369
        # no branch, tree or repository is expected with the current
409
370
        # default format.
415
376
        """Initializing a missing directory should fail like the bzrdir api."""
416
377
        backing = self.get_transport()
417
378
        name = self.make_bzrdir('reference')._format.network_name()
418
 
        request = smart_dir.SmartServerRequestBzrDirInitializeEx(backing)
 
379
        request = smart.bzrdir.SmartServerRequestBzrDirInitializeEx(backing)
419
380
        self.assertRaises(errors.NoSuchFile, request.execute, name,
420
381
            'subdir/dir', 'False', 'False', 'False', '', '', '', '', 'False')
421
382
 
422
383
    def test_initialized_dir(self):
423
 
        """Initializing an extant directory should fail like the bzrdir api."""
 
384
        """Initializing an extant dirctory should fail like the bzrdir api."""
424
385
        backing = self.get_transport()
425
386
        name = self.make_bzrdir('reference')._format.network_name()
426
 
        request = smart_dir.SmartServerRequestBzrDirInitializeEx(backing)
 
387
        request = smart.bzrdir.SmartServerRequestBzrDirInitializeEx(backing)
427
388
        self.make_bzrdir('subdir')
428
389
        self.assertRaises(errors.FileExists, request.execute, name, 'subdir',
429
390
            'False', 'False', 'False', '', '', '', '', 'False')
430
391
 
431
392
 
432
 
class TestSmartServerRequestOpenBzrDir(tests.TestCaseWithMemoryTransport):
433
 
 
434
 
    def test_no_directory(self):
435
 
        backing = self.get_transport()
436
 
        request = smart_dir.SmartServerRequestOpenBzrDir(backing)
437
 
        self.assertEqual(smart_req.SmartServerResponse(('no', )),
438
 
            request.execute('does-not-exist'))
439
 
 
440
 
    def test_empty_directory(self):
441
 
        backing = self.get_transport()
442
 
        backing.mkdir('empty')
443
 
        request = smart_dir.SmartServerRequestOpenBzrDir(backing)
444
 
        self.assertEqual(smart_req.SmartServerResponse(('no', )),
445
 
            request.execute('empty'))
446
 
 
447
 
    def test_outside_root_client_path(self):
448
 
        backing = self.get_transport()
449
 
        request = smart_dir.SmartServerRequestOpenBzrDir(backing,
450
 
            root_client_path='root')
451
 
        self.assertEqual(smart_req.SmartServerResponse(('no', )),
452
 
            request.execute('not-root'))
453
 
 
454
 
 
455
 
class TestSmartServerRequestOpenBzrDir_2_1(tests.TestCaseWithMemoryTransport):
456
 
 
457
 
    def test_no_directory(self):
458
 
        backing = self.get_transport()
459
 
        request = smart_dir.SmartServerRequestOpenBzrDir_2_1(backing)
460
 
        self.assertEqual(smart_req.SmartServerResponse(('no', )),
461
 
            request.execute('does-not-exist'))
462
 
 
463
 
    def test_empty_directory(self):
464
 
        backing = self.get_transport()
465
 
        backing.mkdir('empty')
466
 
        request = smart_dir.SmartServerRequestOpenBzrDir_2_1(backing)
467
 
        self.assertEqual(smart_req.SmartServerResponse(('no', )),
468
 
            request.execute('empty'))
469
 
 
470
 
    def test_present_without_workingtree(self):
471
 
        backing = self.get_transport()
472
 
        request = smart_dir.SmartServerRequestOpenBzrDir_2_1(backing)
473
 
        self.make_bzrdir('.')
474
 
        self.assertEqual(smart_req.SmartServerResponse(('yes', 'no')),
475
 
            request.execute(''))
476
 
 
477
 
    def test_outside_root_client_path(self):
478
 
        backing = self.get_transport()
479
 
        request = smart_dir.SmartServerRequestOpenBzrDir_2_1(backing,
480
 
            root_client_path='root')
481
 
        self.assertEqual(smart_req.SmartServerResponse(('no',)),
482
 
            request.execute('not-root'))
483
 
 
484
 
 
485
 
class TestSmartServerRequestOpenBzrDir_2_1_disk(TestCaseWithChrootedTransport):
486
 
 
487
 
    def test_present_with_workingtree(self):
488
 
        self.vfs_transport_factory = test_server.LocalURLServer
489
 
        backing = self.get_transport()
490
 
        request = smart_dir.SmartServerRequestOpenBzrDir_2_1(backing)
491
 
        bd = self.make_bzrdir('.')
492
 
        bd.create_repository()
493
 
        bd.create_branch()
494
 
        bd.create_workingtree()
495
 
        self.assertEqual(smart_req.SmartServerResponse(('yes', 'yes')),
496
 
            request.execute(''))
497
 
 
498
 
 
499
393
class TestSmartServerRequestOpenBranch(TestCaseWithChrootedTransport):
500
394
 
501
395
    def test_no_branch(self):
502
396
        """When there is no branch, ('nobranch', ) is returned."""
503
397
        backing = self.get_transport()
504
 
        request = smart_dir.SmartServerRequestOpenBranch(backing)
 
398
        request = smart.bzrdir.SmartServerRequestOpenBranch(backing)
505
399
        self.make_bzrdir('.')
506
 
        self.assertEqual(smart_req.SmartServerResponse(('nobranch', )),
 
400
        self.assertEqual(SmartServerResponse(('nobranch', )),
507
401
            request.execute(''))
508
402
 
509
403
    def test_branch(self):
510
404
        """When there is a branch, 'ok' is returned."""
511
405
        backing = self.get_transport()
512
 
        request = smart_dir.SmartServerRequestOpenBranch(backing)
 
406
        request = smart.bzrdir.SmartServerRequestOpenBranch(backing)
513
407
        self.make_branch('.')
514
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', '')),
 
408
        self.assertEqual(SmartServerResponse(('ok', '')),
515
409
            request.execute(''))
516
410
 
517
411
    def test_branch_reference(self):
518
412
        """When there is a branch reference, the reference URL is returned."""
519
 
        self.vfs_transport_factory = test_server.LocalURLServer
520
413
        backing = self.get_transport()
521
 
        request = smart_dir.SmartServerRequestOpenBranch(backing)
 
414
        request = smart.bzrdir.SmartServerRequestOpenBranch(backing)
522
415
        branch = self.make_branch('branch')
523
416
        checkout = branch.create_checkout('reference',lightweight=True)
524
 
        reference_url = _mod_branch.BranchReferenceFormat().get_reference(
525
 
            checkout.bzrdir)
 
417
        reference_url = BranchReferenceFormat().get_reference(checkout.bzrdir)
526
418
        self.assertFileEqual(reference_url, 'reference/.bzr/branch/location')
527
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', reference_url)),
 
419
        self.assertEqual(SmartServerResponse(('ok', reference_url)),
528
420
            request.execute('reference'))
529
421
 
530
 
    def test_notification_on_branch_from_repository(self):
531
 
        """When there is a repository, the error should return details."""
532
 
        backing = self.get_transport()
533
 
        request = smart_dir.SmartServerRequestOpenBranch(backing)
534
 
        repo = self.make_repository('.')
535
 
        self.assertEqual(smart_req.SmartServerResponse(('nobranch',)),
536
 
            request.execute(''))
537
 
 
538
422
 
539
423
class TestSmartServerRequestOpenBranchV2(TestCaseWithChrootedTransport):
540
424
 
542
426
        """When there is no branch, ('nobranch', ) is returned."""
543
427
        backing = self.get_transport()
544
428
        self.make_bzrdir('.')
545
 
        request = smart_dir.SmartServerRequestOpenBranchV2(backing)
546
 
        self.assertEqual(smart_req.SmartServerResponse(('nobranch', )),
547
 
            request.execute(''))
548
 
 
549
 
    def test_branch(self):
550
 
        """When there is a branch, 'ok' is returned."""
551
 
        backing = self.get_transport()
552
 
        expected = self.make_branch('.')._format.network_name()
553
 
        request = smart_dir.SmartServerRequestOpenBranchV2(backing)
554
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(
555
 
                ('branch', expected)),
556
 
                         request.execute(''))
557
 
 
558
 
    def test_branch_reference(self):
559
 
        """When there is a branch reference, the reference URL is returned."""
560
 
        self.vfs_transport_factory = test_server.LocalURLServer
561
 
        backing = self.get_transport()
562
 
        request = smart_dir.SmartServerRequestOpenBranchV2(backing)
563
 
        branch = self.make_branch('branch')
564
 
        checkout = branch.create_checkout('reference',lightweight=True)
565
 
        reference_url = _mod_branch.BranchReferenceFormat().get_reference(
566
 
            checkout.bzrdir)
567
 
        self.assertFileEqual(reference_url, 'reference/.bzr/branch/location')
568
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(
569
 
                ('ref', reference_url)),
570
 
                         request.execute('reference'))
571
 
 
572
 
    def test_stacked_branch(self):
573
 
        """Opening a stacked branch does not open the stacked-on branch."""
574
 
        trunk = self.make_branch('trunk')
575
 
        feature = self.make_branch('feature')
576
 
        feature.set_stacked_on_url(trunk.base)
577
 
        opened_branches = []
578
 
        _mod_branch.Branch.hooks.install_named_hook(
579
 
            'open', opened_branches.append, None)
580
 
        backing = self.get_transport()
581
 
        request = smart_dir.SmartServerRequestOpenBranchV2(backing)
582
 
        request.setup_jail()
583
 
        try:
584
 
            response = request.execute('feature')
585
 
        finally:
586
 
            request.teardown_jail()
587
 
        expected_format = feature._format.network_name()
588
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(
589
 
                ('branch', expected_format)),
590
 
                         response)
591
 
        self.assertLength(1, opened_branches)
592
 
 
593
 
    def test_notification_on_branch_from_repository(self):
594
 
        """When there is a repository, the error should return details."""
595
 
        backing = self.get_transport()
596
 
        request = smart_dir.SmartServerRequestOpenBranchV2(backing)
597
 
        repo = self.make_repository('.')
598
 
        self.assertEqual(smart_req.SmartServerResponse(('nobranch',)),
599
 
            request.execute(''))
600
 
 
601
 
 
602
 
class TestSmartServerRequestOpenBranchV3(TestCaseWithChrootedTransport):
603
 
 
604
 
    def test_no_branch(self):
605
 
        """When there is no branch, ('nobranch', ) is returned."""
606
 
        backing = self.get_transport()
607
 
        self.make_bzrdir('.')
608
 
        request = smart_dir.SmartServerRequestOpenBranchV3(backing)
609
 
        self.assertEqual(smart_req.SmartServerResponse(('nobranch',)),
610
 
            request.execute(''))
611
 
 
612
 
    def test_branch(self):
613
 
        """When there is a branch, 'ok' is returned."""
614
 
        backing = self.get_transport()
615
 
        expected = self.make_branch('.')._format.network_name()
616
 
        request = smart_dir.SmartServerRequestOpenBranchV3(backing)
617
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(
618
 
                ('branch', expected)),
619
 
                         request.execute(''))
620
 
 
621
 
    def test_branch_reference(self):
622
 
        """When there is a branch reference, the reference URL is returned."""
623
 
        self.vfs_transport_factory = test_server.LocalURLServer
624
 
        backing = self.get_transport()
625
 
        request = smart_dir.SmartServerRequestOpenBranchV3(backing)
626
 
        branch = self.make_branch('branch')
627
 
        checkout = branch.create_checkout('reference',lightweight=True)
628
 
        reference_url = _mod_branch.BranchReferenceFormat().get_reference(
629
 
            checkout.bzrdir)
630
 
        self.assertFileEqual(reference_url, 'reference/.bzr/branch/location')
631
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(
632
 
                ('ref', reference_url)),
633
 
                         request.execute('reference'))
634
 
 
635
 
    def test_stacked_branch(self):
636
 
        """Opening a stacked branch does not open the stacked-on branch."""
637
 
        trunk = self.make_branch('trunk')
638
 
        feature = self.make_branch('feature')
639
 
        feature.set_stacked_on_url(trunk.base)
640
 
        opened_branches = []
641
 
        _mod_branch.Branch.hooks.install_named_hook(
642
 
            'open', opened_branches.append, None)
643
 
        backing = self.get_transport()
644
 
        request = smart_dir.SmartServerRequestOpenBranchV3(backing)
645
 
        request.setup_jail()
646
 
        try:
647
 
            response = request.execute('feature')
648
 
        finally:
649
 
            request.teardown_jail()
650
 
        expected_format = feature._format.network_name()
651
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(
652
 
                ('branch', expected_format)),
653
 
                         response)
654
 
        self.assertLength(1, opened_branches)
655
 
 
656
 
    def test_notification_on_branch_from_repository(self):
657
 
        """When there is a repository, the error should return details."""
658
 
        backing = self.get_transport()
659
 
        request = smart_dir.SmartServerRequestOpenBranchV3(backing)
660
 
        repo = self.make_repository('.')
661
 
        self.assertEqual(smart_req.SmartServerResponse(
662
 
                ('nobranch', 'location is a repository')),
663
 
                         request.execute(''))
 
429
        request = smart.bzrdir.SmartServerRequestOpenBranchV2(backing)
 
430
        self.assertEqual(SmartServerResponse(('nobranch', )),
 
431
            request.execute(''))
 
432
 
 
433
    def test_branch(self):
 
434
        """When there is a branch, 'ok' is returned."""
 
435
        backing = self.get_transport()
 
436
        expected = self.make_branch('.')._format.network_name()
 
437
        request = smart.bzrdir.SmartServerRequestOpenBranchV2(backing)
 
438
        self.assertEqual(SuccessfulSmartServerResponse(('branch', expected)),
 
439
            request.execute(''))
 
440
 
 
441
    def test_branch_reference(self):
 
442
        """When there is a branch reference, the reference URL is returned."""
 
443
        backing = self.get_transport()
 
444
        request = smart.bzrdir.SmartServerRequestOpenBranchV2(backing)
 
445
        branch = self.make_branch('branch')
 
446
        checkout = branch.create_checkout('reference',lightweight=True)
 
447
        reference_url = BranchReferenceFormat().get_reference(checkout.bzrdir)
 
448
        self.assertFileEqual(reference_url, 'reference/.bzr/branch/location')
 
449
        self.assertEqual(SuccessfulSmartServerResponse(('ref', reference_url)),
 
450
            request.execute('reference'))
 
451
 
 
452
    def test_stacked_branch(self):
 
453
        """Opening a stacked branch does not open the stacked-on branch."""
 
454
        trunk = self.make_branch('trunk')
 
455
        feature = self.make_branch('feature', format='1.9')
 
456
        feature.set_stacked_on_url(trunk.base)
 
457
        opened_branches = []
 
458
        Branch.hooks.install_named_hook('open', opened_branches.append, None)
 
459
        backing = self.get_transport()
 
460
        request = smart.bzrdir.SmartServerRequestOpenBranchV2(backing)
 
461
        request.setup_jail()
 
462
        try:
 
463
            response = request.execute('feature')
 
464
        finally:
 
465
            request.teardown_jail()
 
466
        expected_format = feature._format.network_name()
 
467
        self.assertEqual(
 
468
            SuccessfulSmartServerResponse(('branch', expected_format)),
 
469
            response)
 
470
        self.assertLength(1, opened_branches)
664
471
 
665
472
 
666
473
class TestSmartServerRequestRevisionHistory(tests.TestCaseWithMemoryTransport):
668
475
    def test_empty(self):
669
476
        """For an empty branch, the body is empty."""
670
477
        backing = self.get_transport()
671
 
        request = smart_branch.SmartServerRequestRevisionHistory(backing)
 
478
        request = smart.branch.SmartServerRequestRevisionHistory(backing)
672
479
        self.make_branch('.')
673
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), ''),
 
480
        self.assertEqual(SmartServerResponse(('ok', ), ''),
674
481
            request.execute(''))
675
482
 
676
483
    def test_not_empty(self):
677
484
        """For a non-empty branch, the body is empty."""
678
485
        backing = self.get_transport()
679
 
        request = smart_branch.SmartServerRequestRevisionHistory(backing)
 
486
        request = smart.branch.SmartServerRequestRevisionHistory(backing)
680
487
        tree = self.make_branch_and_memory_tree('.')
681
488
        tree.lock_write()
682
489
        tree.add('')
684
491
        r2 = tree.commit('2nd commit', rev_id=u'\xc8'.encode('utf-8'))
685
492
        tree.unlock()
686
493
        self.assertEqual(
687
 
            smart_req.SmartServerResponse(('ok', ), ('\x00'.join([r1, r2]))),
 
494
            SmartServerResponse(('ok', ), ('\x00'.join([r1, r2]))),
688
495
            request.execute(''))
689
496
 
690
497
 
693
500
    def test_no_branch(self):
694
501
        """When there is a bzrdir and no branch, NotBranchError is raised."""
695
502
        backing = self.get_transport()
696
 
        request = smart_branch.SmartServerBranchRequest(backing)
 
503
        request = smart.branch.SmartServerBranchRequest(backing)
697
504
        self.make_bzrdir('.')
698
505
        self.assertRaises(errors.NotBranchError,
699
506
            request.execute, '')
701
508
    def test_branch_reference(self):
702
509
        """When there is a branch reference, NotBranchError is raised."""
703
510
        backing = self.get_transport()
704
 
        request = smart_branch.SmartServerBranchRequest(backing)
 
511
        request = smart.branch.SmartServerBranchRequest(backing)
705
512
        branch = self.make_branch('branch')
706
513
        checkout = branch.create_checkout('reference',lightweight=True)
707
514
        self.assertRaises(errors.NotBranchError,
708
515
            request.execute, 'checkout')
709
516
 
710
517
 
711
 
class TestSmartServerBranchRequestLastRevisionInfo(
712
 
    tests.TestCaseWithMemoryTransport):
 
518
class TestSmartServerBranchRequestLastRevisionInfo(tests.TestCaseWithMemoryTransport):
713
519
 
714
520
    def test_empty(self):
715
521
        """For an empty branch, the result is ('ok', '0', 'null:')."""
716
522
        backing = self.get_transport()
717
 
        request = smart_branch.SmartServerBranchRequestLastRevisionInfo(backing)
 
523
        request = smart.branch.SmartServerBranchRequestLastRevisionInfo(backing)
718
524
        self.make_branch('.')
719
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', '0', 'null:')),
 
525
        self.assertEqual(SmartServerResponse(('ok', '0', 'null:')),
720
526
            request.execute(''))
721
527
 
722
528
    def test_not_empty(self):
723
529
        """For a non-empty branch, the result is ('ok', 'revno', 'revid')."""
724
530
        backing = self.get_transport()
725
 
        request = smart_branch.SmartServerBranchRequestLastRevisionInfo(backing)
 
531
        request = smart.branch.SmartServerBranchRequestLastRevisionInfo(backing)
726
532
        tree = self.make_branch_and_memory_tree('.')
727
533
        tree.lock_write()
728
534
        tree.add('')
731
537
        r2 = tree.commit('2nd commit', rev_id=rev_id_utf8)
732
538
        tree.unlock()
733
539
        self.assertEqual(
734
 
            smart_req.SmartServerResponse(('ok', '2', rev_id_utf8)),
 
540
            SmartServerResponse(('ok', '2', rev_id_utf8)),
735
541
            request.execute(''))
736
542
 
737
543
 
738
 
class TestSmartServerBranchRequestGetConfigFile(
739
 
    tests.TestCaseWithMemoryTransport):
 
544
class TestSmartServerBranchRequestGetConfigFile(tests.TestCaseWithMemoryTransport):
740
545
 
741
546
    def test_default(self):
742
547
        """With no file, we get empty content."""
743
548
        backing = self.get_transport()
744
 
        request = smart_branch.SmartServerBranchGetConfigFile(backing)
 
549
        request = smart.branch.SmartServerBranchGetConfigFile(backing)
745
550
        branch = self.make_branch('.')
746
551
        # there should be no file by default
747
552
        content = ''
748
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), content),
 
553
        self.assertEqual(SmartServerResponse(('ok', ), content),
749
554
            request.execute(''))
750
555
 
751
556
    def test_with_content(self):
753
558
        # branch.control_files.get('branch.conf') for now - in the future it may
754
559
        # perform more complex processing.
755
560
        backing = self.get_transport()
756
 
        request = smart_branch.SmartServerBranchGetConfigFile(backing)
 
561
        request = smart.branch.SmartServerBranchGetConfigFile(backing)
757
562
        branch = self.make_branch('.')
758
563
        branch._transport.put_bytes('branch.conf', 'foo bar baz')
759
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), 'foo bar baz'),
 
564
        self.assertEqual(SmartServerResponse(('ok', ), 'foo bar baz'),
760
565
            request.execute(''))
761
566
 
762
567
 
763
568
class TestLockedBranch(tests.TestCaseWithMemoryTransport):
764
569
 
765
570
    def get_lock_tokens(self, branch):
766
 
        branch_token = branch.lock_write().branch_token
767
 
        repo_token = branch.repository.lock_write().repository_token
 
571
        branch_token = branch.lock_write()
 
572
        repo_token = branch.repository.lock_write()
768
573
        branch.repository.unlock()
769
574
        return branch_token, repo_token
770
575
 
773
578
 
774
579
    def test_value_name(self):
775
580
        branch = self.make_branch('.')
776
 
        request = smart_branch.SmartServerBranchRequestSetConfigOption(
 
581
        request = smart.branch.SmartServerBranchRequestSetConfigOption(
777
582
            branch.bzrdir.root_transport)
778
583
        branch_token, repo_token = self.get_lock_tokens(branch)
779
584
        config = branch._get_config()
780
585
        result = request.execute('', branch_token, repo_token, 'bar', 'foo',
781
586
            '')
782
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), result)
 
587
        self.assertEqual(SuccessfulSmartServerResponse(()), result)
783
588
        self.assertEqual('bar', config.get_option('foo'))
784
 
        # Cleanup
785
 
        branch.unlock()
786
589
 
787
590
    def test_value_name_section(self):
788
591
        branch = self.make_branch('.')
789
 
        request = smart_branch.SmartServerBranchRequestSetConfigOption(
 
592
        request = smart.branch.SmartServerBranchRequestSetConfigOption(
790
593
            branch.bzrdir.root_transport)
791
594
        branch_token, repo_token = self.get_lock_tokens(branch)
792
595
        config = branch._get_config()
793
596
        result = request.execute('', branch_token, repo_token, 'bar', 'foo',
794
597
            'gam')
795
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), result)
 
598
        self.assertEqual(SuccessfulSmartServerResponse(()), result)
796
599
        self.assertEqual('bar', config.get_option('foo', 'gam'))
797
 
        # Cleanup
798
 
        branch.unlock()
799
 
 
800
 
 
801
 
class TestSmartServerBranchRequestSetConfigOptionDict(TestLockedBranch):
802
 
 
803
 
    def setUp(self):
804
 
        TestLockedBranch.setUp(self)
805
 
        # A dict with non-ascii keys and values to exercise unicode
806
 
        # roundtripping.
807
 
        self.encoded_value_dict = (
808
 
            'd5:ascii1:a11:unicode \xe2\x8c\x9a3:\xe2\x80\xbde')
809
 
        self.value_dict = {
810
 
            'ascii': 'a', u'unicode \N{WATCH}': u'\N{INTERROBANG}'}
811
 
 
812
 
    def test_value_name(self):
813
 
        branch = self.make_branch('.')
814
 
        request = smart_branch.SmartServerBranchRequestSetConfigOptionDict(
815
 
            branch.bzrdir.root_transport)
816
 
        branch_token, repo_token = self.get_lock_tokens(branch)
817
 
        config = branch._get_config()
818
 
        result = request.execute('', branch_token, repo_token,
819
 
            self.encoded_value_dict, 'foo', '')
820
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), result)
821
 
        self.assertEqual(self.value_dict, config.get_option('foo'))
822
 
        # Cleanup
823
 
        branch.unlock()
824
 
 
825
 
    def test_value_name_section(self):
826
 
        branch = self.make_branch('.')
827
 
        request = smart_branch.SmartServerBranchRequestSetConfigOptionDict(
828
 
            branch.bzrdir.root_transport)
829
 
        branch_token, repo_token = self.get_lock_tokens(branch)
830
 
        config = branch._get_config()
831
 
        result = request.execute('', branch_token, repo_token,
832
 
            self.encoded_value_dict, 'foo', 'gam')
833
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), result)
834
 
        self.assertEqual(self.value_dict, config.get_option('foo', 'gam'))
835
 
        # Cleanup
836
 
        branch.unlock()
837
 
 
838
 
 
839
 
class TestSmartServerBranchRequestSetTagsBytes(TestLockedBranch):
840
 
    # Only called when the branch format and tags match [yay factory
841
 
    # methods] so only need to test straight forward cases.
842
 
 
843
 
    def test_set_bytes(self):
844
 
        base_branch = self.make_branch('base')
845
 
        tag_bytes = base_branch._get_tags_bytes()
846
 
        # get_lock_tokens takes out a lock.
847
 
        branch_token, repo_token = self.get_lock_tokens(base_branch)
848
 
        request = smart_branch.SmartServerBranchSetTagsBytes(
849
 
            self.get_transport())
850
 
        response = request.execute('base', branch_token, repo_token)
851
 
        self.assertEqual(None, response)
852
 
        response = request.do_chunk(tag_bytes)
853
 
        self.assertEqual(None, response)
854
 
        response = request.do_end()
855
 
        self.assertEquals(
856
 
            smart_req.SuccessfulSmartServerResponse(()), response)
857
 
        base_branch.unlock()
858
 
 
859
 
    def test_lock_failed(self):
860
 
        base_branch = self.make_branch('base')
861
 
        base_branch.lock_write()
862
 
        tag_bytes = base_branch._get_tags_bytes()
863
 
        request = smart_branch.SmartServerBranchSetTagsBytes(
864
 
            self.get_transport())
865
 
        self.assertRaises(errors.TokenMismatch, request.execute,
866
 
            'base', 'wrong token', 'wrong token')
867
 
        # The request handler will keep processing the message parts, so even
868
 
        # if the request fails immediately do_chunk and do_end are still
869
 
        # called.
870
 
        request.do_chunk(tag_bytes)
871
 
        request.do_end()
872
 
        base_branch.unlock()
873
 
 
874
600
 
875
601
 
876
602
class SetLastRevisionTestBase(TestLockedBranch):
897
623
 
898
624
    def assertRequestSucceeds(self, revision_id, revno):
899
625
        response = self.set_last_revision(revision_id, revno)
900
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(('ok',)),
901
 
                         response)
 
626
        self.assertEqual(SuccessfulSmartServerResponse(('ok',)), response)
902
627
 
903
628
 
904
629
class TestSetLastRevisionVerbMixin(object):
912
637
        """If the revision_id is not present, the verb returns NoSuchRevision.
913
638
        """
914
639
        revision_id = 'non-existent revision'
915
 
        self.assertEqual(smart_req.FailedSmartServerResponse(('NoSuchRevision',
916
 
                                                              revision_id)),
917
 
                         self.set_last_revision(revision_id, 1))
 
640
        self.assertEqual(
 
641
            FailedSmartServerResponse(('NoSuchRevision', revision_id)),
 
642
            self.set_last_revision(revision_id, 1))
918
643
 
919
644
    def make_tree_with_two_commits(self):
920
645
        self.tree.lock_write()
932
657
        # its repository.
933
658
        self.make_tree_with_two_commits()
934
659
        rev_id_utf8 = u'\xc8'.encode('utf-8')
935
 
        self.tree.branch.set_last_revision_info(0, 'null:')
 
660
        self.tree.branch.set_revision_history([])
936
661
        self.assertEqual(
937
662
            (0, 'null:'), self.tree.branch.last_revision_info())
938
663
        # We can update the branch to a revision that is present in the
960
685
        rejection_message = u'rejection message\N{INTERROBANG}'
961
686
        def hook_that_rejects(params):
962
687
            raise errors.TipChangeRejected(rejection_message)
963
 
        _mod_branch.Branch.hooks.install_named_hook(
 
688
        Branch.hooks.install_named_hook(
964
689
            'pre_change_branch_tip', hook_that_rejects, None)
965
690
        self.assertEqual(
966
 
            smart_req.FailedSmartServerResponse(
 
691
            FailedSmartServerResponse(
967
692
                ('TipChangeRejected', rejection_message.encode('utf-8'))),
968
693
            self.set_last_revision('null:', 0))
969
694
 
972
697
        SetLastRevisionTestBase, TestSetLastRevisionVerbMixin):
973
698
    """Tests for Branch.set_last_revision verb."""
974
699
 
975
 
    request_class = smart_branch.SmartServerBranchRequestSetLastRevision
 
700
    request_class = smart.branch.SmartServerBranchRequestSetLastRevision
976
701
 
977
702
    def _set_last_revision(self, revision_id, revno, branch_token, repo_token):
978
703
        return self.request.execute(
983
708
        SetLastRevisionTestBase, TestSetLastRevisionVerbMixin):
984
709
    """Tests for Branch.set_last_revision_info verb."""
985
710
 
986
 
    request_class = smart_branch.SmartServerBranchRequestSetLastRevisionInfo
 
711
    request_class = smart.branch.SmartServerBranchRequestSetLastRevisionInfo
987
712
 
988
713
    def _set_last_revision(self, revision_id, revno, branch_token, repo_token):
989
714
        return self.request.execute(
1000
725
        SetLastRevisionTestBase, TestSetLastRevisionVerbMixin):
1001
726
    """Tests for Branch.set_last_revision_ex verb."""
1002
727
 
1003
 
    request_class = smart_branch.SmartServerBranchRequestSetLastRevisionEx
 
728
    request_class = smart.branch.SmartServerBranchRequestSetLastRevisionEx
1004
729
 
1005
730
    def _set_last_revision(self, revision_id, revno, branch_token, repo_token):
1006
731
        return self.request.execute(
1009
734
    def assertRequestSucceeds(self, revision_id, revno):
1010
735
        response = self.set_last_revision(revision_id, revno)
1011
736
        self.assertEqual(
1012
 
            smart_req.SuccessfulSmartServerResponse(('ok', revno, revision_id)),
 
737
            SuccessfulSmartServerResponse(('ok', revno, revision_id)),
1013
738
            response)
1014
739
 
1015
740
    def test_branch_last_revision_info_rewind(self):
1026
751
        response = self.request.execute(
1027
752
            '', branch_token, repo_token, rev_id_utf8, 0, 0)
1028
753
        self.assertEqual(
1029
 
            smart_req.SuccessfulSmartServerResponse(('ok', 2, 'rev-2')),
 
754
            SuccessfulSmartServerResponse(('ok', 2, 'rev-2')),
1030
755
            response)
1031
756
        self.assertEqual(
1032
757
            (2, 'rev-2'), self.tree.branch.last_revision_info())
1036
761
        response = self.request.execute(
1037
762
            '', branch_token, repo_token, rev_id_utf8, 0, 1)
1038
763
        self.assertEqual(
1039
 
            smart_req.SuccessfulSmartServerResponse(('ok', 1, rev_id_utf8)),
 
764
            SuccessfulSmartServerResponse(('ok', 1, rev_id_utf8)),
1040
765
            response)
1041
766
        self.unlock_branch()
1042
767
        self.assertEqual(
1067
792
        """
1068
793
        self.make_branch_with_divergent_history()
1069
794
        self.assertEqual(
1070
 
            smart_req.FailedSmartServerResponse(('Diverged',)),
 
795
            FailedSmartServerResponse(('Diverged',)),
1071
796
            self.set_last_revision('child-1', 2))
1072
797
        # The branch tip was not changed.
1073
798
        self.assertEqual('child-2', self.tree.branch.last_revision())
1081
806
        response = self.request.execute(
1082
807
            '', branch_token, repo_token, 'child-1', 1, 0)
1083
808
        self.assertEqual(
1084
 
            smart_req.SuccessfulSmartServerResponse(('ok', 2, 'child-1')),
 
809
            SuccessfulSmartServerResponse(('ok', 2, 'child-1')),
1085
810
            response)
1086
811
        self.unlock_branch()
1087
812
        # The branch tip was changed.
1092
817
 
1093
818
    def test_get_parent_none(self):
1094
819
        base_branch = self.make_branch('base')
1095
 
        request = smart_branch.SmartServerBranchGetParent(self.get_transport())
 
820
        request = smart.branch.SmartServerBranchGetParent(self.get_transport())
1096
821
        response = request.execute('base')
1097
822
        self.assertEquals(
1098
 
            smart_req.SuccessfulSmartServerResponse(('',)), response)
 
823
            SuccessfulSmartServerResponse(('',)), response)
1099
824
 
1100
825
    def test_get_parent_something(self):
1101
826
        base_branch = self.make_branch('base')
1102
827
        base_branch.set_parent(self.get_url('foo'))
1103
 
        request = smart_branch.SmartServerBranchGetParent(self.get_transport())
 
828
        request = smart.branch.SmartServerBranchGetParent(self.get_transport())
1104
829
        response = request.execute('base')
1105
830
        self.assertEquals(
1106
 
            smart_req.SuccessfulSmartServerResponse(("../foo",)),
 
831
            SuccessfulSmartServerResponse(("../foo",)),
1107
832
            response)
1108
833
 
1109
834
 
1110
 
class TestSmartServerBranchRequestSetParent(TestLockedBranch):
 
835
class TestSmartServerBranchRequestSetParent(tests.TestCaseWithMemoryTransport):
1111
836
 
1112
837
    def test_set_parent_none(self):
1113
838
        branch = self.make_branch('base', format="1.9")
1114
839
        branch.lock_write()
1115
840
        branch._set_parent_location('foo')
1116
841
        branch.unlock()
1117
 
        request = smart_branch.SmartServerBranchRequestSetParentLocation(
 
842
        request = smart.branch.SmartServerBranchRequestSetParentLocation(
1118
843
            self.get_transport())
1119
 
        branch_token, repo_token = self.get_lock_tokens(branch)
 
844
        branch_token = branch.lock_write()
 
845
        repo_token = branch.repository.lock_write()
1120
846
        try:
1121
847
            response = request.execute('base', branch_token, repo_token, '')
1122
848
        finally:
 
849
            branch.repository.unlock()
1123
850
            branch.unlock()
1124
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), response)
 
851
        self.assertEqual(SuccessfulSmartServerResponse(()), response)
1125
852
        self.assertEqual(None, branch.get_parent())
1126
853
 
1127
854
    def test_set_parent_something(self):
1128
855
        branch = self.make_branch('base', format="1.9")
1129
 
        request = smart_branch.SmartServerBranchRequestSetParentLocation(
 
856
        request = smart.branch.SmartServerBranchRequestSetParentLocation(
1130
857
            self.get_transport())
1131
 
        branch_token, repo_token = self.get_lock_tokens(branch)
 
858
        branch_token = branch.lock_write()
 
859
        repo_token = branch.repository.lock_write()
1132
860
        try:
1133
861
            response = request.execute('base', branch_token, repo_token,
1134
862
            'http://bar/')
1135
863
        finally:
 
864
            branch.repository.unlock()
1136
865
            branch.unlock()
1137
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), response)
 
866
        self.assertEqual(SuccessfulSmartServerResponse(()), response)
1138
867
        self.assertEqual('http://bar/', branch.get_parent())
1139
868
 
1140
869
 
1141
 
class TestSmartServerBranchRequestGetTagsBytes(
1142
 
    tests.TestCaseWithMemoryTransport):
1143
 
    # Only called when the branch format and tags match [yay factory
1144
 
    # methods] so only need to test straight forward cases.
 
870
class TestSmartServerBranchRequestGetTagsBytes(tests.TestCaseWithMemoryTransport):
 
871
# Only called when the branch format and tags match [yay factory
 
872
# methods] so only need to test straight forward cases.
1145
873
 
1146
874
    def test_get_bytes(self):
1147
875
        base_branch = self.make_branch('base')
1148
 
        request = smart_branch.SmartServerBranchGetTagsBytes(
 
876
        request = smart.branch.SmartServerBranchGetTagsBytes(
1149
877
            self.get_transport())
1150
878
        response = request.execute('base')
1151
879
        self.assertEquals(
1152
 
            smart_req.SuccessfulSmartServerResponse(('',)), response)
 
880
            SuccessfulSmartServerResponse(('',)), response)
1153
881
 
1154
882
 
1155
883
class TestSmartServerBranchRequestGetStackedOnURL(tests.TestCaseWithMemoryTransport):
1159
887
        stacked_branch = self.make_branch('stacked', format='1.6')
1160
888
        # typically should be relative
1161
889
        stacked_branch.set_stacked_on_url('../base')
1162
 
        request = smart_branch.SmartServerBranchRequestGetStackedOnURL(
 
890
        request = smart.branch.SmartServerBranchRequestGetStackedOnURL(
1163
891
            self.get_transport())
1164
892
        response = request.execute('stacked')
1165
893
        self.assertEquals(
1166
 
            smart_req.SmartServerResponse(('ok', '../base')),
 
894
            SmartServerResponse(('ok', '../base')),
1167
895
            response)
1168
896
 
1169
897
 
1170
 
class TestSmartServerBranchRequestLockWrite(TestLockedBranch):
 
898
class TestSmartServerBranchRequestLockWrite(tests.TestCaseWithMemoryTransport):
1171
899
 
1172
900
    def setUp(self):
1173
901
        tests.TestCaseWithMemoryTransport.setUp(self)
1174
902
 
1175
903
    def test_lock_write_on_unlocked_branch(self):
1176
904
        backing = self.get_transport()
1177
 
        request = smart_branch.SmartServerBranchRequestLockWrite(backing)
 
905
        request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1178
906
        branch = self.make_branch('.', format='knit')
1179
907
        repository = branch.repository
1180
908
        response = request.execute('')
1181
909
        branch_nonce = branch.control_files._lock.peek().get('nonce')
1182
910
        repository_nonce = repository.control_files._lock.peek().get('nonce')
1183
 
        self.assertEqual(smart_req.SmartServerResponse(
1184
 
                ('ok', branch_nonce, repository_nonce)),
1185
 
                         response)
 
911
        self.assertEqual(
 
912
            SmartServerResponse(('ok', branch_nonce, repository_nonce)),
 
913
            response)
1186
914
        # The branch (and associated repository) is now locked.  Verify that
1187
915
        # with a new branch object.
1188
916
        new_branch = repository.bzrdir.open_branch()
1189
917
        self.assertRaises(errors.LockContention, new_branch.lock_write)
1190
 
        # Cleanup
1191
 
        request = smart_branch.SmartServerBranchRequestUnlock(backing)
1192
 
        response = request.execute('', branch_nonce, repository_nonce)
1193
918
 
1194
919
    def test_lock_write_on_locked_branch(self):
1195
920
        backing = self.get_transport()
1196
 
        request = smart_branch.SmartServerBranchRequestLockWrite(backing)
 
921
        request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1197
922
        branch = self.make_branch('.')
1198
 
        branch_token = branch.lock_write().branch_token
 
923
        branch.lock_write()
1199
924
        branch.leave_lock_in_place()
1200
925
        branch.unlock()
1201
926
        response = request.execute('')
1202
927
        self.assertEqual(
1203
 
            smart_req.SmartServerResponse(('LockContention',)), response)
1204
 
        # Cleanup
1205
 
        branch.lock_write(branch_token)
1206
 
        branch.dont_leave_lock_in_place()
1207
 
        branch.unlock()
 
928
            SmartServerResponse(('LockContention',)), response)
1208
929
 
1209
930
    def test_lock_write_with_tokens_on_locked_branch(self):
1210
931
        backing = self.get_transport()
1211
 
        request = smart_branch.SmartServerBranchRequestLockWrite(backing)
 
932
        request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1212
933
        branch = self.make_branch('.', format='knit')
1213
 
        branch_token, repo_token = self.get_lock_tokens(branch)
 
934
        branch_token = branch.lock_write()
 
935
        repo_token = branch.repository.lock_write()
 
936
        branch.repository.unlock()
1214
937
        branch.leave_lock_in_place()
1215
938
        branch.repository.leave_lock_in_place()
1216
939
        branch.unlock()
1217
940
        response = request.execute('',
1218
941
                                   branch_token, repo_token)
1219
942
        self.assertEqual(
1220
 
            smart_req.SmartServerResponse(('ok', branch_token, repo_token)),
1221
 
            response)
1222
 
        # Cleanup
1223
 
        branch.repository.lock_write(repo_token)
1224
 
        branch.repository.dont_leave_lock_in_place()
1225
 
        branch.repository.unlock()
1226
 
        branch.lock_write(branch_token)
1227
 
        branch.dont_leave_lock_in_place()
1228
 
        branch.unlock()
 
943
            SmartServerResponse(('ok', branch_token, repo_token)), response)
1229
944
 
1230
945
    def test_lock_write_with_mismatched_tokens_on_locked_branch(self):
1231
946
        backing = self.get_transport()
1232
 
        request = smart_branch.SmartServerBranchRequestLockWrite(backing)
 
947
        request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1233
948
        branch = self.make_branch('.', format='knit')
1234
 
        branch_token, repo_token = self.get_lock_tokens(branch)
 
949
        branch_token = branch.lock_write()
 
950
        repo_token = branch.repository.lock_write()
 
951
        branch.repository.unlock()
1235
952
        branch.leave_lock_in_place()
1236
953
        branch.repository.leave_lock_in_place()
1237
954
        branch.unlock()
1238
955
        response = request.execute('',
1239
956
                                   branch_token+'xxx', repo_token)
1240
957
        self.assertEqual(
1241
 
            smart_req.SmartServerResponse(('TokenMismatch',)), response)
1242
 
        # Cleanup
1243
 
        branch.repository.lock_write(repo_token)
1244
 
        branch.repository.dont_leave_lock_in_place()
1245
 
        branch.repository.unlock()
1246
 
        branch.lock_write(branch_token)
1247
 
        branch.dont_leave_lock_in_place()
1248
 
        branch.unlock()
 
958
            SmartServerResponse(('TokenMismatch',)), response)
1249
959
 
1250
960
    def test_lock_write_on_locked_repo(self):
1251
961
        backing = self.get_transport()
1252
 
        request = smart_branch.SmartServerBranchRequestLockWrite(backing)
 
962
        request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1253
963
        branch = self.make_branch('.', format='knit')
1254
 
        repo = branch.repository
1255
 
        repo_token = repo.lock_write().repository_token
1256
 
        repo.leave_lock_in_place()
1257
 
        repo.unlock()
 
964
        branch.repository.lock_write()
 
965
        branch.repository.leave_lock_in_place()
 
966
        branch.repository.unlock()
1258
967
        response = request.execute('')
1259
968
        self.assertEqual(
1260
 
            smart_req.SmartServerResponse(('LockContention',)), response)
1261
 
        # Cleanup
1262
 
        repo.lock_write(repo_token)
1263
 
        repo.dont_leave_lock_in_place()
1264
 
        repo.unlock()
 
969
            SmartServerResponse(('LockContention',)), response)
1265
970
 
1266
971
    def test_lock_write_on_readonly_transport(self):
1267
972
        backing = self.get_readonly_transport()
1268
 
        request = smart_branch.SmartServerBranchRequestLockWrite(backing)
 
973
        request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1269
974
        branch = self.make_branch('.')
1270
975
        root = self.get_transport().clone('/')
1271
976
        path = urlutils.relative_url(root.base, self.get_transport().base)
1275
980
        self.assertEqual('LockFailed', error_name)
1276
981
 
1277
982
 
1278
 
class TestSmartServerBranchRequestUnlock(TestLockedBranch):
 
983
class TestSmartServerBranchRequestUnlock(tests.TestCaseWithMemoryTransport):
1279
984
 
1280
985
    def setUp(self):
1281
986
        tests.TestCaseWithMemoryTransport.setUp(self)
1282
987
 
1283
988
    def test_unlock_on_locked_branch_and_repo(self):
1284
989
        backing = self.get_transport()
1285
 
        request = smart_branch.SmartServerBranchRequestUnlock(backing)
 
990
        request = smart.branch.SmartServerBranchRequestUnlock(backing)
1286
991
        branch = self.make_branch('.', format='knit')
1287
992
        # Lock the branch
1288
 
        branch_token, repo_token = self.get_lock_tokens(branch)
 
993
        branch_token = branch.lock_write()
 
994
        repo_token = branch.repository.lock_write()
 
995
        branch.repository.unlock()
1289
996
        # Unlock the branch (and repo) object, leaving the physical locks
1290
997
        # in place.
1291
998
        branch.leave_lock_in_place()
1294
1001
        response = request.execute('',
1295
1002
                                   branch_token, repo_token)
1296
1003
        self.assertEqual(
1297
 
            smart_req.SmartServerResponse(('ok',)), response)
 
1004
            SmartServerResponse(('ok',)), response)
1298
1005
        # The branch is now unlocked.  Verify that with a new branch
1299
1006
        # object.
1300
1007
        new_branch = branch.bzrdir.open_branch()
1303
1010
 
1304
1011
    def test_unlock_on_unlocked_branch_unlocked_repo(self):
1305
1012
        backing = self.get_transport()
1306
 
        request = smart_branch.SmartServerBranchRequestUnlock(backing)
 
1013
        request = smart.branch.SmartServerBranchRequestUnlock(backing)
1307
1014
        branch = self.make_branch('.', format='knit')
1308
1015
        response = request.execute(
1309
1016
            '', 'branch token', 'repo token')
1310
1017
        self.assertEqual(
1311
 
            smart_req.SmartServerResponse(('TokenMismatch',)), response)
 
1018
            SmartServerResponse(('TokenMismatch',)), response)
1312
1019
 
1313
1020
    def test_unlock_on_unlocked_branch_locked_repo(self):
1314
1021
        backing = self.get_transport()
1315
 
        request = smart_branch.SmartServerBranchRequestUnlock(backing)
 
1022
        request = smart.branch.SmartServerBranchRequestUnlock(backing)
1316
1023
        branch = self.make_branch('.', format='knit')
1317
1024
        # Lock the repository.
1318
 
        repo_token = branch.repository.lock_write().repository_token
 
1025
        repo_token = branch.repository.lock_write()
1319
1026
        branch.repository.leave_lock_in_place()
1320
1027
        branch.repository.unlock()
1321
1028
        # Issue branch lock_write request on the unlocked branch (with locked
1322
1029
        # repo).
1323
 
        response = request.execute('', 'branch token', repo_token)
 
1030
        response = request.execute(
 
1031
            '', 'branch token', repo_token)
1324
1032
        self.assertEqual(
1325
 
            smart_req.SmartServerResponse(('TokenMismatch',)), response)
1326
 
        # Cleanup
1327
 
        branch.repository.lock_write(repo_token)
1328
 
        branch.repository.dont_leave_lock_in_place()
1329
 
        branch.repository.unlock()
 
1033
            SmartServerResponse(('TokenMismatch',)), response)
1330
1034
 
1331
1035
 
1332
1036
class TestSmartServerRepositoryRequest(tests.TestCaseWithMemoryTransport):
1338
1042
        # its the exact path being looked at and the server is not
1339
1043
        # searching.
1340
1044
        backing = self.get_transport()
1341
 
        request = smart_repo.SmartServerRepositoryRequest(backing)
 
1045
        request = smart.repository.SmartServerRepositoryRequest(backing)
1342
1046
        self.make_repository('.', shared=True)
1343
1047
        self.make_bzrdir('subdir')
1344
1048
        self.assertRaises(errors.NoRepositoryPresent,
1350
1054
    def test_trivial_bzipped(self):
1351
1055
        # This tests that the wire encoding is actually bzipped
1352
1056
        backing = self.get_transport()
1353
 
        request = smart_repo.SmartServerRepositoryGetParentMap(backing)
 
1057
        request = smart.repository.SmartServerRepositoryGetParentMap(backing)
1354
1058
        tree = self.make_branch_and_memory_tree('.')
1355
1059
 
1356
1060
        self.assertEqual(None,
1357
1061
            request.execute('', 'missing-id'))
1358
1062
        # Note that it returns a body that is bzipped.
1359
1063
        self.assertEqual(
1360
 
            smart_req.SuccessfulSmartServerResponse(('ok', ), bz2.compress('')),
 
1064
            SuccessfulSmartServerResponse(('ok', ), bz2.compress('')),
1361
1065
            request.do_body('\n\n0\n'))
1362
1066
 
1363
1067
    def test_trivial_include_missing(self):
1364
1068
        backing = self.get_transport()
1365
 
        request = smart_repo.SmartServerRepositoryGetParentMap(backing)
 
1069
        request = smart.repository.SmartServerRepositoryGetParentMap(backing)
1366
1070
        tree = self.make_branch_and_memory_tree('.')
1367
1071
 
1368
1072
        self.assertEqual(None,
1369
1073
            request.execute('', 'missing-id', 'include-missing:'))
1370
1074
        self.assertEqual(
1371
 
            smart_req.SuccessfulSmartServerResponse(('ok', ),
 
1075
            SuccessfulSmartServerResponse(('ok', ),
1372
1076
                bz2.compress('missing:missing-id')),
1373
1077
            request.do_body('\n\n0\n'))
1374
1078
 
1375
1079
 
1376
 
class TestSmartServerRepositoryGetRevisionGraph(
1377
 
    tests.TestCaseWithMemoryTransport):
 
1080
class TestSmartServerRepositoryGetRevisionGraph(tests.TestCaseWithMemoryTransport):
1378
1081
 
1379
1082
    def test_none_argument(self):
1380
1083
        backing = self.get_transport()
1381
 
        request = smart_repo.SmartServerRepositoryGetRevisionGraph(backing)
 
1084
        request = smart.repository.SmartServerRepositoryGetRevisionGraph(backing)
1382
1085
        tree = self.make_branch_and_memory_tree('.')
1383
1086
        tree.lock_write()
1384
1087
        tree.add('')
1393
1096
        response.body = '\n'.join(sorted(response.body.split('\n')))
1394
1097
 
1395
1098
        self.assertEqual(
1396
 
            smart_req.SmartServerResponse(('ok', ), '\n'.join(lines)), response)
 
1099
            SmartServerResponse(('ok', ), '\n'.join(lines)), response)
1397
1100
 
1398
1101
    def test_specific_revision_argument(self):
1399
1102
        backing = self.get_transport()
1400
 
        request = smart_repo.SmartServerRepositoryGetRevisionGraph(backing)
 
1103
        request = smart.repository.SmartServerRepositoryGetRevisionGraph(backing)
1401
1104
        tree = self.make_branch_and_memory_tree('.')
1402
1105
        tree.lock_write()
1403
1106
        tree.add('')
1406
1109
        r2 = tree.commit('2nd commit', rev_id=u'\xc8'.encode('utf-8'))
1407
1110
        tree.unlock()
1408
1111
 
1409
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), rev_id_utf8),
 
1112
        self.assertEqual(SmartServerResponse(('ok', ), rev_id_utf8),
1410
1113
            request.execute('', rev_id_utf8))
1411
1114
 
1412
1115
    def test_no_such_revision(self):
1413
1116
        backing = self.get_transport()
1414
 
        request = smart_repo.SmartServerRepositoryGetRevisionGraph(backing)
 
1117
        request = smart.repository.SmartServerRepositoryGetRevisionGraph(backing)
1415
1118
        tree = self.make_branch_and_memory_tree('.')
1416
1119
        tree.lock_write()
1417
1120
        tree.add('')
1419
1122
        tree.unlock()
1420
1123
 
1421
1124
        # Note that it still returns body (of zero bytes).
1422
 
        self.assertEqual(smart_req.SmartServerResponse(
1423
 
                ('nosuchrevision', 'missingrevision', ), ''),
1424
 
                         request.execute('', 'missingrevision'))
1425
 
 
1426
 
 
1427
 
class TestSmartServerRepositoryGetRevIdForRevno(
1428
 
    tests.TestCaseWithMemoryTransport):
1429
 
 
1430
 
    def test_revno_found(self):
1431
 
        backing = self.get_transport()
1432
 
        request = smart_repo.SmartServerRepositoryGetRevIdForRevno(backing)
1433
 
        tree = self.make_branch_and_memory_tree('.')
1434
 
        tree.lock_write()
1435
 
        tree.add('')
1436
 
        rev1_id_utf8 = u'\xc8'.encode('utf-8')
1437
 
        rev2_id_utf8 = u'\xc9'.encode('utf-8')
1438
 
        tree.commit('1st commit', rev_id=rev1_id_utf8)
1439
 
        tree.commit('2nd commit', rev_id=rev2_id_utf8)
1440
 
        tree.unlock()
1441
 
 
1442
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', rev1_id_utf8)),
1443
 
            request.execute('', 1, (2, rev2_id_utf8)))
1444
 
 
1445
 
    def test_known_revid_missing(self):
1446
 
        backing = self.get_transport()
1447
 
        request = smart_repo.SmartServerRepositoryGetRevIdForRevno(backing)
1448
 
        repo = self.make_repository('.')
1449
 
        self.assertEqual(
1450
 
            smart_req.FailedSmartServerResponse(('nosuchrevision', 'ghost')),
1451
 
            request.execute('', 1, (2, 'ghost')))
1452
 
 
1453
 
    def test_history_incomplete(self):
1454
 
        backing = self.get_transport()
1455
 
        request = smart_repo.SmartServerRepositoryGetRevIdForRevno(backing)
1456
 
        parent = self.make_branch_and_memory_tree('parent', format='1.9')
1457
 
        parent.lock_write()
1458
 
        parent.add([''], ['TREE_ROOT'])
1459
 
        r1 = parent.commit(message='first commit')
1460
 
        r2 = parent.commit(message='second commit')
1461
 
        parent.unlock()
1462
 
        local = self.make_branch_and_memory_tree('local', format='1.9')
1463
 
        local.branch.pull(parent.branch)
1464
 
        local.set_parent_ids([r2])
1465
 
        r3 = local.commit(message='local commit')
1466
 
        local.branch.create_clone_on_transport(
1467
 
            self.get_transport('stacked'), stacked_on=self.get_url('parent'))
1468
 
        self.assertEqual(
1469
 
            smart_req.SmartServerResponse(('history-incomplete', 2, r2)),
1470
 
            request.execute('stacked', 1, (3, r3)))
1471
 
 
1472
 
 
1473
 
class GetStreamTestBase(tests.TestCaseWithMemoryTransport):
 
1125
        self.assertEqual(
 
1126
            SmartServerResponse(('nosuchrevision', 'missingrevision', ), ''),
 
1127
            request.execute('', 'missingrevision'))
 
1128
 
 
1129
 
 
1130
class TestSmartServerRepositoryGetStream(tests.TestCaseWithMemoryTransport):
1474
1131
 
1475
1132
    def make_two_commit_repo(self):
1476
1133
        tree = self.make_branch_and_memory_tree('.')
1482
1139
        repo = tree.branch.repository
1483
1140
        return repo, r1, r2
1484
1141
 
1485
 
 
1486
 
class TestSmartServerRepositoryGetStream(GetStreamTestBase):
1487
 
 
1488
1142
    def test_ancestry_of(self):
1489
1143
        """The search argument may be a 'ancestry-of' some heads'."""
1490
1144
        backing = self.get_transport()
1491
 
        request = smart_repo.SmartServerRepositoryGetStream(backing)
 
1145
        request = smart.repository.SmartServerRepositoryGetStream(backing)
1492
1146
        repo, r1, r2 = self.make_two_commit_repo()
1493
1147
        fetch_spec = ['ancestry-of', r2]
1494
1148
        lines = '\n'.join(fetch_spec)
1501
1155
    def test_search(self):
1502
1156
        """The search argument may be a 'search' of some explicit keys."""
1503
1157
        backing = self.get_transport()
1504
 
        request = smart_repo.SmartServerRepositoryGetStream(backing)
 
1158
        request = smart.repository.SmartServerRepositoryGetStream(backing)
1505
1159
        repo, r1, r2 = self.make_two_commit_repo()
1506
1160
        fetch_spec = ['search', '%s %s' % (r1, r2), 'null:', '2']
1507
1161
        lines = '\n'.join(fetch_spec)
1511
1165
        stream_bytes = ''.join(response.body_stream)
1512
1166
        self.assertStartsWith(stream_bytes, 'Bazaar pack format 1')
1513
1167
 
1514
 
    def test_search_everything(self):
1515
 
        """A search of 'everything' returns a stream."""
1516
 
        backing = self.get_transport()
1517
 
        request = smart_repo.SmartServerRepositoryGetStream_1_19(backing)
1518
 
        repo, r1, r2 = self.make_two_commit_repo()
1519
 
        serialised_fetch_spec = 'everything'
1520
 
        request.execute('', repo._format.network_name())
1521
 
        response = request.do_body(serialised_fetch_spec)
1522
 
        self.assertEqual(('ok',), response.args)
1523
 
        stream_bytes = ''.join(response.body_stream)
1524
 
        self.assertStartsWith(stream_bytes, 'Bazaar pack format 1')
1525
 
 
1526
1168
 
1527
1169
class TestSmartServerRequestHasRevision(tests.TestCaseWithMemoryTransport):
1528
1170
 
1529
1171
    def test_missing_revision(self):
1530
1172
        """For a missing revision, ('no', ) is returned."""
1531
1173
        backing = self.get_transport()
1532
 
        request = smart_repo.SmartServerRequestHasRevision(backing)
 
1174
        request = smart.repository.SmartServerRequestHasRevision(backing)
1533
1175
        self.make_repository('.')
1534
 
        self.assertEqual(smart_req.SmartServerResponse(('no', )),
 
1176
        self.assertEqual(SmartServerResponse(('no', )),
1535
1177
            request.execute('', 'revid'))
1536
1178
 
1537
1179
    def test_present_revision(self):
1538
1180
        """For a present revision, ('yes', ) is returned."""
1539
1181
        backing = self.get_transport()
1540
 
        request = smart_repo.SmartServerRequestHasRevision(backing)
 
1182
        request = smart.repository.SmartServerRequestHasRevision(backing)
1541
1183
        tree = self.make_branch_and_memory_tree('.')
1542
1184
        tree.lock_write()
1543
1185
        tree.add('')
1545
1187
        r1 = tree.commit('a commit', rev_id=rev_id_utf8)
1546
1188
        tree.unlock()
1547
1189
        self.assertTrue(tree.branch.repository.has_revision(rev_id_utf8))
1548
 
        self.assertEqual(smart_req.SmartServerResponse(('yes', )),
 
1190
        self.assertEqual(SmartServerResponse(('yes', )),
1549
1191
            request.execute('', rev_id_utf8))
1550
1192
 
1551
1193
 
1554
1196
    def test_empty_revid(self):
1555
1197
        """With an empty revid, we get only size an number and revisions"""
1556
1198
        backing = self.get_transport()
1557
 
        request = smart_repo.SmartServerRepositoryGatherStats(backing)
 
1199
        request = smart.repository.SmartServerRepositoryGatherStats(backing)
1558
1200
        repository = self.make_repository('.')
1559
1201
        stats = repository.gather_stats()
1560
1202
        expected_body = 'revisions: 0\n'
1561
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), expected_body),
 
1203
        self.assertEqual(SmartServerResponse(('ok', ), expected_body),
1562
1204
                         request.execute('', '', 'no'))
1563
1205
 
1564
1206
    def test_revid_with_committers(self):
1565
1207
        """For a revid we get more infos."""
1566
1208
        backing = self.get_transport()
1567
1209
        rev_id_utf8 = u'\xc8abc'.encode('utf-8')
1568
 
        request = smart_repo.SmartServerRepositoryGatherStats(backing)
 
1210
        request = smart.repository.SmartServerRepositoryGatherStats(backing)
1569
1211
        tree = self.make_branch_and_memory_tree('.')
1570
1212
        tree.lock_write()
1571
1213
        tree.add('')
1579
1221
        expected_body = ('firstrev: 123456.200 3600\n'
1580
1222
                         'latestrev: 654321.400 0\n'
1581
1223
                         'revisions: 2\n')
1582
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), expected_body),
 
1224
        self.assertEqual(SmartServerResponse(('ok', ), expected_body),
1583
1225
                         request.execute('',
1584
1226
                                         rev_id_utf8, 'no'))
1585
1227
 
1587
1229
        """For a revid and requesting committers we get the whole thing."""
1588
1230
        backing = self.get_transport()
1589
1231
        rev_id_utf8 = u'\xc8abc'.encode('utf-8')
1590
 
        request = smart_repo.SmartServerRepositoryGatherStats(backing)
 
1232
        request = smart.repository.SmartServerRepositoryGatherStats(backing)
1591
1233
        tree = self.make_branch_and_memory_tree('.')
1592
1234
        tree.lock_write()
1593
1235
        tree.add('')
1603
1245
                         'firstrev: 123456.200 3600\n'
1604
1246
                         'latestrev: 654321.400 0\n'
1605
1247
                         'revisions: 2\n')
1606
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), expected_body),
 
1248
        self.assertEqual(SmartServerResponse(('ok', ), expected_body),
1607
1249
                         request.execute('',
1608
1250
                                         rev_id_utf8, 'yes'))
1609
1251
 
1613
1255
    def test_is_shared(self):
1614
1256
        """For a shared repository, ('yes', ) is returned."""
1615
1257
        backing = self.get_transport()
1616
 
        request = smart_repo.SmartServerRepositoryIsShared(backing)
 
1258
        request = smart.repository.SmartServerRepositoryIsShared(backing)
1617
1259
        self.make_repository('.', shared=True)
1618
 
        self.assertEqual(smart_req.SmartServerResponse(('yes', )),
 
1260
        self.assertEqual(SmartServerResponse(('yes', )),
1619
1261
            request.execute('', ))
1620
1262
 
1621
1263
    def test_is_not_shared(self):
1622
1264
        """For a shared repository, ('no', ) is returned."""
1623
1265
        backing = self.get_transport()
1624
 
        request = smart_repo.SmartServerRepositoryIsShared(backing)
 
1266
        request = smart.repository.SmartServerRepositoryIsShared(backing)
1625
1267
        self.make_repository('.', shared=False)
1626
 
        self.assertEqual(smart_req.SmartServerResponse(('no', )),
 
1268
        self.assertEqual(SmartServerResponse(('no', )),
1627
1269
            request.execute('', ))
1628
1270
 
1629
1271
 
1631
1273
 
1632
1274
    def test_lock_write_on_unlocked_repo(self):
1633
1275
        backing = self.get_transport()
1634
 
        request = smart_repo.SmartServerRepositoryLockWrite(backing)
 
1276
        request = smart.repository.SmartServerRepositoryLockWrite(backing)
1635
1277
        repository = self.make_repository('.', format='knit')
1636
1278
        response = request.execute('')
1637
1279
        nonce = repository.control_files._lock.peek().get('nonce')
1638
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', nonce)), response)
 
1280
        self.assertEqual(SmartServerResponse(('ok', nonce)), response)
1639
1281
        # The repository is now locked.  Verify that with a new repository
1640
1282
        # object.
1641
1283
        new_repo = repository.bzrdir.open_repository()
1642
1284
        self.assertRaises(errors.LockContention, new_repo.lock_write)
1643
 
        # Cleanup
1644
 
        request = smart_repo.SmartServerRepositoryUnlock(backing)
1645
 
        response = request.execute('', nonce)
1646
1285
 
1647
1286
    def test_lock_write_on_locked_repo(self):
1648
1287
        backing = self.get_transport()
1649
 
        request = smart_repo.SmartServerRepositoryLockWrite(backing)
 
1288
        request = smart.repository.SmartServerRepositoryLockWrite(backing)
1650
1289
        repository = self.make_repository('.', format='knit')
1651
 
        repo_token = repository.lock_write().repository_token
 
1290
        repository.lock_write()
1652
1291
        repository.leave_lock_in_place()
1653
1292
        repository.unlock()
1654
1293
        response = request.execute('')
1655
1294
        self.assertEqual(
1656
 
            smart_req.SmartServerResponse(('LockContention',)), response)
1657
 
        # Cleanup
1658
 
        repository.lock_write(repo_token)
1659
 
        repository.dont_leave_lock_in_place()
1660
 
        repository.unlock()
 
1295
            SmartServerResponse(('LockContention',)), response)
1661
1296
 
1662
1297
    def test_lock_write_on_readonly_transport(self):
1663
1298
        backing = self.get_readonly_transport()
1664
 
        request = smart_repo.SmartServerRepositoryLockWrite(backing)
 
1299
        request = smart.repository.SmartServerRepositoryLockWrite(backing)
1665
1300
        repository = self.make_repository('.', format='knit')
1666
1301
        response = request.execute('')
1667
1302
        self.assertFalse(response.is_successful())
1671
1306
class TestInsertStreamBase(tests.TestCaseWithMemoryTransport):
1672
1307
 
1673
1308
    def make_empty_byte_stream(self, repo):
1674
 
        byte_stream = smart_repo._stream_to_byte_stream([], repo._format)
 
1309
        byte_stream = smart.repository._stream_to_byte_stream([], repo._format)
1675
1310
        return ''.join(byte_stream)
1676
1311
 
1677
1312
 
1679
1314
 
1680
1315
    def test_insert_stream_empty(self):
1681
1316
        backing = self.get_transport()
1682
 
        request = smart_repo.SmartServerRepositoryInsertStream(backing)
 
1317
        request = smart.repository.SmartServerRepositoryInsertStream(backing)
1683
1318
        repository = self.make_repository('.')
1684
1319
        response = request.execute('', '')
1685
1320
        self.assertEqual(None, response)
1686
1321
        response = request.do_chunk(self.make_empty_byte_stream(repository))
1687
1322
        self.assertEqual(None, response)
1688
1323
        response = request.do_end()
1689
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', )), response)
1690
 
 
 
1324
        self.assertEqual(SmartServerResponse(('ok', )), response)
 
1325
        
1691
1326
 
1692
1327
class TestSmartServerRepositoryInsertStreamLocked(TestInsertStreamBase):
1693
1328
 
1694
1329
    def test_insert_stream_empty(self):
1695
1330
        backing = self.get_transport()
1696
 
        request = smart_repo.SmartServerRepositoryInsertStreamLocked(
 
1331
        request = smart.repository.SmartServerRepositoryInsertStreamLocked(
1697
1332
            backing)
1698
1333
        repository = self.make_repository('.', format='knit')
1699
 
        lock_token = repository.lock_write().repository_token
 
1334
        lock_token = repository.lock_write()
1700
1335
        response = request.execute('', '', lock_token)
1701
1336
        self.assertEqual(None, response)
1702
1337
        response = request.do_chunk(self.make_empty_byte_stream(repository))
1703
1338
        self.assertEqual(None, response)
1704
1339
        response = request.do_end()
1705
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', )), response)
 
1340
        self.assertEqual(SmartServerResponse(('ok', )), response)
1706
1341
        repository.unlock()
1707
1342
 
1708
1343
    def test_insert_stream_with_wrong_lock_token(self):
1709
1344
        backing = self.get_transport()
1710
 
        request = smart_repo.SmartServerRepositoryInsertStreamLocked(
 
1345
        request = smart.repository.SmartServerRepositoryInsertStreamLocked(
1711
1346
            backing)
1712
1347
        repository = self.make_repository('.', format='knit')
1713
 
        lock_token = repository.lock_write().repository_token
 
1348
        lock_token = repository.lock_write()
1714
1349
        self.assertRaises(
1715
1350
            errors.TokenMismatch, request.execute, '', '', 'wrong-token')
1716
1351
        repository.unlock()
1723
1358
 
1724
1359
    def test_unlock_on_locked_repo(self):
1725
1360
        backing = self.get_transport()
1726
 
        request = smart_repo.SmartServerRepositoryUnlock(backing)
 
1361
        request = smart.repository.SmartServerRepositoryUnlock(backing)
1727
1362
        repository = self.make_repository('.', format='knit')
1728
 
        token = repository.lock_write().repository_token
 
1363
        token = repository.lock_write()
1729
1364
        repository.leave_lock_in_place()
1730
1365
        repository.unlock()
1731
1366
        response = request.execute('', token)
1732
1367
        self.assertEqual(
1733
 
            smart_req.SmartServerResponse(('ok',)), response)
 
1368
            SmartServerResponse(('ok',)), response)
1734
1369
        # The repository is now unlocked.  Verify that with a new repository
1735
1370
        # object.
1736
1371
        new_repo = repository.bzrdir.open_repository()
1739
1374
 
1740
1375
    def test_unlock_on_unlocked_repo(self):
1741
1376
        backing = self.get_transport()
1742
 
        request = smart_repo.SmartServerRepositoryUnlock(backing)
 
1377
        request = smart.repository.SmartServerRepositoryUnlock(backing)
1743
1378
        repository = self.make_repository('.', format='knit')
1744
1379
        response = request.execute('', 'some token')
1745
1380
        self.assertEqual(
1746
 
            smart_req.SmartServerResponse(('TokenMismatch',)), response)
 
1381
            SmartServerResponse(('TokenMismatch',)), response)
1747
1382
 
1748
1383
 
1749
1384
class TestSmartServerIsReadonly(tests.TestCaseWithMemoryTransport):
1750
1385
 
1751
1386
    def test_is_readonly_no(self):
1752
1387
        backing = self.get_transport()
1753
 
        request = smart_req.SmartServerIsReadonly(backing)
 
1388
        request = smart.request.SmartServerIsReadonly(backing)
1754
1389
        response = request.execute()
1755
1390
        self.assertEqual(
1756
 
            smart_req.SmartServerResponse(('no',)), response)
 
1391
            SmartServerResponse(('no',)), response)
1757
1392
 
1758
1393
    def test_is_readonly_yes(self):
1759
1394
        backing = self.get_readonly_transport()
1760
 
        request = smart_req.SmartServerIsReadonly(backing)
 
1395
        request = smart.request.SmartServerIsReadonly(backing)
1761
1396
        response = request.execute()
1762
1397
        self.assertEqual(
1763
 
            smart_req.SmartServerResponse(('yes',)), response)
1764
 
 
1765
 
 
1766
 
class TestSmartServerRepositorySetMakeWorkingTrees(
1767
 
    tests.TestCaseWithMemoryTransport):
 
1398
            SmartServerResponse(('yes',)), response)
 
1399
 
 
1400
 
 
1401
class TestSmartServerRepositorySetMakeWorkingTrees(tests.TestCaseWithMemoryTransport):
1768
1402
 
1769
1403
    def test_set_false(self):
1770
1404
        backing = self.get_transport()
1771
1405
        repo = self.make_repository('.', shared=True)
1772
1406
        repo.set_make_working_trees(True)
1773
 
        request_class = smart_repo.SmartServerRepositorySetMakeWorkingTrees
 
1407
        request_class = smart.repository.SmartServerRepositorySetMakeWorkingTrees
1774
1408
        request = request_class(backing)
1775
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(('ok',)),
 
1409
        self.assertEqual(SuccessfulSmartServerResponse(('ok',)),
1776
1410
            request.execute('', 'False'))
1777
1411
        repo = repo.bzrdir.open_repository()
1778
1412
        self.assertFalse(repo.make_working_trees())
1781
1415
        backing = self.get_transport()
1782
1416
        repo = self.make_repository('.', shared=True)
1783
1417
        repo.set_make_working_trees(False)
1784
 
        request_class = smart_repo.SmartServerRepositorySetMakeWorkingTrees
 
1418
        request_class = smart.repository.SmartServerRepositorySetMakeWorkingTrees
1785
1419
        request = request_class(backing)
1786
 
        self.assertEqual(smart_req.SuccessfulSmartServerResponse(('ok',)),
 
1420
        self.assertEqual(SuccessfulSmartServerResponse(('ok',)),
1787
1421
            request.execute('', 'True'))
1788
1422
        repo = repo.bzrdir.open_repository()
1789
1423
        self.assertTrue(repo.make_working_trees())
1808
1442
        repo.lock_write()
1809
1443
        self.addCleanup(repo.unlock)
1810
1444
        backing = self.get_transport()
1811
 
        request = smart_packrepo.SmartServerPackRepositoryAutopack(
 
1445
        request = smart.packrepository.SmartServerPackRepositoryAutopack(
1812
1446
            backing)
1813
1447
        response = request.execute('')
1814
 
        self.assertEqual(smart_req.SmartServerResponse(('ok',)), response)
 
1448
        self.assertEqual(SmartServerResponse(('ok',)), response)
1815
1449
        repo._pack_collection.reload_pack_names()
1816
1450
        self.assertEqual(1, len(repo._pack_collection.names()))
1817
1451
 
1823
1457
        for x in range(9):
1824
1458
            tree.commit('commit %s' % x)
1825
1459
        backing = self.get_transport()
1826
 
        request = smart_packrepo.SmartServerPackRepositoryAutopack(
 
1460
        request = smart.packrepository.SmartServerPackRepositoryAutopack(
1827
1461
            backing)
1828
1462
        response = request.execute('')
1829
 
        self.assertEqual(smart_req.SmartServerResponse(('ok',)), response)
 
1463
        self.assertEqual(SmartServerResponse(('ok',)), response)
1830
1464
        repo._pack_collection.reload_pack_names()
1831
1465
        self.assertEqual(9, len(repo._pack_collection.names()))
1832
1466
 
1834
1468
        """A request to autopack a non-pack repo is a no-op."""
1835
1469
        repo = self.make_repository('.', format='knit')
1836
1470
        backing = self.get_transport()
1837
 
        request = smart_packrepo.SmartServerPackRepositoryAutopack(
 
1471
        request = smart.packrepository.SmartServerPackRepositoryAutopack(
1838
1472
            backing)
1839
1473
        response = request.execute('')
1840
 
        self.assertEqual(smart_req.SmartServerResponse(('ok',)), response)
1841
 
 
1842
 
 
1843
 
class TestSmartServerVfsGet(tests.TestCaseWithMemoryTransport):
1844
 
 
1845
 
    def test_unicode_path(self):
1846
 
        """VFS requests expect unicode paths to be escaped."""
1847
 
        filename = u'foo\N{INTERROBANG}'
1848
 
        filename_escaped = urlutils.escape(filename)
1849
 
        backing = self.get_transport()
1850
 
        request = vfs.GetRequest(backing)
1851
 
        backing.put_bytes_non_atomic(filename_escaped, 'contents')
1852
 
        self.assertEqual(smart_req.SmartServerResponse(('ok', ), 'contents'),
1853
 
            request.execute(filename_escaped))
 
1474
        self.assertEqual(SmartServerResponse(('ok',)), response)
1854
1475
 
1855
1476
 
1856
1477
class TestHandlers(tests.TestCase):
1860
1481
        """All registered request_handlers can be found."""
1861
1482
        # If there's a typo in a register_lazy call, this loop will fail with
1862
1483
        # an AttributeError.
1863
 
        for key, item in smart_req.request_handlers.iteritems():
 
1484
        for key, item in smart.request.request_handlers.iteritems():
1864
1485
            pass
1865
1486
 
1866
1487
    def assertHandlerEqual(self, verb, handler):
1867
 
        self.assertEqual(smart_req.request_handlers.get(verb), handler)
 
1488
        self.assertEqual(smart.request.request_handlers.get(verb), handler)
1868
1489
 
1869
1490
    def test_registered_methods(self):
1870
1491
        """Test that known methods are registered to the correct object."""
1871
1492
        self.assertHandlerEqual('Branch.get_config_file',
1872
 
            smart_branch.SmartServerBranchGetConfigFile)
 
1493
            smart.branch.SmartServerBranchGetConfigFile)
1873
1494
        self.assertHandlerEqual('Branch.get_parent',
1874
 
            smart_branch.SmartServerBranchGetParent)
 
1495
            smart.branch.SmartServerBranchGetParent)
1875
1496
        self.assertHandlerEqual('Branch.get_tags_bytes',
1876
 
            smart_branch.SmartServerBranchGetTagsBytes)
 
1497
            smart.branch.SmartServerBranchGetTagsBytes)
1877
1498
        self.assertHandlerEqual('Branch.lock_write',
1878
 
            smart_branch.SmartServerBranchRequestLockWrite)
 
1499
            smart.branch.SmartServerBranchRequestLockWrite)
1879
1500
        self.assertHandlerEqual('Branch.last_revision_info',
1880
 
            smart_branch.SmartServerBranchRequestLastRevisionInfo)
 
1501
            smart.branch.SmartServerBranchRequestLastRevisionInfo)
1881
1502
        self.assertHandlerEqual('Branch.revision_history',
1882
 
            smart_branch.SmartServerRequestRevisionHistory)
 
1503
            smart.branch.SmartServerRequestRevisionHistory)
1883
1504
        self.assertHandlerEqual('Branch.set_config_option',
1884
 
            smart_branch.SmartServerBranchRequestSetConfigOption)
 
1505
            smart.branch.SmartServerBranchRequestSetConfigOption)
1885
1506
        self.assertHandlerEqual('Branch.set_last_revision',
1886
 
            smart_branch.SmartServerBranchRequestSetLastRevision)
 
1507
            smart.branch.SmartServerBranchRequestSetLastRevision)
1887
1508
        self.assertHandlerEqual('Branch.set_last_revision_info',
1888
 
            smart_branch.SmartServerBranchRequestSetLastRevisionInfo)
 
1509
            smart.branch.SmartServerBranchRequestSetLastRevisionInfo)
1889
1510
        self.assertHandlerEqual('Branch.set_last_revision_ex',
1890
 
            smart_branch.SmartServerBranchRequestSetLastRevisionEx)
 
1511
            smart.branch.SmartServerBranchRequestSetLastRevisionEx)
1891
1512
        self.assertHandlerEqual('Branch.set_parent_location',
1892
 
            smart_branch.SmartServerBranchRequestSetParentLocation)
 
1513
            smart.branch.SmartServerBranchRequestSetParentLocation)
1893
1514
        self.assertHandlerEqual('Branch.unlock',
1894
 
            smart_branch.SmartServerBranchRequestUnlock)
 
1515
            smart.branch.SmartServerBranchRequestUnlock)
1895
1516
        self.assertHandlerEqual('BzrDir.find_repository',
1896
 
            smart_dir.SmartServerRequestFindRepositoryV1)
 
1517
            smart.bzrdir.SmartServerRequestFindRepositoryV1)
1897
1518
        self.assertHandlerEqual('BzrDir.find_repositoryV2',
1898
 
            smart_dir.SmartServerRequestFindRepositoryV2)
 
1519
            smart.bzrdir.SmartServerRequestFindRepositoryV2)
1899
1520
        self.assertHandlerEqual('BzrDirFormat.initialize',
1900
 
            smart_dir.SmartServerRequestInitializeBzrDir)
1901
 
        self.assertHandlerEqual('BzrDirFormat.initialize_ex_1.16',
1902
 
            smart_dir.SmartServerRequestBzrDirInitializeEx)
 
1521
            smart.bzrdir.SmartServerRequestInitializeBzrDir)
 
1522
        self.assertHandlerEqual('BzrDirFormat.initialize_ex',
 
1523
            smart.bzrdir.SmartServerRequestBzrDirInitializeEx)
1903
1524
        self.assertHandlerEqual('BzrDir.cloning_metadir',
1904
 
            smart_dir.SmartServerBzrDirRequestCloningMetaDir)
 
1525
            smart.bzrdir.SmartServerBzrDirRequestCloningMetaDir)
1905
1526
        self.assertHandlerEqual('BzrDir.get_config_file',
1906
 
            smart_dir.SmartServerBzrDirRequestConfigFile)
 
1527
            smart.bzrdir.SmartServerBzrDirRequestConfigFile)
1907
1528
        self.assertHandlerEqual('BzrDir.open_branch',
1908
 
            smart_dir.SmartServerRequestOpenBranch)
 
1529
            smart.bzrdir.SmartServerRequestOpenBranch)
1909
1530
        self.assertHandlerEqual('BzrDir.open_branchV2',
1910
 
            smart_dir.SmartServerRequestOpenBranchV2)
1911
 
        self.assertHandlerEqual('BzrDir.open_branchV3',
1912
 
            smart_dir.SmartServerRequestOpenBranchV3)
 
1531
            smart.bzrdir.SmartServerRequestOpenBranchV2)
1913
1532
        self.assertHandlerEqual('PackRepository.autopack',
1914
 
            smart_packrepo.SmartServerPackRepositoryAutopack)
 
1533
            smart.packrepository.SmartServerPackRepositoryAutopack)
1915
1534
        self.assertHandlerEqual('Repository.gather_stats',
1916
 
            smart_repo.SmartServerRepositoryGatherStats)
 
1535
            smart.repository.SmartServerRepositoryGatherStats)
1917
1536
        self.assertHandlerEqual('Repository.get_parent_map',
1918
 
            smart_repo.SmartServerRepositoryGetParentMap)
1919
 
        self.assertHandlerEqual('Repository.get_rev_id_for_revno',
1920
 
            smart_repo.SmartServerRepositoryGetRevIdForRevno)
 
1537
            smart.repository.SmartServerRepositoryGetParentMap)
1921
1538
        self.assertHandlerEqual('Repository.get_revision_graph',
1922
 
            smart_repo.SmartServerRepositoryGetRevisionGraph)
 
1539
            smart.repository.SmartServerRepositoryGetRevisionGraph)
1923
1540
        self.assertHandlerEqual('Repository.get_stream',
1924
 
            smart_repo.SmartServerRepositoryGetStream)
1925
 
        self.assertHandlerEqual('Repository.get_stream_1.19',
1926
 
            smart_repo.SmartServerRepositoryGetStream_1_19)
 
1541
            smart.repository.SmartServerRepositoryGetStream)
1927
1542
        self.assertHandlerEqual('Repository.has_revision',
1928
 
            smart_repo.SmartServerRequestHasRevision)
 
1543
            smart.repository.SmartServerRequestHasRevision)
1929
1544
        self.assertHandlerEqual('Repository.insert_stream',
1930
 
            smart_repo.SmartServerRepositoryInsertStream)
 
1545
            smart.repository.SmartServerRepositoryInsertStream)
1931
1546
        self.assertHandlerEqual('Repository.insert_stream_locked',
1932
 
            smart_repo.SmartServerRepositoryInsertStreamLocked)
 
1547
            smart.repository.SmartServerRepositoryInsertStreamLocked)
1933
1548
        self.assertHandlerEqual('Repository.is_shared',
1934
 
            smart_repo.SmartServerRepositoryIsShared)
 
1549
            smart.repository.SmartServerRepositoryIsShared)
1935
1550
        self.assertHandlerEqual('Repository.lock_write',
1936
 
            smart_repo.SmartServerRepositoryLockWrite)
 
1551
            smart.repository.SmartServerRepositoryLockWrite)
1937
1552
        self.assertHandlerEqual('Repository.tarball',
1938
 
            smart_repo.SmartServerRepositoryTarball)
 
1553
            smart.repository.SmartServerRepositoryTarball)
1939
1554
        self.assertHandlerEqual('Repository.unlock',
1940
 
            smart_repo.SmartServerRepositoryUnlock)
 
1555
            smart.repository.SmartServerRepositoryUnlock)
1941
1556
        self.assertHandlerEqual('Transport.is_readonly',
1942
 
            smart_req.SmartServerIsReadonly)
1943
 
 
1944
 
 
1945
 
class SmartTCPServerHookTests(tests.TestCaseWithMemoryTransport):
1946
 
    """Tests for SmartTCPServer hooks."""
1947
 
 
1948
 
    def setUp(self):
1949
 
        super(SmartTCPServerHookTests, self).setUp()
1950
 
        self.server = server.SmartTCPServer(self.get_transport())
1951
 
 
1952
 
    def test_run_server_started_hooks(self):
1953
 
        """Test the server started hooks get fired properly."""
1954
 
        started_calls = []
1955
 
        server.SmartTCPServer.hooks.install_named_hook('server_started',
1956
 
            lambda backing_urls, url: started_calls.append((backing_urls, url)),
1957
 
            None)
1958
 
        started_ex_calls = []
1959
 
        server.SmartTCPServer.hooks.install_named_hook('server_started_ex',
1960
 
            lambda backing_urls, url: started_ex_calls.append((backing_urls, url)),
1961
 
            None)
1962
 
        self.server._sockname = ('example.com', 42)
1963
 
        self.server.run_server_started_hooks()
1964
 
        self.assertEquals(started_calls,
1965
 
            [([self.get_transport().base], 'bzr://example.com:42/')])
1966
 
        self.assertEquals(started_ex_calls,
1967
 
            [([self.get_transport().base], self.server)])
1968
 
 
1969
 
    def test_run_server_started_hooks_ipv6(self):
1970
 
        """Test that socknames can contain 4-tuples."""
1971
 
        self.server._sockname = ('::', 42, 0, 0)
1972
 
        started_calls = []
1973
 
        server.SmartTCPServer.hooks.install_named_hook('server_started',
1974
 
            lambda backing_urls, url: started_calls.append((backing_urls, url)),
1975
 
            None)
1976
 
        self.server.run_server_started_hooks()
1977
 
        self.assertEquals(started_calls,
1978
 
                [([self.get_transport().base], 'bzr://:::42/')])
1979
 
 
1980
 
    def test_run_server_stopped_hooks(self):
1981
 
        """Test the server stopped hooks."""
1982
 
        self.server._sockname = ('example.com', 42)
1983
 
        stopped_calls = []
1984
 
        server.SmartTCPServer.hooks.install_named_hook('server_stopped',
1985
 
            lambda backing_urls, url: stopped_calls.append((backing_urls, url)),
1986
 
            None)
1987
 
        self.server.run_server_stopped_hooks()
1988
 
        self.assertEquals(stopped_calls,
1989
 
            [([self.get_transport().base], 'bzr://example.com:42/')])
 
1557
            smart.request.SmartServerIsReadonly)