1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
|
# Copyright (C) 2006, 2007 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Tests for the Repository facility that are not interface tests.
For interface tests see tests/repository_implementations/*.py.
For concrete class tests see this file, and for storage formats tests
also see this file.
"""
from stat import S_ISDIR
from StringIO import StringIO
from bzrlib import symbol_versioning
import bzrlib
import bzrlib.bzrdir as bzrdir
import bzrlib.errors as errors
from bzrlib.errors import (NotBranchError,
NoSuchFile,
UnknownFormatError,
UnsupportedFormatError,
)
from bzrlib.index import GraphIndex
from bzrlib.repository import RepositoryFormat
from bzrlib.tests import (
TestCase,
TestCaseWithTransport,
test_knit,
)
from bzrlib.transport import get_transport
from bzrlib.transport.memory import MemoryServer
from bzrlib.util import bencode
from bzrlib import (
repository,
upgrade,
workingtree,
)
from bzrlib.repofmt import knitrepo, weaverepo
class TestDefaultFormat(TestCase):
def test_get_set_default_format(self):
old_default = bzrdir.format_registry.get('default')
private_default = old_default().repository_format.__class__
old_format = repository.RepositoryFormat.get_default_format()
self.assertTrue(isinstance(old_format, private_default))
def make_sample_bzrdir():
my_bzrdir = bzrdir.BzrDirMetaFormat1()
my_bzrdir.repository_format = SampleRepositoryFormat()
return my_bzrdir
bzrdir.format_registry.remove('default')
bzrdir.format_registry.register('sample', make_sample_bzrdir, '')
bzrdir.format_registry.set_default('sample')
# creating a repository should now create an instrumented dir.
try:
# the default branch format is used by the meta dir format
# which is not the default bzrdir format at this point
dir = bzrdir.BzrDirMetaFormat1().initialize('memory:///')
result = dir.create_repository()
self.assertEqual(result, 'A bzr repository dir')
finally:
bzrdir.format_registry.remove('default')
bzrdir.format_registry.remove('sample')
bzrdir.format_registry.register('default', old_default, '')
self.assertIsInstance(repository.RepositoryFormat.get_default_format(),
old_format.__class__)
class SampleRepositoryFormat(repository.RepositoryFormat):
"""A sample format
this format is initializable, unsupported to aid in testing the
open and open(unsupported=True) routines.
"""
def get_format_string(self):
"""See RepositoryFormat.get_format_string()."""
return "Sample .bzr repository format."
def initialize(self, a_bzrdir, shared=False):
"""Initialize a repository in a BzrDir"""
t = a_bzrdir.get_repository_transport(self)
t.put_bytes('format', self.get_format_string())
return 'A bzr repository dir'
def is_supported(self):
return False
def open(self, a_bzrdir, _found=False):
return "opened repository."
class TestRepositoryFormat(TestCaseWithTransport):
"""Tests for the Repository format detection used by the bzr meta dir facility.BzrBranchFormat facility."""
def test_find_format(self):
# is the right format object found for a repository?
# create a branch with a few known format objects.
# this is not quite the same as
self.build_tree(["foo/", "bar/"])
def check_format(format, url):
dir = format._matchingbzrdir.initialize(url)
format.initialize(dir)
t = get_transport(url)
found_format = repository.RepositoryFormat.find_format(dir)
self.failUnless(isinstance(found_format, format.__class__))
check_format(weaverepo.RepositoryFormat7(), "bar")
def test_find_format_no_repository(self):
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
self.assertRaises(errors.NoRepositoryPresent,
repository.RepositoryFormat.find_format,
dir)
def test_find_format_unknown_format(self):
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
SampleRepositoryFormat().initialize(dir)
self.assertRaises(UnknownFormatError,
repository.RepositoryFormat.find_format,
dir)
def test_register_unregister_format(self):
format = SampleRepositoryFormat()
# make a control dir
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
# make a repo
format.initialize(dir)
# register a format for it.
repository.RepositoryFormat.register_format(format)
# which repository.Open will refuse (not supported)
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
# but open(unsupported) will work
self.assertEqual(format.open(dir), "opened repository.")
# unregister the format
repository.RepositoryFormat.unregister_format(format)
class TestFormat6(TestCaseWithTransport):
def test_no_ancestry_weave(self):
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
repo = weaverepo.RepositoryFormat6().initialize(control)
# We no longer need to create the ancestry.weave file
# since it is *never* used.
self.assertRaises(NoSuchFile,
control.transport.get,
'ancestry.weave')
class TestFormat7(TestCaseWithTransport):
def test_disk_layout(self):
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
repo = weaverepo.RepositoryFormat7().initialize(control)
# in case of side effects of locking.
repo.lock_write()
repo.unlock()
# we want:
# format 'Bazaar-NG Repository format 7'
# lock ''
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
t = control.get_repository_transport(None)
self.assertEqualDiff('Bazaar-NG Repository format 7',
t.get('format').read())
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
self.assertEqualDiff('# bzr weave file v5\n'
'w\n'
'W\n',
t.get('inventory.weave').read())
def test_shared_disk_layout(self):
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
# we want:
# format 'Bazaar-NG Repository format 7'
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
# a 'shared-storage' marker file.
# lock is not present when unlocked
t = control.get_repository_transport(None)
self.assertEqualDiff('Bazaar-NG Repository format 7',
t.get('format').read())
self.assertEqualDiff('', t.get('shared-storage').read())
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
self.assertEqualDiff('# bzr weave file v5\n'
'w\n'
'W\n',
t.get('inventory.weave').read())
self.assertFalse(t.has('branch-lock'))
def test_creates_lockdir(self):
"""Make sure it appears to be controlled by a LockDir existence"""
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
t = control.get_repository_transport(None)
# TODO: Should check there is a 'lock' toplevel directory,
# regardless of contents
self.assertFalse(t.has('lock/held/info'))
repo.lock_write()
try:
self.assertTrue(t.has('lock/held/info'))
finally:
# unlock so we don't get a warning about failing to do so
repo.unlock()
def test_uses_lockdir(self):
"""repo format 7 actually locks on lockdir"""
base_url = self.get_url()
control = bzrdir.BzrDirMetaFormat1().initialize(base_url)
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
t = control.get_repository_transport(None)
repo.lock_write()
repo.unlock()
del repo
# make sure the same lock is created by opening it
repo = repository.Repository.open(base_url)
repo.lock_write()
self.assertTrue(t.has('lock/held/info'))
repo.unlock()
self.assertFalse(t.has('lock/held/info'))
def test_shared_no_tree_disk_layout(self):
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
repo.set_make_working_trees(False)
# we want:
# format 'Bazaar-NG Repository format 7'
# lock ''
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
# a 'shared-storage' marker file.
t = control.get_repository_transport(None)
self.assertEqualDiff('Bazaar-NG Repository format 7',
t.get('format').read())
## self.assertEqualDiff('', t.get('lock').read())
self.assertEqualDiff('', t.get('shared-storage').read())
self.assertEqualDiff('', t.get('no-working-trees').read())
repo.set_make_working_trees(True)
self.assertFalse(t.has('no-working-trees'))
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
self.assertEqualDiff('# bzr weave file v5\n'
'w\n'
'W\n',
t.get('inventory.weave').read())
class TestFormatKnit1(TestCaseWithTransport):
def test_disk_layout(self):
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
repo = knitrepo.RepositoryFormatKnit1().initialize(control)
# in case of side effects of locking.
repo.lock_write()
repo.unlock()
# we want:
# format 'Bazaar-NG Knit Repository Format 1'
# lock: is a directory
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
t = control.get_repository_transport(None)
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
t.get('format').read())
# XXX: no locks left when unlocked at the moment
# self.assertEqualDiff('', t.get('lock').read())
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
self.check_knits(t)
def assertHasKnit(self, t, knit_name):
"""Assert that knit_name exists on t."""
self.assertEqualDiff('# bzr knit index 8\n',
t.get(knit_name + '.kndx').read())
# no default content
self.assertTrue(t.has(knit_name + '.knit'))
def check_knits(self, t):
"""check knit content for a repository."""
self.assertHasKnit(t, 'inventory')
self.assertHasKnit(t, 'revisions')
self.assertHasKnit(t, 'signatures')
def test_shared_disk_layout(self):
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
repo = knitrepo.RepositoryFormatKnit1().initialize(control, shared=True)
# we want:
# format 'Bazaar-NG Knit Repository Format 1'
# lock: is a directory
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
# a 'shared-storage' marker file.
t = control.get_repository_transport(None)
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
t.get('format').read())
# XXX: no locks left when unlocked at the moment
# self.assertEqualDiff('', t.get('lock').read())
self.assertEqualDiff('', t.get('shared-storage').read())
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
self.check_knits(t)
def test_shared_no_tree_disk_layout(self):
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
repo = knitrepo.RepositoryFormatKnit1().initialize(control, shared=True)
repo.set_make_working_trees(False)
# we want:
# format 'Bazaar-NG Knit Repository Format 1'
# lock ''
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
# a 'shared-storage' marker file.
t = control.get_repository_transport(None)
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
t.get('format').read())
# XXX: no locks left when unlocked at the moment
# self.assertEqualDiff('', t.get('lock').read())
self.assertEqualDiff('', t.get('shared-storage').read())
self.assertEqualDiff('', t.get('no-working-trees').read())
repo.set_make_working_trees(True)
self.assertFalse(t.has('no-working-trees'))
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
self.check_knits(t)
class KnitRepositoryStreamTests(test_knit.KnitTests):
"""Tests for knitrepo._get_stream_as_bytes."""
def test_get_stream_as_bytes(self):
# Make a simple knit
k1 = self.make_test_knit()
k1.add_lines('text-a', [], test_knit.split_lines(test_knit.TEXT_1))
# Serialise it, check the output.
bytes = knitrepo._get_stream_as_bytes(k1, ['text-a'])
data = bencode.bdecode(bytes)
format, record = data
self.assertEqual('knit-plain', format)
self.assertEqual(['text-a', ['fulltext'], []], record[:3])
self.assertRecordContentEqual(k1, 'text-a', record[3])
def test_get_stream_as_bytes_all(self):
"""Get a serialised data stream for all the records in a knit.
Much like test_get_stream_all, except for get_stream_as_bytes.
"""
k1 = self.make_test_knit()
# Insert the same data as BasicKnitTests.test_knit_join, as they seem
# to cover a range of cases (no parents, one parent, multiple parents).
test_data = [
('text-a', [], test_knit.TEXT_1),
('text-b', ['text-a'], test_knit.TEXT_1),
('text-c', [], test_knit.TEXT_1),
('text-d', ['text-c'], test_knit.TEXT_1),
('text-m', ['text-b', 'text-d'], test_knit.TEXT_1),
]
expected_data_list = [
# version, options, parents
('text-a', ['fulltext'], []),
('text-b', ['line-delta'], ['text-a']),
('text-c', ['fulltext'], []),
('text-d', ['line-delta'], ['text-c']),
('text-m', ['line-delta'], ['text-b', 'text-d']),
]
for version_id, parents, lines in test_data:
k1.add_lines(version_id, parents, test_knit.split_lines(lines))
bytes = knitrepo._get_stream_as_bytes(
k1, ['text-a', 'text-b', 'text-c', 'text-d', 'text-m'])
data = bencode.bdecode(bytes)
format = data.pop(0)
self.assertEqual('knit-plain', format)
for expected, actual in zip(expected_data_list, data):
expected_version = expected[0]
expected_options = expected[1]
expected_parents = expected[2]
version, options, parents, bytes = actual
self.assertEqual(expected_version, version)
self.assertEqual(expected_options, options)
self.assertEqual(expected_parents, parents)
self.assertRecordContentEqual(k1, version, bytes)
class DummyRepository(object):
"""A dummy repository for testing."""
_serializer = None
def supports_rich_root(self):
return False
class InterDummy(repository.InterRepository):
"""An inter-repository optimised code path for DummyRepository.
This is for use during testing where we use DummyRepository as repositories
so that none of the default regsitered inter-repository classes will
match.
"""
@staticmethod
def is_compatible(repo_source, repo_target):
"""InterDummy is compatible with DummyRepository."""
return (isinstance(repo_source, DummyRepository) and
isinstance(repo_target, DummyRepository))
class TestInterRepository(TestCaseWithTransport):
def test_get_default_inter_repository(self):
# test that the InterRepository.get(repo_a, repo_b) probes
# for a inter_repo class where is_compatible(repo_a, repo_b) returns
# true and returns a default inter_repo otherwise.
# This also tests that the default registered optimised interrepository
# classes do not barf inappropriately when a surprising repository type
# is handed to them.
dummy_a = DummyRepository()
dummy_b = DummyRepository()
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
def assertGetsDefaultInterRepository(self, repo_a, repo_b):
"""Asserts that InterRepository.get(repo_a, repo_b) -> the default.
The effective default is now InterSameDataRepository because there is
no actual sane default in the presence of incompatible data models.
"""
inter_repo = repository.InterRepository.get(repo_a, repo_b)
self.assertEqual(repository.InterSameDataRepository,
inter_repo.__class__)
self.assertEqual(repo_a, inter_repo.source)
self.assertEqual(repo_b, inter_repo.target)
def test_register_inter_repository_class(self):
# test that a optimised code path provider - a
# InterRepository subclass can be registered and unregistered
# and that it is correctly selected when given a repository
# pair that it returns true on for the is_compatible static method
# check
dummy_a = DummyRepository()
dummy_b = DummyRepository()
repo = self.make_repository('.')
# hack dummies to look like repo somewhat.
dummy_a._serializer = repo._serializer
dummy_b._serializer = repo._serializer
repository.InterRepository.register_optimiser(InterDummy)
try:
# we should get the default for something InterDummy returns False
# to
self.assertFalse(InterDummy.is_compatible(dummy_a, repo))
self.assertGetsDefaultInterRepository(dummy_a, repo)
# and we should get an InterDummy for a pair it 'likes'
self.assertTrue(InterDummy.is_compatible(dummy_a, dummy_b))
inter_repo = repository.InterRepository.get(dummy_a, dummy_b)
self.assertEqual(InterDummy, inter_repo.__class__)
self.assertEqual(dummy_a, inter_repo.source)
self.assertEqual(dummy_b, inter_repo.target)
finally:
repository.InterRepository.unregister_optimiser(InterDummy)
# now we should get the default InterRepository object again.
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
class TestInterWeaveRepo(TestCaseWithTransport):
def test_is_compatible_and_registered(self):
# InterWeaveRepo is compatible when either side
# is a format 5/6/7 branch
from bzrlib.repofmt import knitrepo, weaverepo
formats = [weaverepo.RepositoryFormat5(),
weaverepo.RepositoryFormat6(),
weaverepo.RepositoryFormat7()]
incompatible_formats = [weaverepo.RepositoryFormat4(),
knitrepo.RepositoryFormatKnit1(),
]
repo_a = self.make_repository('a')
repo_b = self.make_repository('b')
is_compatible = repository.InterWeaveRepo.is_compatible
for source in incompatible_formats:
# force incompatible left then right
repo_a._format = source
repo_b._format = formats[0]
self.assertFalse(is_compatible(repo_a, repo_b))
self.assertFalse(is_compatible(repo_b, repo_a))
for source in formats:
repo_a._format = source
for target in formats:
repo_b._format = target
self.assertTrue(is_compatible(repo_a, repo_b))
self.assertEqual(repository.InterWeaveRepo,
repository.InterRepository.get(repo_a,
repo_b).__class__)
class TestRepositoryConverter(TestCaseWithTransport):
def test_convert_empty(self):
t = get_transport(self.get_url('.'))
t.mkdir('repository')
repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
repo = weaverepo.RepositoryFormat7().initialize(repo_dir)
target_format = knitrepo.RepositoryFormatKnit1()
converter = repository.CopyConverter(target_format)
pb = bzrlib.ui.ui_factory.nested_progress_bar()
try:
converter.convert(repo, pb)
finally:
pb.finished()
repo = repo_dir.open_repository()
self.assertTrue(isinstance(target_format, repo._format.__class__))
class TestMisc(TestCase):
def test_unescape_xml(self):
"""We get some kind of error when malformed entities are passed"""
self.assertRaises(KeyError, repository._unescape_xml, 'foo&bar;')
class TestRepositoryFormatKnit3(TestCaseWithTransport):
def test_convert(self):
"""Ensure the upgrade adds weaves for roots"""
format = bzrdir.BzrDirMetaFormat1()
format.repository_format = knitrepo.RepositoryFormatKnit1()
tree = self.make_branch_and_tree('.', format)
tree.commit("Dull commit", rev_id="dull")
revision_tree = tree.branch.repository.revision_tree('dull')
self.assertRaises(errors.NoSuchFile, revision_tree.get_file_lines,
revision_tree.inventory.root.file_id)
format = bzrdir.BzrDirMetaFormat1()
format.repository_format = knitrepo.RepositoryFormatKnit3()
upgrade.Convert('.', format)
tree = workingtree.WorkingTree.open('.')
revision_tree = tree.branch.repository.revision_tree('dull')
revision_tree.get_file_lines(revision_tree.inventory.root.file_id)
tree.commit("Another dull commit", rev_id='dull2')
revision_tree = tree.branch.repository.revision_tree('dull2')
self.assertEqual('dull', revision_tree.inventory.root.revision)
class TestExperimentalNoSubtrees(TestCaseWithTransport):
def get_format(self):
return bzrdir.format_registry.make_bzrdir('experimental')
def test_disk_layout(self):
format = self.get_format()
repo = self.make_repository('.', format=format)
# in case of side effects of locking.
repo.lock_write()
repo.unlock()
# we want:
# format 'Bazaar Experimental'
# lock: is a directory
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
t = repo.bzrdir.get_repository_transport(None)
self.check_format(t)
# XXX: no locks left when unlocked at the moment
# self.assertEqualDiff('', t.get('lock').read())
self.check_databases(t)
def check_format(self, t):
self.assertEqualDiff('Bazaar Experimental no-subtrees\n',
t.get('format').read())
def assertHasKndx(self, t, knit_name):
"""Assert that knit_name exists on t."""
self.assertEqualDiff('# bzr knit index 8\n',
t.get(knit_name + '.kndx').read())
def assertHasNoKndx(self, t, knit_name):
"""Assert that knit_name has no index on t."""
self.assertFalse(t.has(knit_name + '.kndx'))
def assertHasNoKnit(self, t, knit_name):
"""Assert that knit_name exists on t."""
# no default content
self.assertFalse(t.has(knit_name + '.knit'))
def check_databases(self, t):
"""check knit content for a repository."""
# check conversion worked
self.assertHasNoKndx(t, 'inventory')
self.assertHasNoKnit(t, 'inventory')
self.assertHasNoKndx(t, 'revisions')
self.assertHasNoKnit(t, 'revisions')
self.assertHasNoKndx(t, 'signatures')
self.assertHasNoKnit(t, 'signatures')
self.assertFalse(t.has('knits'))
# revision-indexes file-container directory
self.assertEqual([],
list(GraphIndex(t, 'pack-names').iter_all_entries()))
self.assertTrue(S_ISDIR(t.stat('packs').st_mode))
self.assertTrue(S_ISDIR(t.stat('upload').st_mode))
def test_shared_disk_layout(self):
format = self.get_format()
repo = self.make_repository('.', shared=True, format=format)
# we want:
# format 'Bazaar-NG Knit Repository Format 1'
# lock: is a directory
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
# a 'shared-storage' marker file.
t = repo.bzrdir.get_repository_transport(None)
self.check_format(t)
# XXX: no locks left when unlocked at the moment
# self.assertEqualDiff('', t.get('lock').read())
self.assertEqualDiff('', t.get('shared-storage').read())
self.check_databases(t)
def test_shared_no_tree_disk_layout(self):
format = self.get_format()
repo = self.make_repository('.', shared=True, format=format)
repo.set_make_working_trees(False)
# we want:
# format 'Bazaar-NG Knit Repository Format 1'
# lock ''
# inventory.weave == empty_weave
# empty revision-store directory
# empty weaves directory
# a 'shared-storage' marker file.
t = repo.bzrdir.get_repository_transport(None)
self.check_format(t)
# XXX: no locks left when unlocked at the moment
# self.assertEqualDiff('', t.get('lock').read())
self.assertEqualDiff('', t.get('shared-storage').read())
self.assertEqualDiff('', t.get('no-working-trees').read())
repo.set_make_working_trees(True)
self.assertFalse(t.has('no-working-trees'))
self.check_databases(t)
def test_add_revision_creates_pack_indices(self):
format = self.get_format()
tree = self.make_branch_and_tree('.', format=format)
trans = tree.branch.repository.bzrdir.get_repository_transport(None)
self.assertEqual([],
list(GraphIndex(trans, 'pack-names').iter_all_entries()))
tree.commit('foobarbaz')
index = GraphIndex(trans, 'pack-names')
self.assertEqual(1, len(list(index.iter_all_entries())))
node = list(index.iter_all_entries())[0]
name = node[1][0]
# the pack sizes should be listed in the index
pack_value = node[2]
sizes = [int(digits) for digits in pack_value.split(' ')]
for size, suffix in zip(sizes, ['.rix', '.iix', '.tix', '.six']):
stat = trans.stat('indices/%s%s' % (name, suffix))
self.assertEqual(size, stat.st_size)
def test_pulling_nothing_leads_to_no_new_names(self):
format = self.get_format()
tree1 = self.make_branch_and_tree('1', format=format)
tree2 = self.make_branch_and_tree('2', format=format)
tree1.branch.repository.fetch(tree2.branch.repository)
trans = tree1.branch.repository.bzrdir.get_repository_transport(None)
self.assertEqual([],
list(GraphIndex(trans, 'pack-names').iter_all_entries()))
def test_commit_across_pack_shape_boundary_autopacks(self):
format = self.get_format()
tree = self.make_branch_and_tree('.', format=format)
trans = tree.branch.repository.bzrdir.get_repository_transport(None)
# This test could be a little cheaper by replacing the packs
# attribute on the repository to allow a different pack distribution
# and max packs policy - so we are hecking the policy is honoured
# in the test. But for now 11 commits is not a big deal in a single
# test.
for x in range(9):
tree.commit('commit %s' % x)
# there should be 9 packs:
index = GraphIndex(trans, 'pack-names')
self.assertEqual(9, len(list(index.iter_all_entries())))
# committing one more should coalesce to 1 of 10.
tree.commit('commit triggering pack')
index = GraphIndex(trans, 'pack-names')
self.assertEqual(1, len(list(index.iter_all_entries())))
# packing should not damage data
tree = tree.bzrdir.open_workingtree()
check_result = tree.branch.repository.check(
[tree.branch.last_revision()])
# XXX: Todo check packs obsoleted correctly - old packs and indices
# in the obsolete_packs directory.
large_pack_name = list(index.iter_all_entries())[0][1][0]
# finally, committing again should not touch the large pack.
tree.commit('commit not triggering pack')
index = GraphIndex(trans, 'pack-names')
self.assertEqual(2, len(list(index.iter_all_entries())))
pack_names = [node[1][0] for node in index.iter_all_entries()]
self.assertTrue(large_pack_name in pack_names)
def test_pack_after_two_commits_packs_everything(self):
format = self.get_format()
tree = self.make_branch_and_tree('.', format=format)
trans = tree.branch.repository.bzrdir.get_repository_transport(None)
tree.commit('start')
tree.commit('more work')
tree.branch.repository.pack()
# there should be 1 packs:
index = GraphIndex(trans, 'pack-names')
self.assertEqual(1, len(list(index.iter_all_entries())))
self.assertEqual(2, len(tree.branch.repository.all_revision_ids()))
# TESTS TO WRITE:
# XXX: signatures must be preserved. add a test.
# XXX: packs w/o revisions are ignored by autopack
# XXX: packs w/o revisions are packed by explicit pack
# XXX: packs bigger than the planned distribution chart
# are skipped over by autopack, and their revision
# counts removed from the large end of the distribution
# chart.
class TestRepositoryPackCollection(TestCaseWithTransport):
def get_format(self):
return bzrdir.format_registry.make_bzrdir('experimental')
def test__max_pack_count(self):
"""The maximum pack count is geared from the number of revisions."""
format = self.get_format()
repo = self.make_repository('.', format=format)
packs = repo._packs
# no revisions - one pack, so that we can have a revision free repo
# without it blowing up
self.assertEqual(1, packs._max_pack_count(0))
# after that the sum of the digits, - check the first 1-9
self.assertEqual(1, packs._max_pack_count(1))
self.assertEqual(2, packs._max_pack_count(2))
self.assertEqual(3, packs._max_pack_count(3))
self.assertEqual(4, packs._max_pack_count(4))
self.assertEqual(5, packs._max_pack_count(5))
self.assertEqual(6, packs._max_pack_count(6))
self.assertEqual(7, packs._max_pack_count(7))
self.assertEqual(8, packs._max_pack_count(8))
self.assertEqual(9, packs._max_pack_count(9))
# check the boundary cases with two digits for the next decade
self.assertEqual(1, packs._max_pack_count(10))
self.assertEqual(2, packs._max_pack_count(11))
self.assertEqual(10, packs._max_pack_count(19))
self.assertEqual(2, packs._max_pack_count(20))
self.assertEqual(3, packs._max_pack_count(21))
# check some arbitrary big numbers
self.assertEqual(25, packs._max_pack_count(112894))
def test_pack_distribution_zero(self):
format = self.get_format()
repo = self.make_repository('.', format=format)
packs = repo._packs
self.assertEqual([0], packs.pack_distribution(0))
def test_pack_distribution_one_to_nine(self):
format = self.get_format()
repo = self.make_repository('.', format=format)
packs = repo._packs
self.assertEqual([1],
packs.pack_distribution(1))
self.assertEqual([1, 1],
packs.pack_distribution(2))
self.assertEqual([1, 1, 1],
packs.pack_distribution(3))
self.assertEqual([1, 1, 1, 1],
packs.pack_distribution(4))
self.assertEqual([1, 1, 1, 1, 1],
packs.pack_distribution(5))
self.assertEqual([1, 1, 1, 1, 1, 1],
packs.pack_distribution(6))
self.assertEqual([1, 1, 1, 1, 1, 1, 1],
packs.pack_distribution(7))
self.assertEqual([1, 1, 1, 1, 1, 1, 1, 1],
packs.pack_distribution(8))
self.assertEqual([1, 1, 1, 1, 1, 1, 1, 1, 1],
packs.pack_distribution(9))
def test_pack_distribution_stable_at_boundaries(self):
"""When there are multi-rev packs the counts are stable."""
format = self.get_format()
repo = self.make_repository('.', format=format)
packs = repo._packs
# in 10s:
self.assertEqual([10], packs.pack_distribution(10))
self.assertEqual([10, 1], packs.pack_distribution(11))
self.assertEqual([10, 10], packs.pack_distribution(20))
self.assertEqual([10, 10, 1], packs.pack_distribution(21))
# 100s
self.assertEqual([100], packs.pack_distribution(100))
self.assertEqual([100, 1], packs.pack_distribution(101))
self.assertEqual([100, 10, 1], packs.pack_distribution(111))
self.assertEqual([100, 100], packs.pack_distribution(200))
self.assertEqual([100, 100, 1], packs.pack_distribution(201))
self.assertEqual([100, 100, 10, 1], packs.pack_distribution(211))
def test_plan_pack_operations_2009_revisions_skip_all_packs(self):
format = self.get_format()
repo = self.make_repository('.', format=format)
packs = repo._packs
existing_packs = [(2000, "big"), (9, "medium")]
# rev count - 2009 -> 2x1000 + 9x1
pack_operations = packs.plan_autopack_combinations(
existing_packs, [1000, 1000, 1, 1, 1, 1, 1, 1, 1, 1, 1])
self.assertEqual([], pack_operations)
def test_plan_pack_operations_2010_revisions_skip_all_packs(self):
format = self.get_format()
repo = self.make_repository('.', format=format)
packs = repo._packs
existing_packs = [(2000, "big"), (9, "medium"), (1, "single")]
# rev count - 2010 -> 2x1000 + 1x10
pack_operations = packs.plan_autopack_combinations(
existing_packs, [1000, 1000, 10])
self.assertEqual([], pack_operations)
def test_plan_pack_operations_2010_combines_smallest_two(self):
format = self.get_format()
repo = self.make_repository('.', format=format)
packs = repo._packs
existing_packs = [(1999, "big"), (9, "medium"), (1, "single2"),
(1, "single1")]
# rev count - 2010 -> 2x1000 + 1x10 (3)
pack_operations = packs.plan_autopack_combinations(
existing_packs, [1000, 1000, 10])
self.assertEqual([[2, ["single2", "single1"]], [0, []]], pack_operations)
class TestExperimentalSubtrees(TestExperimentalNoSubtrees):
def get_format(self):
return bzrdir.format_registry.make_bzrdir('experimental-subtree')
def check_format(self, t):
self.assertEqualDiff('Bazaar Experimental subtrees\n',
t.get('format').read())
|