1
# Copyright (C) 2006, 2007, 2008, 2009 Canonical Ltd
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
# GNU General Public License for more details.
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
"""Tests for the Repository facility that are not interface tests.
19
For interface tests see tests/per_repository/*.py.
21
For concrete class tests see this file, and for storage formats tests
25
from stat import S_ISDIR
26
from StringIO import StringIO
29
from bzrlib.errors import (NotBranchError,
32
UnsupportedFormatError,
38
from bzrlib.branchbuilder import BranchBuilder
39
from bzrlib.btree_index import BTreeBuilder, BTreeGraphIndex
40
from bzrlib.index import GraphIndex, InMemoryGraphIndex
41
from bzrlib.repository import RepositoryFormat
42
from bzrlib.smart import server
43
from bzrlib.tests import (
45
TestCaseWithTransport,
49
from bzrlib.transport import (
53
from bzrlib.transport.memory import MemoryServer
62
revision as _mod_revision,
67
from bzrlib.repofmt import (
75
class TestDefaultFormat(TestCase):
77
def test_get_set_default_format(self):
78
old_default = bzrdir.format_registry.get('default')
79
private_default = old_default().repository_format.__class__
80
old_format = repository.RepositoryFormat.get_default_format()
81
self.assertTrue(isinstance(old_format, private_default))
82
def make_sample_bzrdir():
83
my_bzrdir = bzrdir.BzrDirMetaFormat1()
84
my_bzrdir.repository_format = SampleRepositoryFormat()
86
bzrdir.format_registry.remove('default')
87
bzrdir.format_registry.register('sample', make_sample_bzrdir, '')
88
bzrdir.format_registry.set_default('sample')
89
# creating a repository should now create an instrumented dir.
91
# the default branch format is used by the meta dir format
92
# which is not the default bzrdir format at this point
93
dir = bzrdir.BzrDirMetaFormat1().initialize('memory:///')
94
result = dir.create_repository()
95
self.assertEqual(result, 'A bzr repository dir')
97
bzrdir.format_registry.remove('default')
98
bzrdir.format_registry.remove('sample')
99
bzrdir.format_registry.register('default', old_default, '')
100
self.assertIsInstance(repository.RepositoryFormat.get_default_format(),
101
old_format.__class__)
104
class SampleRepositoryFormat(repository.RepositoryFormat):
107
this format is initializable, unsupported to aid in testing the
108
open and open(unsupported=True) routines.
111
def get_format_string(self):
112
"""See RepositoryFormat.get_format_string()."""
113
return "Sample .bzr repository format."
115
def initialize(self, a_bzrdir, shared=False):
116
"""Initialize a repository in a BzrDir"""
117
t = a_bzrdir.get_repository_transport(self)
118
t.put_bytes('format', self.get_format_string())
119
return 'A bzr repository dir'
121
def is_supported(self):
124
def open(self, a_bzrdir, _found=False):
125
return "opened repository."
128
class TestRepositoryFormat(TestCaseWithTransport):
129
"""Tests for the Repository format detection used by the bzr meta dir facility.BzrBranchFormat facility."""
131
def test_find_format(self):
132
# is the right format object found for a repository?
133
# create a branch with a few known format objects.
134
# this is not quite the same as
135
self.build_tree(["foo/", "bar/"])
136
def check_format(format, url):
137
dir = format._matchingbzrdir.initialize(url)
138
format.initialize(dir)
139
t = get_transport(url)
140
found_format = repository.RepositoryFormat.find_format(dir)
141
self.failUnless(isinstance(found_format, format.__class__))
142
check_format(weaverepo.RepositoryFormat7(), "bar")
144
def test_find_format_no_repository(self):
145
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
146
self.assertRaises(errors.NoRepositoryPresent,
147
repository.RepositoryFormat.find_format,
150
def test_find_format_unknown_format(self):
151
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
152
SampleRepositoryFormat().initialize(dir)
153
self.assertRaises(UnknownFormatError,
154
repository.RepositoryFormat.find_format,
157
def test_register_unregister_format(self):
158
format = SampleRepositoryFormat()
160
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
162
format.initialize(dir)
163
# register a format for it.
164
repository.RepositoryFormat.register_format(format)
165
# which repository.Open will refuse (not supported)
166
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
167
# but open(unsupported) will work
168
self.assertEqual(format.open(dir), "opened repository.")
169
# unregister the format
170
repository.RepositoryFormat.unregister_format(format)
173
class TestFormat6(TestCaseWithTransport):
175
def test_attribute__fetch_order(self):
176
"""Weaves need topological data insertion."""
177
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
178
repo = weaverepo.RepositoryFormat6().initialize(control)
179
self.assertEqual('topological', repo._format._fetch_order)
181
def test_attribute__fetch_uses_deltas(self):
182
"""Weaves do not reuse deltas."""
183
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
184
repo = weaverepo.RepositoryFormat6().initialize(control)
185
self.assertEqual(False, repo._format._fetch_uses_deltas)
187
def test_attribute__fetch_reconcile(self):
188
"""Weave repositories need a reconcile after fetch."""
189
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
190
repo = weaverepo.RepositoryFormat6().initialize(control)
191
self.assertEqual(True, repo._format._fetch_reconcile)
193
def test_no_ancestry_weave(self):
194
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
195
repo = weaverepo.RepositoryFormat6().initialize(control)
196
# We no longer need to create the ancestry.weave file
197
# since it is *never* used.
198
self.assertRaises(NoSuchFile,
199
control.transport.get,
202
def test_supports_external_lookups(self):
203
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
204
repo = weaverepo.RepositoryFormat6().initialize(control)
205
self.assertFalse(repo._format.supports_external_lookups)
208
class TestFormat7(TestCaseWithTransport):
210
def test_attribute__fetch_order(self):
211
"""Weaves need topological data insertion."""
212
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
213
repo = weaverepo.RepositoryFormat7().initialize(control)
214
self.assertEqual('topological', repo._format._fetch_order)
216
def test_attribute__fetch_uses_deltas(self):
217
"""Weaves do not reuse deltas."""
218
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
219
repo = weaverepo.RepositoryFormat7().initialize(control)
220
self.assertEqual(False, repo._format._fetch_uses_deltas)
222
def test_attribute__fetch_reconcile(self):
223
"""Weave repositories need a reconcile after fetch."""
224
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
225
repo = weaverepo.RepositoryFormat7().initialize(control)
226
self.assertEqual(True, repo._format._fetch_reconcile)
228
def test_disk_layout(self):
229
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
230
repo = weaverepo.RepositoryFormat7().initialize(control)
231
# in case of side effects of locking.
235
# format 'Bazaar-NG Repository format 7'
237
# inventory.weave == empty_weave
238
# empty revision-store directory
239
# empty weaves directory
240
t = control.get_repository_transport(None)
241
self.assertEqualDiff('Bazaar-NG Repository format 7',
242
t.get('format').read())
243
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
244
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
245
self.assertEqualDiff('# bzr weave file v5\n'
248
t.get('inventory.weave').read())
249
# Creating a file with id Foo:Bar results in a non-escaped file name on
251
control.create_branch()
252
tree = control.create_workingtree()
253
tree.add(['foo'], ['Foo:Bar'], ['file'])
254
tree.put_file_bytes_non_atomic('Foo:Bar', 'content\n')
255
tree.commit('first post', rev_id='first')
256
self.assertEqualDiff(
257
'# bzr weave file v5\n'
259
'1 7fe70820e08a1aac0ef224d9c66ab66831cc4ab1\n'
267
t.get('weaves/74/Foo%3ABar.weave').read())
269
def test_shared_disk_layout(self):
270
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
271
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
273
# format 'Bazaar-NG Repository format 7'
274
# inventory.weave == empty_weave
275
# empty revision-store directory
276
# empty weaves directory
277
# a 'shared-storage' marker file.
278
# lock is not present when unlocked
279
t = control.get_repository_transport(None)
280
self.assertEqualDiff('Bazaar-NG Repository format 7',
281
t.get('format').read())
282
self.assertEqualDiff('', t.get('shared-storage').read())
283
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
284
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
285
self.assertEqualDiff('# bzr weave file v5\n'
288
t.get('inventory.weave').read())
289
self.assertFalse(t.has('branch-lock'))
291
def test_creates_lockdir(self):
292
"""Make sure it appears to be controlled by a LockDir existence"""
293
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
294
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
295
t = control.get_repository_transport(None)
296
# TODO: Should check there is a 'lock' toplevel directory,
297
# regardless of contents
298
self.assertFalse(t.has('lock/held/info'))
301
self.assertTrue(t.has('lock/held/info'))
303
# unlock so we don't get a warning about failing to do so
306
def test_uses_lockdir(self):
307
"""repo format 7 actually locks on lockdir"""
308
base_url = self.get_url()
309
control = bzrdir.BzrDirMetaFormat1().initialize(base_url)
310
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
311
t = control.get_repository_transport(None)
315
# make sure the same lock is created by opening it
316
repo = repository.Repository.open(base_url)
318
self.assertTrue(t.has('lock/held/info'))
320
self.assertFalse(t.has('lock/held/info'))
322
def test_shared_no_tree_disk_layout(self):
323
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
324
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
325
repo.set_make_working_trees(False)
327
# format 'Bazaar-NG Repository format 7'
329
# inventory.weave == empty_weave
330
# empty revision-store directory
331
# empty weaves directory
332
# a 'shared-storage' marker file.
333
t = control.get_repository_transport(None)
334
self.assertEqualDiff('Bazaar-NG Repository format 7',
335
t.get('format').read())
336
## self.assertEqualDiff('', t.get('lock').read())
337
self.assertEqualDiff('', t.get('shared-storage').read())
338
self.assertEqualDiff('', t.get('no-working-trees').read())
339
repo.set_make_working_trees(True)
340
self.assertFalse(t.has('no-working-trees'))
341
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
342
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
343
self.assertEqualDiff('# bzr weave file v5\n'
346
t.get('inventory.weave').read())
348
def test_supports_external_lookups(self):
349
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
350
repo = weaverepo.RepositoryFormat7().initialize(control)
351
self.assertFalse(repo._format.supports_external_lookups)
354
class TestFormatKnit1(TestCaseWithTransport):
356
def test_attribute__fetch_order(self):
357
"""Knits need topological data insertion."""
358
repo = self.make_repository('.',
359
format=bzrdir.format_registry.get('knit')())
360
self.assertEqual('topological', repo._format._fetch_order)
362
def test_attribute__fetch_uses_deltas(self):
363
"""Knits reuse deltas."""
364
repo = self.make_repository('.',
365
format=bzrdir.format_registry.get('knit')())
366
self.assertEqual(True, repo._format._fetch_uses_deltas)
368
def test_disk_layout(self):
369
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
370
repo = knitrepo.RepositoryFormatKnit1().initialize(control)
371
# in case of side effects of locking.
375
# format 'Bazaar-NG Knit Repository Format 1'
376
# lock: is a directory
377
# inventory.weave == empty_weave
378
# empty revision-store directory
379
# empty weaves directory
380
t = control.get_repository_transport(None)
381
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
382
t.get('format').read())
383
# XXX: no locks left when unlocked at the moment
384
# self.assertEqualDiff('', t.get('lock').read())
385
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
387
# Check per-file knits.
388
branch = control.create_branch()
389
tree = control.create_workingtree()
390
tree.add(['foo'], ['Nasty-IdC:'], ['file'])
391
tree.put_file_bytes_non_atomic('Nasty-IdC:', '')
392
tree.commit('1st post', rev_id='foo')
393
self.assertHasKnit(t, 'knits/e8/%254easty-%2549d%2543%253a',
394
'\nfoo fulltext 0 81 :')
396
def assertHasKnit(self, t, knit_name, extra_content=''):
397
"""Assert that knit_name exists on t."""
398
self.assertEqualDiff('# bzr knit index 8\n' + extra_content,
399
t.get(knit_name + '.kndx').read())
401
def check_knits(self, t):
402
"""check knit content for a repository."""
403
self.assertHasKnit(t, 'inventory')
404
self.assertHasKnit(t, 'revisions')
405
self.assertHasKnit(t, 'signatures')
407
def test_shared_disk_layout(self):
408
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
409
repo = knitrepo.RepositoryFormatKnit1().initialize(control, shared=True)
411
# format 'Bazaar-NG Knit Repository Format 1'
412
# lock: is a directory
413
# inventory.weave == empty_weave
414
# empty revision-store directory
415
# empty weaves directory
416
# a 'shared-storage' marker file.
417
t = control.get_repository_transport(None)
418
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
419
t.get('format').read())
420
# XXX: no locks left when unlocked at the moment
421
# self.assertEqualDiff('', t.get('lock').read())
422
self.assertEqualDiff('', t.get('shared-storage').read())
423
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
426
def test_shared_no_tree_disk_layout(self):
427
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
428
repo = knitrepo.RepositoryFormatKnit1().initialize(control, shared=True)
429
repo.set_make_working_trees(False)
431
# format 'Bazaar-NG Knit Repository Format 1'
433
# inventory.weave == empty_weave
434
# empty revision-store directory
435
# empty weaves directory
436
# a 'shared-storage' marker file.
437
t = control.get_repository_transport(None)
438
self.assertEqualDiff('Bazaar-NG Knit Repository Format 1',
439
t.get('format').read())
440
# XXX: no locks left when unlocked at the moment
441
# self.assertEqualDiff('', t.get('lock').read())
442
self.assertEqualDiff('', t.get('shared-storage').read())
443
self.assertEqualDiff('', t.get('no-working-trees').read())
444
repo.set_make_working_trees(True)
445
self.assertFalse(t.has('no-working-trees'))
446
self.assertTrue(S_ISDIR(t.stat('knits').st_mode))
449
def test_deserialise_sets_root_revision(self):
450
"""We must have a inventory.root.revision
452
Old versions of the XML5 serializer did not set the revision_id for
453
the whole inventory. So we grab the one from the expected text. Which
454
is valid when the api is not being abused.
456
repo = self.make_repository('.',
457
format=bzrdir.format_registry.get('knit')())
458
inv_xml = '<inventory format="5">\n</inventory>\n'
459
inv = repo.deserialise_inventory('test-rev-id', inv_xml)
460
self.assertEqual('test-rev-id', inv.root.revision)
462
def test_deserialise_uses_global_revision_id(self):
463
"""If it is set, then we re-use the global revision id"""
464
repo = self.make_repository('.',
465
format=bzrdir.format_registry.get('knit')())
466
inv_xml = ('<inventory format="5" revision_id="other-rev-id">\n'
468
# Arguably, the deserialise_inventory should detect a mismatch, and
469
# raise an error, rather than silently using one revision_id over the
471
self.assertRaises(AssertionError, repo.deserialise_inventory,
472
'test-rev-id', inv_xml)
473
inv = repo.deserialise_inventory('other-rev-id', inv_xml)
474
self.assertEqual('other-rev-id', inv.root.revision)
476
def test_supports_external_lookups(self):
477
repo = self.make_repository('.',
478
format=bzrdir.format_registry.get('knit')())
479
self.assertFalse(repo._format.supports_external_lookups)
482
class DummyRepository(object):
483
"""A dummy repository for testing."""
488
def supports_rich_root(self):
489
if self._format is not None:
490
return self._format.rich_root_data
494
raise NotImplementedError
496
def get_parent_map(self, revision_ids):
497
raise NotImplementedError
500
class InterDummy(repository.InterRepository):
501
"""An inter-repository optimised code path for DummyRepository.
503
This is for use during testing where we use DummyRepository as repositories
504
so that none of the default regsitered inter-repository classes will
509
def is_compatible(repo_source, repo_target):
510
"""InterDummy is compatible with DummyRepository."""
511
return (isinstance(repo_source, DummyRepository) and
512
isinstance(repo_target, DummyRepository))
515
class TestInterRepository(TestCaseWithTransport):
517
def test_get_default_inter_repository(self):
518
# test that the InterRepository.get(repo_a, repo_b) probes
519
# for a inter_repo class where is_compatible(repo_a, repo_b) returns
520
# true and returns a default inter_repo otherwise.
521
# This also tests that the default registered optimised interrepository
522
# classes do not barf inappropriately when a surprising repository type
524
dummy_a = DummyRepository()
525
dummy_b = DummyRepository()
526
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
528
def assertGetsDefaultInterRepository(self, repo_a, repo_b):
529
"""Asserts that InterRepository.get(repo_a, repo_b) -> the default.
531
The effective default is now InterSameDataRepository because there is
532
no actual sane default in the presence of incompatible data models.
534
inter_repo = repository.InterRepository.get(repo_a, repo_b)
535
self.assertEqual(repository.InterSameDataRepository,
536
inter_repo.__class__)
537
self.assertEqual(repo_a, inter_repo.source)
538
self.assertEqual(repo_b, inter_repo.target)
540
def test_register_inter_repository_class(self):
541
# test that a optimised code path provider - a
542
# InterRepository subclass can be registered and unregistered
543
# and that it is correctly selected when given a repository
544
# pair that it returns true on for the is_compatible static method
546
dummy_a = DummyRepository()
547
dummy_a._format = RepositoryFormat()
548
dummy_b = DummyRepository()
549
dummy_b._format = RepositoryFormat()
550
repo = self.make_repository('.')
551
# hack dummies to look like repo somewhat.
552
dummy_a._serializer = repo._serializer
553
dummy_a._format.supports_tree_reference = repo._format.supports_tree_reference
554
dummy_a._format.rich_root_data = repo._format.rich_root_data
555
dummy_b._serializer = repo._serializer
556
dummy_b._format.supports_tree_reference = repo._format.supports_tree_reference
557
dummy_b._format.rich_root_data = repo._format.rich_root_data
558
repository.InterRepository.register_optimiser(InterDummy)
560
# we should get the default for something InterDummy returns False
562
self.assertFalse(InterDummy.is_compatible(dummy_a, repo))
563
self.assertGetsDefaultInterRepository(dummy_a, repo)
564
# and we should get an InterDummy for a pair it 'likes'
565
self.assertTrue(InterDummy.is_compatible(dummy_a, dummy_b))
566
inter_repo = repository.InterRepository.get(dummy_a, dummy_b)
567
self.assertEqual(InterDummy, inter_repo.__class__)
568
self.assertEqual(dummy_a, inter_repo.source)
569
self.assertEqual(dummy_b, inter_repo.target)
571
repository.InterRepository.unregister_optimiser(InterDummy)
572
# now we should get the default InterRepository object again.
573
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
576
class TestInterWeaveRepo(TestCaseWithTransport):
578
def test_is_compatible_and_registered(self):
579
# InterWeaveRepo is compatible when either side
580
# is a format 5/6/7 branch
581
from bzrlib.repofmt import knitrepo, weaverepo
582
formats = [weaverepo.RepositoryFormat5(),
583
weaverepo.RepositoryFormat6(),
584
weaverepo.RepositoryFormat7()]
585
incompatible_formats = [weaverepo.RepositoryFormat4(),
586
knitrepo.RepositoryFormatKnit1(),
588
repo_a = self.make_repository('a')
589
repo_b = self.make_repository('b')
590
is_compatible = repository.InterWeaveRepo.is_compatible
591
for source in incompatible_formats:
592
# force incompatible left then right
593
repo_a._format = source
594
repo_b._format = formats[0]
595
self.assertFalse(is_compatible(repo_a, repo_b))
596
self.assertFalse(is_compatible(repo_b, repo_a))
597
for source in formats:
598
repo_a._format = source
599
for target in formats:
600
repo_b._format = target
601
self.assertTrue(is_compatible(repo_a, repo_b))
602
self.assertEqual(repository.InterWeaveRepo,
603
repository.InterRepository.get(repo_a,
607
class TestRepositoryConverter(TestCaseWithTransport):
609
def test_convert_empty(self):
610
t = get_transport(self.get_url('.'))
611
t.mkdir('repository')
612
repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
613
repo = weaverepo.RepositoryFormat7().initialize(repo_dir)
614
target_format = knitrepo.RepositoryFormatKnit1()
615
converter = repository.CopyConverter(target_format)
616
pb = bzrlib.ui.ui_factory.nested_progress_bar()
618
converter.convert(repo, pb)
621
repo = repo_dir.open_repository()
622
self.assertTrue(isinstance(target_format, repo._format.__class__))
625
class TestMisc(TestCase):
627
def test_unescape_xml(self):
628
"""We get some kind of error when malformed entities are passed"""
629
self.assertRaises(KeyError, repository._unescape_xml, 'foo&bar;')
632
class TestRepositoryFormatKnit3(TestCaseWithTransport):
634
def test_attribute__fetch_order(self):
635
"""Knits need topological data insertion."""
636
format = bzrdir.BzrDirMetaFormat1()
637
format.repository_format = knitrepo.RepositoryFormatKnit3()
638
repo = self.make_repository('.', format=format)
639
self.assertEqual('topological', repo._format._fetch_order)
641
def test_attribute__fetch_uses_deltas(self):
642
"""Knits reuse deltas."""
643
format = bzrdir.BzrDirMetaFormat1()
644
format.repository_format = knitrepo.RepositoryFormatKnit3()
645
repo = self.make_repository('.', format=format)
646
self.assertEqual(True, repo._format._fetch_uses_deltas)
648
def test_convert(self):
649
"""Ensure the upgrade adds weaves for roots"""
650
format = bzrdir.BzrDirMetaFormat1()
651
format.repository_format = knitrepo.RepositoryFormatKnit1()
652
tree = self.make_branch_and_tree('.', format)
653
tree.commit("Dull commit", rev_id="dull")
654
revision_tree = tree.branch.repository.revision_tree('dull')
655
revision_tree.lock_read()
657
self.assertRaises(errors.NoSuchFile, revision_tree.get_file_lines,
658
revision_tree.inventory.root.file_id)
660
revision_tree.unlock()
661
format = bzrdir.BzrDirMetaFormat1()
662
format.repository_format = knitrepo.RepositoryFormatKnit3()
663
upgrade.Convert('.', format)
664
tree = workingtree.WorkingTree.open('.')
665
revision_tree = tree.branch.repository.revision_tree('dull')
666
revision_tree.lock_read()
668
revision_tree.get_file_lines(revision_tree.inventory.root.file_id)
670
revision_tree.unlock()
671
tree.commit("Another dull commit", rev_id='dull2')
672
revision_tree = tree.branch.repository.revision_tree('dull2')
673
revision_tree.lock_read()
674
self.addCleanup(revision_tree.unlock)
675
self.assertEqual('dull', revision_tree.inventory.root.revision)
677
def test_supports_external_lookups(self):
678
format = bzrdir.BzrDirMetaFormat1()
679
format.repository_format = knitrepo.RepositoryFormatKnit3()
680
repo = self.make_repository('.', format=format)
681
self.assertFalse(repo._format.supports_external_lookups)
684
class Test2a(TestCaseWithTransport):
686
def test_fetch_combines_groups(self):
687
builder = self.make_branch_builder('source', format='2a')
688
builder.start_series()
689
builder.build_snapshot('1', None, [
690
('add', ('', 'root-id', 'directory', '')),
691
('add', ('file', 'file-id', 'file', 'content\n'))])
692
builder.build_snapshot('2', ['1'], [
693
('modify', ('file-id', 'content-2\n'))])
694
builder.finish_series()
695
source = builder.get_branch()
696
target = self.make_repository('target', format='2a')
697
target.fetch(source.repository)
699
self.addCleanup(target.unlock)
700
details = target.texts._index.get_build_details(
701
[('file-id', '1',), ('file-id', '2',)])
702
file_1_details = details[('file-id', '1')]
703
file_2_details = details[('file-id', '2')]
704
# The index, and what to read off disk, should be the same for both
705
# versions of the file.
706
self.assertEqual(file_1_details[0][:3], file_2_details[0][:3])
708
def test_format_pack_compresses_True(self):
709
repo = self.make_repository('repo', format='2a')
710
self.assertTrue(repo._format.pack_compresses)
712
def test_inventories_use_chk_map_with_parent_base_dict(self):
713
tree = self.make_branch_and_tree('repo', format="2a")
714
revid = tree.commit("foo")
716
self.addCleanup(tree.unlock)
717
inv = tree.branch.repository.get_inventory(revid)
718
self.assertNotEqual(None, inv.parent_id_basename_to_file_id)
719
inv.parent_id_basename_to_file_id._ensure_root()
720
inv.id_to_entry._ensure_root()
721
self.assertEqual(65536, inv.id_to_entry._root_node.maximum_size)
722
self.assertEqual(65536,
723
inv.parent_id_basename_to_file_id._root_node.maximum_size)
725
def test_autopack_unchanged_chk_nodes(self):
726
# at 20 unchanged commits, chk pages are packed that are split into
727
# two groups such that the new pack being made doesn't have all its
728
# pages in the source packs (though they are in the repository).
729
tree = self.make_branch_and_tree('tree', format='2a')
730
for pos in range(20):
731
tree.commit(str(pos))
733
def test_pack_with_hint(self):
734
tree = self.make_branch_and_tree('tree', format='2a')
735
# 1 commit to leave untouched
737
to_keep = tree.branch.repository._pack_collection.names()
741
all = tree.branch.repository._pack_collection.names()
742
combine = list(set(all) - set(to_keep))
743
self.assertLength(3, all)
744
self.assertLength(2, combine)
745
tree.branch.repository.pack(hint=combine)
746
final = tree.branch.repository._pack_collection.names()
747
self.assertLength(2, final)
748
self.assertFalse(combine[0] in final)
749
self.assertFalse(combine[1] in final)
750
self.assertSubset(to_keep, final)
752
def test_stream_source_to_gc(self):
753
source = self.make_repository('source', format='2a')
754
target = self.make_repository('target', format='2a')
755
stream = source._get_source(target._format)
756
self.assertIsInstance(stream, groupcompress_repo.GroupCHKStreamSource)
758
def test_stream_source_to_non_gc(self):
759
source = self.make_repository('source', format='2a')
760
target = self.make_repository('target', format='rich-root-pack')
761
stream = source._get_source(target._format)
762
# We don't want the child GroupCHKStreamSource
763
self.assertIs(type(stream), repository.StreamSource)
765
def test_get_stream_for_missing_keys_includes_all_chk_refs(self):
766
source_builder = self.make_branch_builder('source',
768
# We have to build a fairly large tree, so that we are sure the chk
769
# pages will have split into multiple pages.
770
entries = [('add', ('', 'a-root-id', 'directory', None))]
771
for i in 'abcdefghijklmnopqrstuvwxyz123456789':
772
for j in 'abcdefghijklmnopqrstuvwxyz123456789':
775
content = 'content for %s\n' % (fname,)
776
entries.append(('add', (fname, fid, 'file', content)))
777
source_builder.start_series()
778
source_builder.build_snapshot('rev-1', None, entries)
779
# Now change a few of them, so we get a few new pages for the second
781
source_builder.build_snapshot('rev-2', ['rev-1'], [
782
('modify', ('aa-id', 'new content for aa-id\n')),
783
('modify', ('cc-id', 'new content for cc-id\n')),
784
('modify', ('zz-id', 'new content for zz-id\n')),
786
source_builder.finish_series()
787
source_branch = source_builder.get_branch()
788
source_branch.lock_read()
789
self.addCleanup(source_branch.unlock)
790
target = self.make_repository('target', format='2a')
791
source = source_branch.repository._get_source(target._format)
792
self.assertIsInstance(source, groupcompress_repo.GroupCHKStreamSource)
794
# On a regular pass, getting the inventories and chk pages for rev-2
795
# would only get the newly created chk pages
796
search = graph.SearchResult(set(['rev-2']), set(['rev-1']), 1,
798
simple_chk_records = []
799
for vf_name, substream in source.get_stream(search):
800
if vf_name == 'chk_bytes':
801
for record in substream:
802
simple_chk_records.append(record.key)
806
# 3 pages, the root (InternalNode), + 2 pages which actually changed
807
self.assertEqual([('sha1:91481f539e802c76542ea5e4c83ad416bf219f73',),
808
('sha1:4ff91971043668583985aec83f4f0ab10a907d3f',),
809
('sha1:81e7324507c5ca132eedaf2d8414ee4bb2226187',),
810
('sha1:b101b7da280596c71a4540e9a1eeba8045985ee0',)],
812
# Now, when we do a similar call using 'get_stream_for_missing_keys'
813
# we should get a much larger set of pages.
814
missing = [('inventories', 'rev-2')]
815
full_chk_records = []
816
for vf_name, substream in source.get_stream_for_missing_keys(missing):
817
if vf_name == 'inventories':
818
for record in substream:
819
self.assertEqual(('rev-2',), record.key)
820
elif vf_name == 'chk_bytes':
821
for record in substream:
822
full_chk_records.append(record.key)
824
self.fail('Should not be getting a stream of %s' % (vf_name,))
825
# We have 257 records now. This is because we have 1 root page, and 256
826
# leaf pages in a complete listing.
827
self.assertEqual(257, len(full_chk_records))
828
self.assertSubset(simple_chk_records, full_chk_records)
830
def test_inconsistency_fatal(self):
831
repo = self.make_repository('repo', format='2a')
832
self.assertTrue(repo.revisions._index._inconsistency_fatal)
833
self.assertFalse(repo.texts._index._inconsistency_fatal)
834
self.assertFalse(repo.inventories._index._inconsistency_fatal)
835
self.assertFalse(repo.signatures._index._inconsistency_fatal)
836
self.assertFalse(repo.chk_bytes._index._inconsistency_fatal)
839
class TestKnitPackStreamSource(tests.TestCaseWithMemoryTransport):
841
def test_source_to_exact_pack_092(self):
842
source = self.make_repository('source', format='pack-0.92')
843
target = self.make_repository('target', format='pack-0.92')
844
stream_source = source._get_source(target._format)
845
self.assertIsInstance(stream_source, pack_repo.KnitPackStreamSource)
847
def test_source_to_exact_pack_rich_root_pack(self):
848
source = self.make_repository('source', format='rich-root-pack')
849
target = self.make_repository('target', format='rich-root-pack')
850
stream_source = source._get_source(target._format)
851
self.assertIsInstance(stream_source, pack_repo.KnitPackStreamSource)
853
def test_source_to_exact_pack_19(self):
854
source = self.make_repository('source', format='1.9')
855
target = self.make_repository('target', format='1.9')
856
stream_source = source._get_source(target._format)
857
self.assertIsInstance(stream_source, pack_repo.KnitPackStreamSource)
859
def test_source_to_exact_pack_19_rich_root(self):
860
source = self.make_repository('source', format='1.9-rich-root')
861
target = self.make_repository('target', format='1.9-rich-root')
862
stream_source = source._get_source(target._format)
863
self.assertIsInstance(stream_source, pack_repo.KnitPackStreamSource)
865
def test_source_to_remote_exact_pack_19(self):
866
trans = self.make_smart_server('target')
868
source = self.make_repository('source', format='1.9')
869
target = self.make_repository('target', format='1.9')
870
target = repository.Repository.open(trans.base)
871
stream_source = source._get_source(target._format)
872
self.assertIsInstance(stream_source, pack_repo.KnitPackStreamSource)
874
def test_stream_source_to_non_exact(self):
875
source = self.make_repository('source', format='pack-0.92')
876
target = self.make_repository('target', format='1.9')
877
stream = source._get_source(target._format)
878
self.assertIs(type(stream), repository.StreamSource)
880
def test_stream_source_to_non_exact_rich_root(self):
881
source = self.make_repository('source', format='1.9')
882
target = self.make_repository('target', format='1.9-rich-root')
883
stream = source._get_source(target._format)
884
self.assertIs(type(stream), repository.StreamSource)
886
def test_source_to_remote_non_exact_pack_19(self):
887
trans = self.make_smart_server('target')
889
source = self.make_repository('source', format='1.9')
890
target = self.make_repository('target', format='1.6')
891
target = repository.Repository.open(trans.base)
892
stream_source = source._get_source(target._format)
893
self.assertIs(type(stream_source), repository.StreamSource)
895
def test_stream_source_to_knit(self):
896
source = self.make_repository('source', format='pack-0.92')
897
target = self.make_repository('target', format='dirstate')
898
stream = source._get_source(target._format)
899
self.assertIs(type(stream), repository.StreamSource)
902
class TestDevelopment6FindParentIdsOfRevisions(TestCaseWithTransport):
903
"""Tests for _find_parent_ids_of_revisions."""
906
super(TestDevelopment6FindParentIdsOfRevisions, self).setUp()
907
self.builder = self.make_branch_builder('source',
908
format='development6-rich-root')
909
self.builder.start_series()
910
self.builder.build_snapshot('initial', None,
911
[('add', ('', 'tree-root', 'directory', None))])
912
self.repo = self.builder.get_branch().repository
913
self.addCleanup(self.builder.finish_series)
915
def assertParentIds(self, expected_result, rev_set):
916
self.assertEqual(sorted(expected_result),
917
sorted(self.repo._find_parent_ids_of_revisions(rev_set)))
919
def test_simple(self):
920
self.builder.build_snapshot('revid1', None, [])
921
self.builder.build_snapshot('revid2', ['revid1'], [])
923
self.assertParentIds(['revid1'], rev_set)
925
def test_not_first_parent(self):
926
self.builder.build_snapshot('revid1', None, [])
927
self.builder.build_snapshot('revid2', ['revid1'], [])
928
self.builder.build_snapshot('revid3', ['revid2'], [])
929
rev_set = ['revid3', 'revid2']
930
self.assertParentIds(['revid1'], rev_set)
932
def test_not_null(self):
933
rev_set = ['initial']
934
self.assertParentIds([], rev_set)
936
def test_not_null_set(self):
937
self.builder.build_snapshot('revid1', None, [])
938
rev_set = [_mod_revision.NULL_REVISION]
939
self.assertParentIds([], rev_set)
941
def test_ghost(self):
942
self.builder.build_snapshot('revid1', None, [])
943
rev_set = ['ghost', 'revid1']
944
self.assertParentIds(['initial'], rev_set)
946
def test_ghost_parent(self):
947
self.builder.build_snapshot('revid1', None, [])
948
self.builder.build_snapshot('revid2', ['revid1', 'ghost'], [])
949
rev_set = ['revid2', 'revid1']
950
self.assertParentIds(['ghost', 'initial'], rev_set)
952
def test_righthand_parent(self):
953
self.builder.build_snapshot('revid1', None, [])
954
self.builder.build_snapshot('revid2a', ['revid1'], [])
955
self.builder.build_snapshot('revid2b', ['revid1'], [])
956
self.builder.build_snapshot('revid3', ['revid2a', 'revid2b'], [])
957
rev_set = ['revid3', 'revid2a']
958
self.assertParentIds(['revid1', 'revid2b'], rev_set)
961
class TestWithBrokenRepo(TestCaseWithTransport):
962
"""These tests seem to be more appropriate as interface tests?"""
964
def make_broken_repository(self):
965
# XXX: This function is borrowed from Aaron's "Reconcile can fix bad
966
# parent references" branch which is due to land in bzr.dev soon. Once
967
# it does, this duplication should be removed.
968
repo = self.make_repository('broken-repo')
972
cleanups.append(repo.unlock)
973
repo.start_write_group()
974
cleanups.append(repo.commit_write_group)
975
# make rev1a: A well-formed revision, containing 'file1'
976
inv = inventory.Inventory(revision_id='rev1a')
977
inv.root.revision = 'rev1a'
978
self.add_file(repo, inv, 'file1', 'rev1a', [])
979
repo.texts.add_lines((inv.root.file_id, 'rev1a'), [], [])
980
repo.add_inventory('rev1a', inv, [])
981
revision = _mod_revision.Revision('rev1a',
982
committer='jrandom@example.com', timestamp=0,
983
inventory_sha1='', timezone=0, message='foo', parent_ids=[])
984
repo.add_revision('rev1a',revision, inv)
986
# make rev1b, which has no Revision, but has an Inventory, and
988
inv = inventory.Inventory(revision_id='rev1b')
989
inv.root.revision = 'rev1b'
990
self.add_file(repo, inv, 'file1', 'rev1b', [])
991
repo.add_inventory('rev1b', inv, [])
993
# make rev2, with file1 and file2
995
# file1 has 'rev1b' as an ancestor, even though this is not
996
# mentioned by 'rev1a', making it an unreferenced ancestor
997
inv = inventory.Inventory()
998
self.add_file(repo, inv, 'file1', 'rev2', ['rev1a', 'rev1b'])
999
self.add_file(repo, inv, 'file2', 'rev2', [])
1000
self.add_revision(repo, 'rev2', inv, ['rev1a'])
1002
# make ghost revision rev1c
1003
inv = inventory.Inventory()
1004
self.add_file(repo, inv, 'file2', 'rev1c', [])
1006
# make rev3 with file2
1007
# file2 refers to 'rev1c', which is a ghost in this repository, so
1008
# file2 cannot have rev1c as its ancestor.
1009
inv = inventory.Inventory()
1010
self.add_file(repo, inv, 'file2', 'rev3', ['rev1c'])
1011
self.add_revision(repo, 'rev3', inv, ['rev1c'])
1014
for cleanup in reversed(cleanups):
1017
def add_revision(self, repo, revision_id, inv, parent_ids):
1018
inv.revision_id = revision_id
1019
inv.root.revision = revision_id
1020
repo.texts.add_lines((inv.root.file_id, revision_id), [], [])
1021
repo.add_inventory(revision_id, inv, parent_ids)
1022
revision = _mod_revision.Revision(revision_id,
1023
committer='jrandom@example.com', timestamp=0, inventory_sha1='',
1024
timezone=0, message='foo', parent_ids=parent_ids)
1025
repo.add_revision(revision_id,revision, inv)
1027
def add_file(self, repo, inv, filename, revision, parents):
1028
file_id = filename + '-id'
1029
entry = inventory.InventoryFile(file_id, filename, 'TREE_ROOT')
1030
entry.revision = revision
1033
text_key = (file_id, revision)
1034
parent_keys = [(file_id, parent) for parent in parents]
1035
repo.texts.add_lines(text_key, parent_keys, ['line\n'])
1037
def test_insert_from_broken_repo(self):
1038
"""Inserting a data stream from a broken repository won't silently
1039
corrupt the target repository.
1041
broken_repo = self.make_broken_repository()
1042
empty_repo = self.make_repository('empty-repo')
1044
empty_repo.fetch(broken_repo)
1045
except (errors.RevisionNotPresent, errors.BzrCheckError):
1046
# Test successful: compression parent not being copied leads to
1049
empty_repo.lock_read()
1050
self.addCleanup(empty_repo.unlock)
1051
text = empty_repo.texts.get_record_stream(
1052
[('file2-id', 'rev3')], 'topological', True).next()
1053
self.assertEqual('line\n', text.get_bytes_as('fulltext'))
1056
class TestRepositoryPackCollection(TestCaseWithTransport):
1058
def get_format(self):
1059
return bzrdir.format_registry.make_bzrdir('pack-0.92')
1061
def get_packs(self):
1062
format = self.get_format()
1063
repo = self.make_repository('.', format=format)
1064
return repo._pack_collection
1066
def make_packs_and_alt_repo(self, write_lock=False):
1067
"""Create a pack repo with 3 packs, and access it via a second repo."""
1068
tree = self.make_branch_and_tree('.', format=self.get_format())
1070
self.addCleanup(tree.unlock)
1071
rev1 = tree.commit('one')
1072
rev2 = tree.commit('two')
1073
rev3 = tree.commit('three')
1074
r = repository.Repository.open('.')
1079
self.addCleanup(r.unlock)
1080
packs = r._pack_collection
1081
packs.ensure_loaded()
1082
return tree, r, packs, [rev1, rev2, rev3]
1084
def test__max_pack_count(self):
1085
"""The maximum pack count is a function of the number of revisions."""
1086
# no revisions - one pack, so that we can have a revision free repo
1087
# without it blowing up
1088
packs = self.get_packs()
1089
self.assertEqual(1, packs._max_pack_count(0))
1090
# after that the sum of the digits, - check the first 1-9
1091
self.assertEqual(1, packs._max_pack_count(1))
1092
self.assertEqual(2, packs._max_pack_count(2))
1093
self.assertEqual(3, packs._max_pack_count(3))
1094
self.assertEqual(4, packs._max_pack_count(4))
1095
self.assertEqual(5, packs._max_pack_count(5))
1096
self.assertEqual(6, packs._max_pack_count(6))
1097
self.assertEqual(7, packs._max_pack_count(7))
1098
self.assertEqual(8, packs._max_pack_count(8))
1099
self.assertEqual(9, packs._max_pack_count(9))
1100
# check the boundary cases with two digits for the next decade
1101
self.assertEqual(1, packs._max_pack_count(10))
1102
self.assertEqual(2, packs._max_pack_count(11))
1103
self.assertEqual(10, packs._max_pack_count(19))
1104
self.assertEqual(2, packs._max_pack_count(20))
1105
self.assertEqual(3, packs._max_pack_count(21))
1106
# check some arbitrary big numbers
1107
self.assertEqual(25, packs._max_pack_count(112894))
1109
def test_pack_distribution_zero(self):
1110
packs = self.get_packs()
1111
self.assertEqual([0], packs.pack_distribution(0))
1113
def test_ensure_loaded_unlocked(self):
1114
packs = self.get_packs()
1115
self.assertRaises(errors.ObjectNotLocked,
1116
packs.ensure_loaded)
1118
def test_pack_distribution_one_to_nine(self):
1119
packs = self.get_packs()
1120
self.assertEqual([1],
1121
packs.pack_distribution(1))
1122
self.assertEqual([1, 1],
1123
packs.pack_distribution(2))
1124
self.assertEqual([1, 1, 1],
1125
packs.pack_distribution(3))
1126
self.assertEqual([1, 1, 1, 1],
1127
packs.pack_distribution(4))
1128
self.assertEqual([1, 1, 1, 1, 1],
1129
packs.pack_distribution(5))
1130
self.assertEqual([1, 1, 1, 1, 1, 1],
1131
packs.pack_distribution(6))
1132
self.assertEqual([1, 1, 1, 1, 1, 1, 1],
1133
packs.pack_distribution(7))
1134
self.assertEqual([1, 1, 1, 1, 1, 1, 1, 1],
1135
packs.pack_distribution(8))
1136
self.assertEqual([1, 1, 1, 1, 1, 1, 1, 1, 1],
1137
packs.pack_distribution(9))
1139
def test_pack_distribution_stable_at_boundaries(self):
1140
"""When there are multi-rev packs the counts are stable."""
1141
packs = self.get_packs()
1143
self.assertEqual([10], packs.pack_distribution(10))
1144
self.assertEqual([10, 1], packs.pack_distribution(11))
1145
self.assertEqual([10, 10], packs.pack_distribution(20))
1146
self.assertEqual([10, 10, 1], packs.pack_distribution(21))
1148
self.assertEqual([100], packs.pack_distribution(100))
1149
self.assertEqual([100, 1], packs.pack_distribution(101))
1150
self.assertEqual([100, 10, 1], packs.pack_distribution(111))
1151
self.assertEqual([100, 100], packs.pack_distribution(200))
1152
self.assertEqual([100, 100, 1], packs.pack_distribution(201))
1153
self.assertEqual([100, 100, 10, 1], packs.pack_distribution(211))
1155
def test_plan_pack_operations_2009_revisions_skip_all_packs(self):
1156
packs = self.get_packs()
1157
existing_packs = [(2000, "big"), (9, "medium")]
1158
# rev count - 2009 -> 2x1000 + 9x1
1159
pack_operations = packs.plan_autopack_combinations(
1160
existing_packs, [1000, 1000, 1, 1, 1, 1, 1, 1, 1, 1, 1])
1161
self.assertEqual([], pack_operations)
1163
def test_plan_pack_operations_2010_revisions_skip_all_packs(self):
1164
packs = self.get_packs()
1165
existing_packs = [(2000, "big"), (9, "medium"), (1, "single")]
1166
# rev count - 2010 -> 2x1000 + 1x10
1167
pack_operations = packs.plan_autopack_combinations(
1168
existing_packs, [1000, 1000, 10])
1169
self.assertEqual([], pack_operations)
1171
def test_plan_pack_operations_2010_combines_smallest_two(self):
1172
packs = self.get_packs()
1173
existing_packs = [(1999, "big"), (9, "medium"), (1, "single2"),
1175
# rev count - 2010 -> 2x1000 + 1x10 (3)
1176
pack_operations = packs.plan_autopack_combinations(
1177
existing_packs, [1000, 1000, 10])
1178
self.assertEqual([[2, ["single2", "single1"]]], pack_operations)
1180
def test_plan_pack_operations_creates_a_single_op(self):
1181
packs = self.get_packs()
1182
existing_packs = [(50, 'a'), (40, 'b'), (30, 'c'), (10, 'd'),
1183
(10, 'e'), (6, 'f'), (4, 'g')]
1184
# rev count 150 -> 1x100 and 5x10
1185
# The two size 10 packs do not need to be touched. The 50, 40, 30 would
1186
# be combined into a single 120 size pack, and the 6 & 4 would
1187
# becombined into a size 10 pack. However, if we have to rewrite them,
1188
# we save a pack file with no increased I/O by putting them into the
1190
distribution = packs.pack_distribution(150)
1191
pack_operations = packs.plan_autopack_combinations(existing_packs,
1193
self.assertEqual([[130, ['a', 'b', 'c', 'f', 'g']]], pack_operations)
1195
def test_all_packs_none(self):
1196
format = self.get_format()
1197
tree = self.make_branch_and_tree('.', format=format)
1199
self.addCleanup(tree.unlock)
1200
packs = tree.branch.repository._pack_collection
1201
packs.ensure_loaded()
1202
self.assertEqual([], packs.all_packs())
1204
def test_all_packs_one(self):
1205
format = self.get_format()
1206
tree = self.make_branch_and_tree('.', format=format)
1207
tree.commit('start')
1209
self.addCleanup(tree.unlock)
1210
packs = tree.branch.repository._pack_collection
1211
packs.ensure_loaded()
1213
packs.get_pack_by_name(packs.names()[0])],
1216
def test_all_packs_two(self):
1217
format = self.get_format()
1218
tree = self.make_branch_and_tree('.', format=format)
1219
tree.commit('start')
1220
tree.commit('continue')
1222
self.addCleanup(tree.unlock)
1223
packs = tree.branch.repository._pack_collection
1224
packs.ensure_loaded()
1226
packs.get_pack_by_name(packs.names()[0]),
1227
packs.get_pack_by_name(packs.names()[1]),
1228
], packs.all_packs())
1230
def test_get_pack_by_name(self):
1231
format = self.get_format()
1232
tree = self.make_branch_and_tree('.', format=format)
1233
tree.commit('start')
1235
self.addCleanup(tree.unlock)
1236
packs = tree.branch.repository._pack_collection
1238
packs.ensure_loaded()
1239
name = packs.names()[0]
1240
pack_1 = packs.get_pack_by_name(name)
1241
# the pack should be correctly initialised
1242
sizes = packs._names[name]
1243
rev_index = GraphIndex(packs._index_transport, name + '.rix', sizes[0])
1244
inv_index = GraphIndex(packs._index_transport, name + '.iix', sizes[1])
1245
txt_index = GraphIndex(packs._index_transport, name + '.tix', sizes[2])
1246
sig_index = GraphIndex(packs._index_transport, name + '.six', sizes[3])
1247
self.assertEqual(pack_repo.ExistingPack(packs._pack_transport,
1248
name, rev_index, inv_index, txt_index, sig_index), pack_1)
1249
# and the same instance should be returned on successive calls.
1250
self.assertTrue(pack_1 is packs.get_pack_by_name(name))
1252
def test_reload_pack_names_new_entry(self):
1253
tree, r, packs, revs = self.make_packs_and_alt_repo()
1254
names = packs.names()
1255
# Add a new pack file into the repository
1256
rev4 = tree.commit('four')
1257
new_names = tree.branch.repository._pack_collection.names()
1258
new_name = set(new_names).difference(names)
1259
self.assertEqual(1, len(new_name))
1260
new_name = new_name.pop()
1261
# The old collection hasn't noticed yet
1262
self.assertEqual(names, packs.names())
1263
self.assertTrue(packs.reload_pack_names())
1264
self.assertEqual(new_names, packs.names())
1265
# And the repository can access the new revision
1266
self.assertEqual({rev4:(revs[-1],)}, r.get_parent_map([rev4]))
1267
self.assertFalse(packs.reload_pack_names())
1269
def test_reload_pack_names_added_and_removed(self):
1270
tree, r, packs, revs = self.make_packs_and_alt_repo()
1271
names = packs.names()
1272
# Now repack the whole thing
1273
tree.branch.repository.pack()
1274
new_names = tree.branch.repository._pack_collection.names()
1275
# The other collection hasn't noticed yet
1276
self.assertEqual(names, packs.names())
1277
self.assertTrue(packs.reload_pack_names())
1278
self.assertEqual(new_names, packs.names())
1279
self.assertEqual({revs[-1]:(revs[-2],)}, r.get_parent_map([revs[-1]]))
1280
self.assertFalse(packs.reload_pack_names())
1282
def test_autopack_reloads_and_stops(self):
1283
tree, r, packs, revs = self.make_packs_and_alt_repo(write_lock=True)
1284
# After we have determined what needs to be autopacked, trigger a
1285
# full-pack via the other repo which will cause us to re-evaluate and
1286
# decide we don't need to do anything
1287
orig_execute = packs._execute_pack_operations
1288
def _munged_execute_pack_ops(*args, **kwargs):
1289
tree.branch.repository.pack()
1290
return orig_execute(*args, **kwargs)
1291
packs._execute_pack_operations = _munged_execute_pack_ops
1292
packs._max_pack_count = lambda x: 1
1293
packs.pack_distribution = lambda x: [10]
1294
self.assertFalse(packs.autopack())
1295
self.assertEqual(1, len(packs.names()))
1296
self.assertEqual(tree.branch.repository._pack_collection.names(),
1300
class TestPack(TestCaseWithTransport):
1301
"""Tests for the Pack object."""
1303
def assertCurrentlyEqual(self, left, right):
1304
self.assertTrue(left == right)
1305
self.assertTrue(right == left)
1306
self.assertFalse(left != right)
1307
self.assertFalse(right != left)
1309
def assertCurrentlyNotEqual(self, left, right):
1310
self.assertFalse(left == right)
1311
self.assertFalse(right == left)
1312
self.assertTrue(left != right)
1313
self.assertTrue(right != left)
1315
def test___eq____ne__(self):
1316
left = pack_repo.ExistingPack('', '', '', '', '', '')
1317
right = pack_repo.ExistingPack('', '', '', '', '', '')
1318
self.assertCurrentlyEqual(left, right)
1319
# change all attributes and ensure equality changes as we do.
1320
left.revision_index = 'a'
1321
self.assertCurrentlyNotEqual(left, right)
1322
right.revision_index = 'a'
1323
self.assertCurrentlyEqual(left, right)
1324
left.inventory_index = 'a'
1325
self.assertCurrentlyNotEqual(left, right)
1326
right.inventory_index = 'a'
1327
self.assertCurrentlyEqual(left, right)
1328
left.text_index = 'a'
1329
self.assertCurrentlyNotEqual(left, right)
1330
right.text_index = 'a'
1331
self.assertCurrentlyEqual(left, right)
1332
left.signature_index = 'a'
1333
self.assertCurrentlyNotEqual(left, right)
1334
right.signature_index = 'a'
1335
self.assertCurrentlyEqual(left, right)
1337
self.assertCurrentlyNotEqual(left, right)
1339
self.assertCurrentlyEqual(left, right)
1340
left.transport = 'a'
1341
self.assertCurrentlyNotEqual(left, right)
1342
right.transport = 'a'
1343
self.assertCurrentlyEqual(left, right)
1345
def test_file_name(self):
1346
pack = pack_repo.ExistingPack('', 'a_name', '', '', '', '')
1347
self.assertEqual('a_name.pack', pack.file_name())
1350
class TestNewPack(TestCaseWithTransport):
1351
"""Tests for pack_repo.NewPack."""
1353
def test_new_instance_attributes(self):
1354
upload_transport = self.get_transport('upload')
1355
pack_transport = self.get_transport('pack')
1356
index_transport = self.get_transport('index')
1357
upload_transport.mkdir('.')
1358
collection = pack_repo.RepositoryPackCollection(
1360
transport=self.get_transport('.'),
1361
index_transport=index_transport,
1362
upload_transport=upload_transport,
1363
pack_transport=pack_transport,
1364
index_builder_class=BTreeBuilder,
1365
index_class=BTreeGraphIndex,
1366
use_chk_index=False)
1367
pack = pack_repo.NewPack(collection)
1368
self.assertIsInstance(pack.revision_index, BTreeBuilder)
1369
self.assertIsInstance(pack.inventory_index, BTreeBuilder)
1370
self.assertIsInstance(pack._hash, type(osutils.md5()))
1371
self.assertTrue(pack.upload_transport is upload_transport)
1372
self.assertTrue(pack.index_transport is index_transport)
1373
self.assertTrue(pack.pack_transport is pack_transport)
1374
self.assertEqual(None, pack.index_sizes)
1375
self.assertEqual(20, len(pack.random_name))
1376
self.assertIsInstance(pack.random_name, str)
1377
self.assertIsInstance(pack.start_time, float)
1380
class TestPacker(TestCaseWithTransport):
1381
"""Tests for the packs repository Packer class."""
1383
def test_pack_optimizes_pack_order(self):
1384
builder = self.make_branch_builder('.', format="1.9")
1385
builder.start_series()
1386
builder.build_snapshot('A', None, [
1387
('add', ('', 'root-id', 'directory', None)),
1388
('add', ('f', 'f-id', 'file', 'content\n'))])
1389
builder.build_snapshot('B', ['A'],
1390
[('modify', ('f-id', 'new-content\n'))])
1391
builder.build_snapshot('C', ['B'],
1392
[('modify', ('f-id', 'third-content\n'))])
1393
builder.build_snapshot('D', ['C'],
1394
[('modify', ('f-id', 'fourth-content\n'))])
1395
b = builder.get_branch()
1397
builder.finish_series()
1398
self.addCleanup(b.unlock)
1399
# At this point, we should have 4 pack files available
1400
# Because of how they were built, they correspond to
1401
# ['D', 'C', 'B', 'A']
1402
packs = b.repository._pack_collection.packs
1403
packer = pack_repo.Packer(b.repository._pack_collection,
1405
revision_ids=['B', 'C'])
1406
# Now, when we are copying the B & C revisions, their pack files should
1407
# be moved to the front of the stack
1408
# The new ordering moves B & C to the front of the .packs attribute,
1409
# and leaves the others in the original order.
1410
new_packs = [packs[1], packs[2], packs[0], packs[3]]
1411
new_pack = packer.pack()
1412
self.assertEqual(new_packs, packer.packs)
1415
class TestOptimisingPacker(TestCaseWithTransport):
1416
"""Tests for the OptimisingPacker class."""
1418
def get_pack_collection(self):
1419
repo = self.make_repository('.')
1420
return repo._pack_collection
1422
def test_open_pack_will_optimise(self):
1423
packer = pack_repo.OptimisingPacker(self.get_pack_collection(),
1425
new_pack = packer.open_pack()
1426
self.assertIsInstance(new_pack, pack_repo.NewPack)
1427
self.assertTrue(new_pack.revision_index._optimize_for_size)
1428
self.assertTrue(new_pack.inventory_index._optimize_for_size)
1429
self.assertTrue(new_pack.text_index._optimize_for_size)
1430
self.assertTrue(new_pack.signature_index._optimize_for_size)
1433
class TestCrossFormatPacks(TestCaseWithTransport):
1435
def log_pack(self, hint=None):
1436
self.calls.append(('pack', hint))
1437
self.orig_pack(hint=hint)
1438
if self.expect_hint:
1439
self.assertTrue(hint)
1441
def run_stream(self, src_fmt, target_fmt, expect_pack_called):
1442
self.expect_hint = expect_pack_called
1444
source_tree = self.make_branch_and_tree('src', format=src_fmt)
1445
source_tree.lock_write()
1446
self.addCleanup(source_tree.unlock)
1447
tip = source_tree.commit('foo')
1448
target = self.make_repository('target', format=target_fmt)
1450
self.addCleanup(target.unlock)
1451
source = source_tree.branch.repository._get_source(target._format)
1452
self.orig_pack = target.pack
1453
target.pack = self.log_pack
1454
search = target.search_missing_revision_ids(
1455
source_tree.branch.repository, tip)
1456
stream = source.get_stream(search)
1457
from_format = source_tree.branch.repository._format
1458
sink = target._get_sink()
1459
sink.insert_stream(stream, from_format, [])
1460
if expect_pack_called:
1461
self.assertLength(1, self.calls)
1463
self.assertLength(0, self.calls)
1465
def run_fetch(self, src_fmt, target_fmt, expect_pack_called):
1466
self.expect_hint = expect_pack_called
1468
source_tree = self.make_branch_and_tree('src', format=src_fmt)
1469
source_tree.lock_write()
1470
self.addCleanup(source_tree.unlock)
1471
tip = source_tree.commit('foo')
1472
target = self.make_repository('target', format=target_fmt)
1474
self.addCleanup(target.unlock)
1475
source = source_tree.branch.repository
1476
self.orig_pack = target.pack
1477
target.pack = self.log_pack
1478
target.fetch(source)
1479
if expect_pack_called:
1480
self.assertLength(1, self.calls)
1482
self.assertLength(0, self.calls)
1484
def test_sink_format_hint_no(self):
1485
# When the target format says packing makes no difference, pack is not
1487
self.run_stream('1.9', 'rich-root-pack', False)
1489
def test_sink_format_hint_yes(self):
1490
# When the target format says packing makes a difference, pack is
1492
self.run_stream('1.9', '2a', True)
1494
def test_sink_format_same_no(self):
1495
# When the formats are the same, pack is not called.
1496
self.run_stream('2a', '2a', False)
1498
def test_IDS_format_hint_no(self):
1499
# When the target format says packing makes no difference, pack is not
1501
self.run_fetch('1.9', 'rich-root-pack', False)
1503
def test_IDS_format_hint_yes(self):
1504
# When the target format says packing makes a difference, pack is
1506
self.run_fetch('1.9', '2a', True)
1508
def test_IDS_format_same_no(self):
1509
# When the formats are the same, pack is not called.
1510
self.run_fetch('2a', '2a', False)