28
from cStringIO import StringIO
29
31
from bzrlib import (
30
branch as _mod_branch,
38
from bzrlib.smart import (
39
branch as smart_branch,
41
repository as smart_repo,
42
packrepository as smart_packrepo,
47
from bzrlib.tests import test_server
48
from bzrlib.transport import (
40
from bzrlib.branch import Branch, BranchReferenceFormat
41
import bzrlib.smart.branch
42
import bzrlib.smart.bzrdir, bzrlib.smart.bzrdir as smart_dir
43
import bzrlib.smart.packrepository
44
import bzrlib.smart.repository
45
from bzrlib.smart.request import (
46
FailedSmartServerResponse,
49
SuccessfulSmartServerResponse,
51
from bzrlib.tests import (
54
from bzrlib.transport import chroot, get_transport
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
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}),
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,
69
73
tests.multiply_tests(v1_and_2, scenarios, result)
70
74
# The first scenario is only applicable to v1 protocols, it is deleted
99
103
# the default or a parameterized class, but rather use the
100
104
# TestCaseWithTransport infrastructure to set up a smart server and
102
self.overrideAttr(self, "transport_server", self.make_transport_server)
106
self.transport_server = self.make_transport_server
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())
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()
112
class TestByteStreamToStream(tests.TestCase):
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)
122
# Iterate the resulting iterable; checking that we get only one stream
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])
131
116
class TestSmartServerResponse(tests.TestCase):
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', )))
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')))
155
140
class TestSmartServerRequest(tests.TestCaseWithMemoryTransport):
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/..')
423
384
"""Initializing an extant directory 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')
432
class TestSmartServerRequestOpenBzrDir(tests.TestCaseWithMemoryTransport):
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'))
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'))
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'))
455
class TestSmartServerRequestOpenBzrDir_2_1(tests.TestCaseWithMemoryTransport):
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'))
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'))
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')),
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'))
485
class TestSmartServerRequestOpenBzrDir_2_1_disk(TestCaseWithChrootedTransport):
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()
494
bd.create_workingtree()
495
self.assertEqual(smart_req.SmartServerResponse(('yes', 'yes')),
499
393
class TestSmartServerRequestOpenBranch(TestCaseWithChrootedTransport):
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(''))
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(''))
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(
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'))
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',)),
539
423
class TestSmartServerRequestOpenBranchV2(TestCaseWithChrootedTransport):
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', )),
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)),
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(
567
self.assertFileEqual(reference_url, 'reference/.bzr/branch/location')
568
self.assertEqual(smart_req.SuccessfulSmartServerResponse(
569
('ref', reference_url)),
570
request.execute('reference'))
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)
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)
584
response = request.execute('feature')
586
request.teardown_jail()
587
expected_format = feature._format.network_name()
588
self.assertEqual(smart_req.SuccessfulSmartServerResponse(
589
('branch', expected_format)),
591
self.assertLength(1, opened_branches)
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',)),
602
class TestSmartServerRequestOpenBranchV3(TestCaseWithChrootedTransport):
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',)),
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)),
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(
630
self.assertFileEqual(reference_url, 'reference/.bzr/branch/location')
631
self.assertEqual(smart_req.SuccessfulSmartServerResponse(
632
('ref', reference_url)),
633
request.execute('reference'))
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)
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)
647
response = request.execute('feature')
649
request.teardown_jail()
650
expected_format = feature._format.network_name()
651
self.assertEqual(smart_req.SuccessfulSmartServerResponse(
652
('branch', expected_format)),
654
self.assertLength(1, opened_branches)
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')),
429
request = smart.bzrdir.SmartServerRequestOpenBranchV2(backing)
430
self.assertEqual(SmartServerResponse(('nobranch', )),
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)),
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'))
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)
458
Branch.hooks.install_named_hook('open', opened_branches.append, None)
459
backing = self.get_transport()
460
request = smart.bzrdir.SmartServerRequestOpenBranchV2(backing)
463
response = request.execute('feature')
465
request.teardown_jail()
466
expected_format = feature._format.network_name()
468
SuccessfulSmartServerResponse(('branch', expected_format)),
470
self.assertLength(1, opened_branches)
666
473
class TestSmartServerRequestRevisionHistory(tests.TestCaseWithMemoryTransport):
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',
782
self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), result)
587
self.assertEqual(SuccessfulSmartServerResponse(()), result)
783
588
self.assertEqual('bar', config.get_option('foo'))
787
592
def test_value_name_section(self):
788
593
branch = self.make_branch('.')
789
request = smart_branch.SmartServerBranchRequestSetConfigOption(
594
request = smart.branch.SmartServerBranchRequestSetConfigOption(
790
595
branch.bzrdir.root_transport)
791
596
branch_token, repo_token = self.get_lock_tokens(branch)
792
597
config = branch._get_config()
793
598
result = request.execute('', branch_token, repo_token, 'bar', 'foo',
795
self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), result)
600
self.assertEqual(SuccessfulSmartServerResponse(()), result)
796
601
self.assertEqual('bar', config.get_option('foo', 'gam'))
801
class TestSmartServerBranchRequestSetConfigOptionDict(TestLockedBranch):
804
TestLockedBranch.setUp(self)
805
# A dict with non-ascii keys and values to exercise unicode
807
self.encoded_value_dict = (
808
'd5:ascii1:a11:unicode \xe2\x8c\x9a3:\xe2\x80\xbde')
810
'ascii': 'a', u'unicode \N{WATCH}': u'\N{INTERROBANG}'}
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'))
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'))
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.
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()
856
smart_req.SuccessfulSmartServerResponse(()), response)
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
870
request.do_chunk(tag_bytes)
876
606
class SetLastRevisionTestBase(TestLockedBranch):
877
607
"""Base test case for verbs that implement set_last_revision."""
1093
822
def test_get_parent_none(self):
1094
823
base_branch = self.make_branch('base')
1095
request = smart_branch.SmartServerBranchGetParent(self.get_transport())
824
request = smart.branch.SmartServerBranchGetParent(self.get_transport())
1096
825
response = request.execute('base')
1097
826
self.assertEquals(
1098
smart_req.SuccessfulSmartServerResponse(('',)), response)
827
SuccessfulSmartServerResponse(('',)), response)
1100
829
def test_get_parent_something(self):
1101
830
base_branch = self.make_branch('base')
1102
831
base_branch.set_parent(self.get_url('foo'))
1103
request = smart_branch.SmartServerBranchGetParent(self.get_transport())
832
request = smart.branch.SmartServerBranchGetParent(self.get_transport())
1104
833
response = request.execute('base')
1105
834
self.assertEquals(
1106
smart_req.SuccessfulSmartServerResponse(("../foo",)),
835
SuccessfulSmartServerResponse(("../foo",)),
1110
class TestSmartServerBranchRequestSetParent(TestLockedBranch):
839
class TestSmartServerBranchRequestSetParent(tests.TestCaseWithMemoryTransport):
1112
841
def test_set_parent_none(self):
1113
842
branch = self.make_branch('base', format="1.9")
1114
843
branch.lock_write()
1115
844
branch._set_parent_location('foo')
1117
request = smart_branch.SmartServerBranchRequestSetParentLocation(
846
request = smart.branch.SmartServerBranchRequestSetParentLocation(
1118
847
self.get_transport())
1119
branch_token, repo_token = self.get_lock_tokens(branch)
848
branch_token = branch.lock_write()
849
repo_token = branch.repository.lock_write()
1121
851
response = request.execute('base', branch_token, repo_token, '')
853
branch.repository.unlock()
1124
self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), response)
855
self.assertEqual(SuccessfulSmartServerResponse(()), response)
1125
856
self.assertEqual(None, branch.get_parent())
1127
858
def test_set_parent_something(self):
1128
859
branch = self.make_branch('base', format="1.9")
1129
request = smart_branch.SmartServerBranchRequestSetParentLocation(
860
request = smart.branch.SmartServerBranchRequestSetParentLocation(
1130
861
self.get_transport())
1131
branch_token, repo_token = self.get_lock_tokens(branch)
862
branch_token = branch.lock_write()
863
repo_token = branch.repository.lock_write()
1133
865
response = request.execute('base', branch_token, repo_token,
868
branch.repository.unlock()
1137
self.assertEqual(smart_req.SuccessfulSmartServerResponse(()), response)
870
self.assertEqual(SuccessfulSmartServerResponse(()), response)
1138
871
self.assertEqual('http://bar/', branch.get_parent())
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.
874
class TestSmartServerBranchRequestGetTagsBytes(tests.TestCaseWithMemoryTransport):
875
# Only called when the branch format and tags match [yay factory
876
# methods] so only need to test straight forward cases.
1146
878
def test_get_bytes(self):
1147
879
base_branch = self.make_branch('base')
1148
request = smart_branch.SmartServerBranchGetTagsBytes(
880
request = smart.branch.SmartServerBranchGetTagsBytes(
1149
881
self.get_transport())
1150
882
response = request.execute('base')
1151
883
self.assertEquals(
1152
smart_req.SuccessfulSmartServerResponse(('',)), response)
884
SuccessfulSmartServerResponse(('',)), response)
1155
887
class TestSmartServerBranchRequestGetStackedOnURL(tests.TestCaseWithMemoryTransport):
1159
891
stacked_branch = self.make_branch('stacked', format='1.6')
1160
892
# typically should be relative
1161
893
stacked_branch.set_stacked_on_url('../base')
1162
request = smart_branch.SmartServerBranchRequestGetStackedOnURL(
894
request = smart.branch.SmartServerBranchRequestGetStackedOnURL(
1163
895
self.get_transport())
1164
896
response = request.execute('stacked')
1165
897
self.assertEquals(
1166
smart_req.SmartServerResponse(('ok', '../base')),
898
SmartServerResponse(('ok', '../base')),
1170
class TestSmartServerBranchRequestLockWrite(TestLockedBranch):
902
class TestSmartServerBranchRequestLockWrite(tests.TestCaseWithMemoryTransport):
1172
904
def setUp(self):
1173
905
tests.TestCaseWithMemoryTransport.setUp(self)
1175
907
def test_lock_write_on_unlocked_branch(self):
1176
908
backing = self.get_transport()
1177
request = smart_branch.SmartServerBranchRequestLockWrite(backing)
909
request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1178
910
branch = self.make_branch('.', format='knit')
1179
911
repository = branch.repository
1180
912
response = request.execute('')
1181
913
branch_nonce = branch.control_files._lock.peek().get('nonce')
1182
914
repository_nonce = repository.control_files._lock.peek().get('nonce')
1183
self.assertEqual(smart_req.SmartServerResponse(
1184
('ok', branch_nonce, repository_nonce)),
916
SmartServerResponse(('ok', branch_nonce, repository_nonce)),
1186
918
# The branch (and associated repository) is now locked. Verify that
1187
919
# with a new branch object.
1188
920
new_branch = repository.bzrdir.open_branch()
1189
921
self.assertRaises(errors.LockContention, new_branch.lock_write)
1191
request = smart_branch.SmartServerBranchRequestUnlock(backing)
923
request = smart.branch.SmartServerBranchRequestUnlock(backing)
1192
924
response = request.execute('', branch_nonce, repository_nonce)
1194
926
def test_lock_write_on_locked_branch(self):
1195
927
backing = self.get_transport()
1196
request = smart_branch.SmartServerBranchRequestLockWrite(backing)
928
request = smart.branch.SmartServerBranchRequestLockWrite(backing)
1197
929
branch = self.make_branch('.')
1198
branch_token = branch.lock_write().branch_token
930
branch_token = branch.lock_write()
1199
931
branch.leave_lock_in_place()
1201
933
response = request.execute('')
1202
934
self.assertEqual(
1203
smart_req.SmartServerResponse(('LockContention',)), response)
935
SmartServerResponse(('LockContention',)), response)
1205
937
branch.lock_write(branch_token)
1206
938
branch.dont_leave_lock_in_place()
1304
1041
def test_unlock_on_unlocked_branch_unlocked_repo(self):
1305
1042
backing = self.get_transport()
1306
request = smart_branch.SmartServerBranchRequestUnlock(backing)
1043
request = smart.branch.SmartServerBranchRequestUnlock(backing)
1307
1044
branch = self.make_branch('.', format='knit')
1308
1045
response = request.execute(
1309
1046
'', 'branch token', 'repo token')
1310
1047
self.assertEqual(
1311
smart_req.SmartServerResponse(('TokenMismatch',)), response)
1048
SmartServerResponse(('TokenMismatch',)), response)
1313
1050
def test_unlock_on_unlocked_branch_locked_repo(self):
1314
1051
backing = self.get_transport()
1315
request = smart_branch.SmartServerBranchRequestUnlock(backing)
1052
request = smart.branch.SmartServerBranchRequestUnlock(backing)
1316
1053
branch = self.make_branch('.', format='knit')
1317
1054
# Lock the repository.
1318
repo_token = branch.repository.lock_write().repository_token
1055
repo_token = branch.repository.lock_write()
1319
1056
branch.repository.leave_lock_in_place()
1320
1057
branch.repository.unlock()
1321
1058
# Issue branch lock_write request on the unlocked branch (with locked
1323
response = request.execute('', 'branch token', repo_token)
1060
response = request.execute(
1061
'', 'branch token', repo_token)
1324
1062
self.assertEqual(
1325
smart_req.SmartServerResponse(('TokenMismatch',)), response)
1063
SmartServerResponse(('TokenMismatch',)), response)
1327
1065
branch.repository.lock_write(repo_token)
1328
1066
branch.repository.dont_leave_lock_in_place()
1350
1088
def test_trivial_bzipped(self):
1351
1089
# This tests that the wire encoding is actually bzipped
1352
1090
backing = self.get_transport()
1353
request = smart_repo.SmartServerRepositoryGetParentMap(backing)
1091
request = smart.repository.SmartServerRepositoryGetParentMap(backing)
1354
1092
tree = self.make_branch_and_memory_tree('.')
1356
1094
self.assertEqual(None,
1357
1095
request.execute('', 'missing-id'))
1358
1096
# Note that it returns a body that is bzipped.
1359
1097
self.assertEqual(
1360
smart_req.SuccessfulSmartServerResponse(('ok', ), bz2.compress('')),
1098
SuccessfulSmartServerResponse(('ok', ), bz2.compress('')),
1361
1099
request.do_body('\n\n0\n'))
1363
1101
def test_trivial_include_missing(self):
1364
1102
backing = self.get_transport()
1365
request = smart_repo.SmartServerRepositoryGetParentMap(backing)
1103
request = smart.repository.SmartServerRepositoryGetParentMap(backing)
1366
1104
tree = self.make_branch_and_memory_tree('.')
1368
1106
self.assertEqual(None,
1369
1107
request.execute('', 'missing-id', 'include-missing:'))
1370
1108
self.assertEqual(
1371
smart_req.SuccessfulSmartServerResponse(('ok', ),
1109
SuccessfulSmartServerResponse(('ok', ),
1372
1110
bz2.compress('missing:missing-id')),
1373
1111
request.do_body('\n\n0\n'))
1376
class TestSmartServerRepositoryGetRevisionGraph(
1377
tests.TestCaseWithMemoryTransport):
1114
class TestSmartServerRepositoryGetRevisionGraph(tests.TestCaseWithMemoryTransport):
1379
1116
def test_none_argument(self):
1380
1117
backing = self.get_transport()
1381
request = smart_repo.SmartServerRepositoryGetRevisionGraph(backing)
1118
request = smart.repository.SmartServerRepositoryGetRevisionGraph(backing)
1382
1119
tree = self.make_branch_and_memory_tree('.')
1383
1120
tree.lock_write()
1511
1240
stream_bytes = ''.join(response.body_stream)
1512
1241
self.assertStartsWith(stream_bytes, 'Bazaar pack format 1')
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')
1527
1244
class TestSmartServerRequestHasRevision(tests.TestCaseWithMemoryTransport):
1529
1246
def test_missing_revision(self):
1530
1247
"""For a missing revision, ('no', ) is returned."""
1531
1248
backing = self.get_transport()
1532
request = smart_repo.SmartServerRequestHasRevision(backing)
1249
request = smart.repository.SmartServerRequestHasRevision(backing)
1533
1250
self.make_repository('.')
1534
self.assertEqual(smart_req.SmartServerResponse(('no', )),
1251
self.assertEqual(SmartServerResponse(('no', )),
1535
1252
request.execute('', 'revid'))
1537
1254
def test_present_revision(self):
1538
1255
"""For a present revision, ('yes', ) is returned."""
1539
1256
backing = self.get_transport()
1540
request = smart_repo.SmartServerRequestHasRevision(backing)
1257
request = smart.repository.SmartServerRequestHasRevision(backing)
1541
1258
tree = self.make_branch_and_memory_tree('.')
1542
1259
tree.lock_write()
1632
1349
def test_lock_write_on_unlocked_repo(self):
1633
1350
backing = self.get_transport()
1634
request = smart_repo.SmartServerRepositoryLockWrite(backing)
1351
request = smart.repository.SmartServerRepositoryLockWrite(backing)
1635
1352
repository = self.make_repository('.', format='knit')
1636
1353
response = request.execute('')
1637
1354
nonce = repository.control_files._lock.peek().get('nonce')
1638
self.assertEqual(smart_req.SmartServerResponse(('ok', nonce)), response)
1355
self.assertEqual(SmartServerResponse(('ok', nonce)), response)
1639
1356
# The repository is now locked. Verify that with a new repository
1641
1358
new_repo = repository.bzrdir.open_repository()
1642
1359
self.assertRaises(errors.LockContention, new_repo.lock_write)
1644
request = smart_repo.SmartServerRepositoryUnlock(backing)
1361
request = smart.repository.SmartServerRepositoryUnlock(backing)
1645
1362
response = request.execute('', nonce)
1647
1364
def test_lock_write_on_locked_repo(self):
1648
1365
backing = self.get_transport()
1649
request = smart_repo.SmartServerRepositoryLockWrite(backing)
1366
request = smart.repository.SmartServerRepositoryLockWrite(backing)
1650
1367
repository = self.make_repository('.', format='knit')
1651
repo_token = repository.lock_write().repository_token
1368
repo_token = repository.lock_write()
1652
1369
repository.leave_lock_in_place()
1653
1370
repository.unlock()
1654
1371
response = request.execute('')
1655
1372
self.assertEqual(
1656
smart_req.SmartServerResponse(('LockContention',)), response)
1373
SmartServerResponse(('LockContention',)), response)
1658
1375
repository.lock_write(repo_token)
1659
1376
repository.dont_leave_lock_in_place()
1680
1397
def test_insert_stream_empty(self):
1681
1398
backing = self.get_transport()
1682
request = smart_repo.SmartServerRepositoryInsertStream(backing)
1399
request = smart.repository.SmartServerRepositoryInsertStream(backing)
1683
1400
repository = self.make_repository('.')
1684
1401
response = request.execute('', '')
1685
1402
self.assertEqual(None, response)
1686
1403
response = request.do_chunk(self.make_empty_byte_stream(repository))
1687
1404
self.assertEqual(None, response)
1688
1405
response = request.do_end()
1689
self.assertEqual(smart_req.SmartServerResponse(('ok', )), response)
1406
self.assertEqual(SmartServerResponse(('ok', )), response)
1692
1409
class TestSmartServerRepositoryInsertStreamLocked(TestInsertStreamBase):
1694
1411
def test_insert_stream_empty(self):
1695
1412
backing = self.get_transport()
1696
request = smart_repo.SmartServerRepositoryInsertStreamLocked(
1413
request = smart.repository.SmartServerRepositoryInsertStreamLocked(
1698
1415
repository = self.make_repository('.', format='knit')
1699
lock_token = repository.lock_write().repository_token
1416
lock_token = repository.lock_write()
1700
1417
response = request.execute('', '', lock_token)
1701
1418
self.assertEqual(None, response)
1702
1419
response = request.do_chunk(self.make_empty_byte_stream(repository))
1703
1420
self.assertEqual(None, response)
1704
1421
response = request.do_end()
1705
self.assertEqual(smart_req.SmartServerResponse(('ok', )), response)
1422
self.assertEqual(SmartServerResponse(('ok', )), response)
1706
1423
repository.unlock()
1708
1425
def test_insert_stream_with_wrong_lock_token(self):
1709
1426
backing = self.get_transport()
1710
request = smart_repo.SmartServerRepositoryInsertStreamLocked(
1427
request = smart.repository.SmartServerRepositoryInsertStreamLocked(
1712
1429
repository = self.make_repository('.', format='knit')
1713
lock_token = repository.lock_write().repository_token
1430
lock_token = repository.lock_write()
1714
1431
self.assertRaises(
1715
1432
errors.TokenMismatch, request.execute, '', '', 'wrong-token')
1716
1433
repository.unlock()
1740
1457
def test_unlock_on_unlocked_repo(self):
1741
1458
backing = self.get_transport()
1742
request = smart_repo.SmartServerRepositoryUnlock(backing)
1459
request = smart.repository.SmartServerRepositoryUnlock(backing)
1743
1460
repository = self.make_repository('.', format='knit')
1744
1461
response = request.execute('', 'some token')
1745
1462
self.assertEqual(
1746
smart_req.SmartServerResponse(('TokenMismatch',)), response)
1463
SmartServerResponse(('TokenMismatch',)), response)
1749
1466
class TestSmartServerIsReadonly(tests.TestCaseWithMemoryTransport):
1751
1468
def test_is_readonly_no(self):
1752
1469
backing = self.get_transport()
1753
request = smart_req.SmartServerIsReadonly(backing)
1470
request = smart.request.SmartServerIsReadonly(backing)
1754
1471
response = request.execute()
1755
1472
self.assertEqual(
1756
smart_req.SmartServerResponse(('no',)), response)
1473
SmartServerResponse(('no',)), response)
1758
1475
def test_is_readonly_yes(self):
1759
1476
backing = self.get_readonly_transport()
1760
request = smart_req.SmartServerIsReadonly(backing)
1477
request = smart.request.SmartServerIsReadonly(backing)
1761
1478
response = request.execute()
1762
1479
self.assertEqual(
1763
smart_req.SmartServerResponse(('yes',)), response)
1766
class TestSmartServerRepositorySetMakeWorkingTrees(
1767
tests.TestCaseWithMemoryTransport):
1480
SmartServerResponse(('yes',)), response)
1483
class TestSmartServerRepositorySetMakeWorkingTrees(tests.TestCaseWithMemoryTransport):
1769
1485
def test_set_false(self):
1770
1486
backing = self.get_transport()
1771
1487
repo = self.make_repository('.', shared=True)
1772
1488
repo.set_make_working_trees(True)
1773
request_class = smart_repo.SmartServerRepositorySetMakeWorkingTrees
1489
request_class = smart.repository.SmartServerRepositorySetMakeWorkingTrees
1774
1490
request = request_class(backing)
1775
self.assertEqual(smart_req.SuccessfulSmartServerResponse(('ok',)),
1491
self.assertEqual(SuccessfulSmartServerResponse(('ok',)),
1776
1492
request.execute('', 'False'))
1777
1493
repo = repo.bzrdir.open_repository()
1778
1494
self.assertFalse(repo.make_working_trees())
1860
1563
"""All registered request_handlers can be found."""
1861
1564
# If there's a typo in a register_lazy call, this loop will fail with
1862
1565
# an AttributeError.
1863
for key, item in smart_req.request_handlers.iteritems():
1566
for key, item in smart.request.request_handlers.iteritems():
1866
1569
def assertHandlerEqual(self, verb, handler):
1867
self.assertEqual(smart_req.request_handlers.get(verb), handler)
1570
self.assertEqual(smart.request.request_handlers.get(verb), handler)
1869
1572
def test_registered_methods(self):
1870
1573
"""Test that known methods are registered to the correct object."""
1871
1574
self.assertHandlerEqual('Branch.get_config_file',
1872
smart_branch.SmartServerBranchGetConfigFile)
1575
smart.branch.SmartServerBranchGetConfigFile)
1873
1576
self.assertHandlerEqual('Branch.get_parent',
1874
smart_branch.SmartServerBranchGetParent)
1577
smart.branch.SmartServerBranchGetParent)
1875
1578
self.assertHandlerEqual('Branch.get_tags_bytes',
1876
smart_branch.SmartServerBranchGetTagsBytes)
1579
smart.branch.SmartServerBranchGetTagsBytes)
1877
1580
self.assertHandlerEqual('Branch.lock_write',
1878
smart_branch.SmartServerBranchRequestLockWrite)
1581
smart.branch.SmartServerBranchRequestLockWrite)
1879
1582
self.assertHandlerEqual('Branch.last_revision_info',
1880
smart_branch.SmartServerBranchRequestLastRevisionInfo)
1583
smart.branch.SmartServerBranchRequestLastRevisionInfo)
1881
1584
self.assertHandlerEqual('Branch.revision_history',
1882
smart_branch.SmartServerRequestRevisionHistory)
1585
smart.branch.SmartServerRequestRevisionHistory)
1883
1586
self.assertHandlerEqual('Branch.set_config_option',
1884
smart_branch.SmartServerBranchRequestSetConfigOption)
1587
smart.branch.SmartServerBranchRequestSetConfigOption)
1885
1588
self.assertHandlerEqual('Branch.set_last_revision',
1886
smart_branch.SmartServerBranchRequestSetLastRevision)
1589
smart.branch.SmartServerBranchRequestSetLastRevision)
1887
1590
self.assertHandlerEqual('Branch.set_last_revision_info',
1888
smart_branch.SmartServerBranchRequestSetLastRevisionInfo)
1591
smart.branch.SmartServerBranchRequestSetLastRevisionInfo)
1889
1592
self.assertHandlerEqual('Branch.set_last_revision_ex',
1890
smart_branch.SmartServerBranchRequestSetLastRevisionEx)
1593
smart.branch.SmartServerBranchRequestSetLastRevisionEx)
1891
1594
self.assertHandlerEqual('Branch.set_parent_location',
1892
smart_branch.SmartServerBranchRequestSetParentLocation)
1595
smart.branch.SmartServerBranchRequestSetParentLocation)
1893
1596
self.assertHandlerEqual('Branch.unlock',
1894
smart_branch.SmartServerBranchRequestUnlock)
1597
smart.branch.SmartServerBranchRequestUnlock)
1895
1598
self.assertHandlerEqual('BzrDir.find_repository',
1896
smart_dir.SmartServerRequestFindRepositoryV1)
1599
smart.bzrdir.SmartServerRequestFindRepositoryV1)
1897
1600
self.assertHandlerEqual('BzrDir.find_repositoryV2',
1898
smart_dir.SmartServerRequestFindRepositoryV2)
1601
smart.bzrdir.SmartServerRequestFindRepositoryV2)
1899
1602
self.assertHandlerEqual('BzrDirFormat.initialize',
1900
smart_dir.SmartServerRequestInitializeBzrDir)
1603
smart.bzrdir.SmartServerRequestInitializeBzrDir)
1901
1604
self.assertHandlerEqual('BzrDirFormat.initialize_ex_1.16',
1902
smart_dir.SmartServerRequestBzrDirInitializeEx)
1605
smart.bzrdir.SmartServerRequestBzrDirInitializeEx)
1903
1606
self.assertHandlerEqual('BzrDir.cloning_metadir',
1904
smart_dir.SmartServerBzrDirRequestCloningMetaDir)
1607
smart.bzrdir.SmartServerBzrDirRequestCloningMetaDir)
1905
1608
self.assertHandlerEqual('BzrDir.get_config_file',
1906
smart_dir.SmartServerBzrDirRequestConfigFile)
1609
smart.bzrdir.SmartServerBzrDirRequestConfigFile)
1907
1610
self.assertHandlerEqual('BzrDir.open_branch',
1908
smart_dir.SmartServerRequestOpenBranch)
1611
smart.bzrdir.SmartServerRequestOpenBranch)
1909
1612
self.assertHandlerEqual('BzrDir.open_branchV2',
1910
smart_dir.SmartServerRequestOpenBranchV2)
1911
self.assertHandlerEqual('BzrDir.open_branchV3',
1912
smart_dir.SmartServerRequestOpenBranchV3)
1613
smart.bzrdir.SmartServerRequestOpenBranchV2)
1913
1614
self.assertHandlerEqual('PackRepository.autopack',
1914
smart_packrepo.SmartServerPackRepositoryAutopack)
1615
smart.packrepository.SmartServerPackRepositoryAutopack)
1915
1616
self.assertHandlerEqual('Repository.gather_stats',
1916
smart_repo.SmartServerRepositoryGatherStats)
1617
smart.repository.SmartServerRepositoryGatherStats)
1917
1618
self.assertHandlerEqual('Repository.get_parent_map',
1918
smart_repo.SmartServerRepositoryGetParentMap)
1619
smart.repository.SmartServerRepositoryGetParentMap)
1919
1620
self.assertHandlerEqual('Repository.get_rev_id_for_revno',
1920
smart_repo.SmartServerRepositoryGetRevIdForRevno)
1621
smart.repository.SmartServerRepositoryGetRevIdForRevno)
1921
1622
self.assertHandlerEqual('Repository.get_revision_graph',
1922
smart_repo.SmartServerRepositoryGetRevisionGraph)
1623
smart.repository.SmartServerRepositoryGetRevisionGraph)
1923
1624
self.assertHandlerEqual('Repository.get_stream',
1924
smart_repo.SmartServerRepositoryGetStream)
1925
self.assertHandlerEqual('Repository.get_stream_1.19',
1926
smart_repo.SmartServerRepositoryGetStream_1_19)
1625
smart.repository.SmartServerRepositoryGetStream)
1927
1626
self.assertHandlerEqual('Repository.has_revision',
1928
smart_repo.SmartServerRequestHasRevision)
1627
smart.repository.SmartServerRequestHasRevision)
1929
1628
self.assertHandlerEqual('Repository.insert_stream',
1930
smart_repo.SmartServerRepositoryInsertStream)
1629
smart.repository.SmartServerRepositoryInsertStream)
1931
1630
self.assertHandlerEqual('Repository.insert_stream_locked',
1932
smart_repo.SmartServerRepositoryInsertStreamLocked)
1631
smart.repository.SmartServerRepositoryInsertStreamLocked)
1933
1632
self.assertHandlerEqual('Repository.is_shared',
1934
smart_repo.SmartServerRepositoryIsShared)
1633
smart.repository.SmartServerRepositoryIsShared)
1935
1634
self.assertHandlerEqual('Repository.lock_write',
1936
smart_repo.SmartServerRepositoryLockWrite)
1635
smart.repository.SmartServerRepositoryLockWrite)
1937
1636
self.assertHandlerEqual('Repository.tarball',
1938
smart_repo.SmartServerRepositoryTarball)
1637
smart.repository.SmartServerRepositoryTarball)
1939
1638
self.assertHandlerEqual('Repository.unlock',
1940
smart_repo.SmartServerRepositoryUnlock)
1639
smart.repository.SmartServerRepositoryUnlock)
1941
1640
self.assertHandlerEqual('Transport.is_readonly',
1942
smart_req.SmartServerIsReadonly)
1945
class SmartTCPServerHookTests(tests.TestCaseWithMemoryTransport):
1946
"""Tests for SmartTCPServer hooks."""
1949
super(SmartTCPServerHookTests, self).setUp()
1950
self.server = server.SmartTCPServer(self.get_transport())
1952
def test_run_server_started_hooks(self):
1953
"""Test the server started hooks get fired properly."""
1955
server.SmartTCPServer.hooks.install_named_hook('server_started',
1956
lambda backing_urls, url: started_calls.append((backing_urls, url)),
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)),
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)])
1969
def test_run_server_started_hooks_ipv6(self):
1970
"""Test that socknames can contain 4-tuples."""
1971
self.server._sockname = ('::', 42, 0, 0)
1973
server.SmartTCPServer.hooks.install_named_hook('server_started',
1974
lambda backing_urls, url: started_calls.append((backing_urls, url)),
1976
self.server.run_server_started_hooks()
1977
self.assertEquals(started_calls,
1978
[([self.get_transport().base], 'bzr://:::42/')])
1980
def test_run_server_stopped_hooks(self):
1981
"""Test the server stopped hooks."""
1982
self.server._sockname = ('example.com', 42)
1984
server.SmartTCPServer.hooks.install_named_hook('server_stopped',
1985
lambda backing_urls, url: stopped_calls.append((backing_urls, url)),
1987
self.server.run_server_stopped_hooks()
1988
self.assertEquals(stopped_calls,
1989
[([self.get_transport().base], 'bzr://example.com:42/')])
1641
smart.request.SmartServerIsReadonly)