137
137
def check_format(format, url):
138
138
dir = format._matchingbzrdir.initialize(url)
139
139
format.initialize(dir)
140
t = get_transport(url)
141
found_format = repository.RepositoryFormat.find_format(dir)
142
self.failUnless(isinstance(found_format, format.__class__))
143
check_format(weaverepo.RepositoryFormat7(), "bar")
140
t = transport.get_transport_from_path(url)
141
found_format = repository.RepositoryFormatMetaDir.find_format(dir)
142
self.assertIsInstance(found_format, format.__class__)
143
check_format(repository.format_registry.get_default(), "bar")
145
145
def test_find_format_no_repository(self):
146
146
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
147
147
self.assertRaises(errors.NoRepositoryPresent,
148
repository.RepositoryFormat.find_format,
148
repository.RepositoryFormatMetaDir.find_format,
151
def test_from_string(self):
152
self.assertIsInstance(
153
SampleRepositoryFormat.from_string(
154
"Sample .bzr repository format."),
155
SampleRepositoryFormat)
156
self.assertRaises(AssertionError,
157
SampleRepositoryFormat.from_string,
158
"Different .bzr repository format.")
151
160
def test_find_format_unknown_format(self):
152
161
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
153
162
SampleRepositoryFormat().initialize(dir)
154
163
self.assertRaises(UnknownFormatError,
155
repository.RepositoryFormat.find_format,
164
repository.RepositoryFormatMetaDir.find_format,
167
def test_find_format_with_features(self):
168
tree = self.make_branch_and_tree('.', format='2a')
169
tree.branch.repository.update_feature_flags({"name": "necessity"})
170
found_format = repository.RepositoryFormatMetaDir.find_format(tree.bzrdir)
171
self.assertIsInstance(found_format, repository.RepositoryFormatMetaDir)
172
self.assertEquals(found_format.features.get("name"), "necessity")
173
self.assertRaises(errors.MissingFeature, found_format.check_support_status,
175
self.addCleanup(repository.RepositoryFormatMetaDir.unregister_feature,
177
repository.RepositoryFormatMetaDir.register_feature("name")
178
found_format.check_support_status(True)
158
180
def test_register_unregister_format(self):
181
# Test deprecated format registration functions
159
182
format = SampleRepositoryFormat()
160
183
# make a control dir
161
184
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
163
186
format.initialize(dir)
164
187
# register a format for it.
165
repository.RepositoryFormat.register_format(format)
188
self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
189
repository.RepositoryFormat.register_format, format)
166
190
# which repository.Open will refuse (not supported)
167
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
191
self.assertRaises(UnsupportedFormatError, repository.Repository.open,
168
193
# but open(unsupported) will work
169
194
self.assertEqual(format.open(dir), "opened repository.")
170
195
# unregister the format
171
repository.RepositoryFormat.unregister_format(format)
174
class TestFormat6(TestCaseWithTransport):
176
def test_attribute__fetch_order(self):
177
"""Weaves need topological data insertion."""
178
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
179
repo = weaverepo.RepositoryFormat6().initialize(control)
180
self.assertEqual('topological', repo._format._fetch_order)
182
def test_attribute__fetch_uses_deltas(self):
183
"""Weaves do not reuse deltas."""
184
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
185
repo = weaverepo.RepositoryFormat6().initialize(control)
186
self.assertEqual(False, repo._format._fetch_uses_deltas)
188
def test_attribute__fetch_reconcile(self):
189
"""Weave repositories need a reconcile after fetch."""
190
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
191
repo = weaverepo.RepositoryFormat6().initialize(control)
192
self.assertEqual(True, repo._format._fetch_reconcile)
194
def test_no_ancestry_weave(self):
195
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
196
repo = weaverepo.RepositoryFormat6().initialize(control)
197
# We no longer need to create the ancestry.weave file
198
# since it is *never* used.
199
self.assertRaises(NoSuchFile,
200
control.transport.get,
203
def test_supports_external_lookups(self):
204
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
205
repo = weaverepo.RepositoryFormat6().initialize(control)
206
self.assertFalse(repo._format.supports_external_lookups)
209
class TestFormat7(TestCaseWithTransport):
211
def test_attribute__fetch_order(self):
212
"""Weaves need topological data insertion."""
213
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
214
repo = weaverepo.RepositoryFormat7().initialize(control)
215
self.assertEqual('topological', repo._format._fetch_order)
217
def test_attribute__fetch_uses_deltas(self):
218
"""Weaves do not reuse deltas."""
219
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
220
repo = weaverepo.RepositoryFormat7().initialize(control)
221
self.assertEqual(False, repo._format._fetch_uses_deltas)
223
def test_attribute__fetch_reconcile(self):
224
"""Weave repositories need a reconcile after fetch."""
225
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
226
repo = weaverepo.RepositoryFormat7().initialize(control)
227
self.assertEqual(True, repo._format._fetch_reconcile)
229
def test_disk_layout(self):
230
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
231
repo = weaverepo.RepositoryFormat7().initialize(control)
232
# in case of side effects of locking.
236
# format 'Bazaar-NG Repository format 7'
238
# inventory.weave == empty_weave
239
# empty revision-store directory
240
# empty weaves directory
241
t = control.get_repository_transport(None)
242
self.assertEqualDiff('Bazaar-NG Repository format 7',
243
t.get('format').read())
244
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
245
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
246
self.assertEqualDiff('# bzr weave file v5\n'
249
t.get('inventory.weave').read())
250
# Creating a file with id Foo:Bar results in a non-escaped file name on
252
control.create_branch()
253
tree = control.create_workingtree()
254
tree.add(['foo'], ['Foo:Bar'], ['file'])
255
tree.put_file_bytes_non_atomic('Foo:Bar', 'content\n')
257
tree.commit('first post', rev_id='first')
258
except errors.IllegalPath:
259
if sys.platform != 'win32':
261
self.knownFailure('Foo:Bar cannot be used as a file-id on windows'
264
self.assertEqualDiff(
265
'# bzr weave file v5\n'
267
'1 7fe70820e08a1aac0ef224d9c66ab66831cc4ab1\n'
275
t.get('weaves/74/Foo%3ABar.weave').read())
277
def test_shared_disk_layout(self):
278
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
279
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
281
# format 'Bazaar-NG Repository format 7'
282
# inventory.weave == empty_weave
283
# empty revision-store directory
284
# empty weaves directory
285
# a 'shared-storage' marker file.
286
# lock is not present when unlocked
287
t = control.get_repository_transport(None)
288
self.assertEqualDiff('Bazaar-NG Repository format 7',
289
t.get('format').read())
290
self.assertEqualDiff('', t.get('shared-storage').read())
291
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
292
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
293
self.assertEqualDiff('# bzr weave file v5\n'
296
t.get('inventory.weave').read())
297
self.assertFalse(t.has('branch-lock'))
299
def test_creates_lockdir(self):
300
"""Make sure it appears to be controlled by a LockDir existence"""
301
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
302
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
303
t = control.get_repository_transport(None)
304
# TODO: Should check there is a 'lock' toplevel directory,
305
# regardless of contents
306
self.assertFalse(t.has('lock/held/info'))
309
self.assertTrue(t.has('lock/held/info'))
311
# unlock so we don't get a warning about failing to do so
314
def test_uses_lockdir(self):
315
"""repo format 7 actually locks on lockdir"""
316
base_url = self.get_url()
317
control = bzrdir.BzrDirMetaFormat1().initialize(base_url)
318
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
319
t = control.get_repository_transport(None)
323
# make sure the same lock is created by opening it
324
repo = repository.Repository.open(base_url)
326
self.assertTrue(t.has('lock/held/info'))
328
self.assertFalse(t.has('lock/held/info'))
330
def test_shared_no_tree_disk_layout(self):
331
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
332
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
333
repo.set_make_working_trees(False)
335
# format 'Bazaar-NG Repository format 7'
337
# inventory.weave == empty_weave
338
# empty revision-store directory
339
# empty weaves directory
340
# a 'shared-storage' marker file.
341
t = control.get_repository_transport(None)
342
self.assertEqualDiff('Bazaar-NG Repository format 7',
343
t.get('format').read())
344
## self.assertEqualDiff('', t.get('lock').read())
345
self.assertEqualDiff('', t.get('shared-storage').read())
346
self.assertEqualDiff('', t.get('no-working-trees').read())
347
repo.set_make_working_trees(True)
348
self.assertFalse(t.has('no-working-trees'))
349
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
350
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
351
self.assertEqualDiff('# bzr weave file v5\n'
354
t.get('inventory.weave').read())
356
def test_supports_external_lookups(self):
357
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
358
repo = weaverepo.RepositoryFormat7().initialize(control)
359
self.assertFalse(repo._format.supports_external_lookups)
196
self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
197
repository.RepositoryFormat.unregister_format, format)
200
class TestRepositoryFormatRegistry(TestCase):
203
super(TestRepositoryFormatRegistry, self).setUp()
204
self.registry = repository.RepositoryFormatRegistry()
206
def test_register_unregister_format(self):
207
format = SampleRepositoryFormat()
208
self.registry.register(format)
209
self.assertEquals(format, self.registry.get("Sample .bzr repository format."))
210
self.registry.remove(format)
211
self.assertRaises(KeyError, self.registry.get, "Sample .bzr repository format.")
213
def test_get_all(self):
214
format = SampleRepositoryFormat()
215
self.assertEquals([], self.registry._get_all())
216
self.registry.register(format)
217
self.assertEquals([format], self.registry._get_all())
219
def test_register_extra(self):
220
format = SampleExtraRepositoryFormat()
221
self.assertEquals([], self.registry._get_all())
222
self.registry.register_extra(format)
223
self.assertEquals([format], self.registry._get_all())
225
def test_register_extra_lazy(self):
226
self.assertEquals([], self.registry._get_all())
227
self.registry.register_extra_lazy("bzrlib.tests.test_repository",
228
"SampleExtraRepositoryFormat")
229
formats = self.registry._get_all()
230
self.assertEquals(1, len(formats))
231
self.assertIsInstance(formats[0], SampleExtraRepositoryFormat)
362
234
class TestFormatKnit1(TestCaseWithTransport):
581
459
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
584
class TestInterWeaveRepo(TestCaseWithTransport):
586
def test_is_compatible_and_registered(self):
587
# InterWeaveRepo is compatible when either side
588
# is a format 5/6/7 branch
589
from bzrlib.repofmt import knitrepo, weaverepo
590
formats = [weaverepo.RepositoryFormat5(),
591
weaverepo.RepositoryFormat6(),
592
weaverepo.RepositoryFormat7()]
593
incompatible_formats = [weaverepo.RepositoryFormat4(),
594
knitrepo.RepositoryFormatKnit1(),
596
repo_a = self.make_repository('a')
597
repo_b = self.make_repository('b')
598
is_compatible = repository.InterWeaveRepo.is_compatible
599
for source in incompatible_formats:
600
# force incompatible left then right
601
repo_a._format = source
602
repo_b._format = formats[0]
603
self.assertFalse(is_compatible(repo_a, repo_b))
604
self.assertFalse(is_compatible(repo_b, repo_a))
605
for source in formats:
606
repo_a._format = source
607
for target in formats:
608
repo_b._format = target
609
self.assertTrue(is_compatible(repo_a, repo_b))
610
self.assertEqual(repository.InterWeaveRepo,
611
repository.InterRepository.get(repo_a,
462
class TestRepositoryFormat1(knitrepo.RepositoryFormatKnit1):
465
def get_format_string(cls):
466
return "Test Format 1"
469
class TestRepositoryFormat2(knitrepo.RepositoryFormatKnit1):
472
def get_format_string(cls):
473
return "Test Format 2"
615
476
class TestRepositoryConverter(TestCaseWithTransport):
617
478
def test_convert_empty(self):
618
t = get_transport(self.get_url('.'))
479
source_format = TestRepositoryFormat1()
480
target_format = TestRepositoryFormat2()
481
repository.format_registry.register(source_format)
482
self.addCleanup(repository.format_registry.remove,
484
repository.format_registry.register(target_format)
485
self.addCleanup(repository.format_registry.remove,
487
t = self.get_transport()
619
488
t.mkdir('repository')
620
489
repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
621
repo = weaverepo.RepositoryFormat7().initialize(repo_dir)
622
target_format = knitrepo.RepositoryFormatKnit1()
490
repo = TestRepositoryFormat1().initialize(repo_dir)
623
491
converter = repository.CopyConverter(target_format)
624
492
pb = bzrlib.ui.ui_factory.nested_progress_bar()
1632
1531
self.assertTrue(new_pack.signature_index._optimize_for_size)
1534
class TestGCCHKPacker(TestCaseWithTransport):
1536
def make_abc_branch(self):
1537
builder = self.make_branch_builder('source')
1538
builder.start_series()
1539
builder.build_snapshot('A', None, [
1540
('add', ('', 'root-id', 'directory', None)),
1541
('add', ('file', 'file-id', 'file', 'content\n')),
1543
builder.build_snapshot('B', ['A'], [
1544
('add', ('dir', 'dir-id', 'directory', None))])
1545
builder.build_snapshot('C', ['B'], [
1546
('modify', ('file-id', 'new content\n'))])
1547
builder.finish_series()
1548
return builder.get_branch()
1550
def make_branch_with_disjoint_inventory_and_revision(self):
1551
"""a repo with separate packs for a revisions Revision and Inventory.
1553
There will be one pack file that holds the Revision content, and one
1554
for the Inventory content.
1556
:return: (repository,
1557
pack_name_with_rev_A_Revision,
1558
pack_name_with_rev_A_Inventory,
1559
pack_name_with_rev_C_content)
1561
b_source = self.make_abc_branch()
1562
b_base = b_source.bzrdir.sprout('base', revision_id='A').open_branch()
1563
b_stacked = b_base.bzrdir.sprout('stacked', stacked=True).open_branch()
1564
b_stacked.lock_write()
1565
self.addCleanup(b_stacked.unlock)
1566
b_stacked.fetch(b_source, 'B')
1567
# Now re-open the stacked repo directly (no fallbacks) so that we can
1568
# fill in the A rev.
1569
repo_not_stacked = b_stacked.bzrdir.open_repository()
1570
repo_not_stacked.lock_write()
1571
self.addCleanup(repo_not_stacked.unlock)
1572
# Now we should have a pack file with A's inventory, but not its
1574
self.assertEqual([('A',), ('B',)],
1575
sorted(repo_not_stacked.inventories.keys()))
1576
self.assertEqual([('B',)],
1577
sorted(repo_not_stacked.revisions.keys()))
1578
stacked_pack_names = repo_not_stacked._pack_collection.names()
1579
# We have a couple names here, figure out which has A's inventory
1580
for name in stacked_pack_names:
1581
pack = repo_not_stacked._pack_collection.get_pack_by_name(name)
1582
keys = [n[1] for n in pack.inventory_index.iter_all_entries()]
1584
inv_a_pack_name = name
1587
self.fail('Could not find pack containing A\'s inventory')
1588
repo_not_stacked.fetch(b_source.repository, 'A')
1589
self.assertEqual([('A',), ('B',)],
1590
sorted(repo_not_stacked.revisions.keys()))
1591
new_pack_names = set(repo_not_stacked._pack_collection.names())
1592
rev_a_pack_names = new_pack_names.difference(stacked_pack_names)
1593
self.assertEqual(1, len(rev_a_pack_names))
1594
rev_a_pack_name = list(rev_a_pack_names)[0]
1595
# Now fetch 'C', so we have a couple pack files to join
1596
repo_not_stacked.fetch(b_source.repository, 'C')
1597
rev_c_pack_names = set(repo_not_stacked._pack_collection.names())
1598
rev_c_pack_names = rev_c_pack_names.difference(new_pack_names)
1599
self.assertEqual(1, len(rev_c_pack_names))
1600
rev_c_pack_name = list(rev_c_pack_names)[0]
1601
return (repo_not_stacked, rev_a_pack_name, inv_a_pack_name,
1604
def test_pack_with_distant_inventories(self):
1605
# See https://bugs.launchpad.net/bzr/+bug/437003
1606
# When repacking, it is possible to have an inventory in a different
1607
# pack file than the associated revision. An autopack can then come
1608
# along, and miss that inventory, and complain.
1609
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1610
) = self.make_branch_with_disjoint_inventory_and_revision()
1611
a_pack = repo._pack_collection.get_pack_by_name(rev_a_pack_name)
1612
c_pack = repo._pack_collection.get_pack_by_name(rev_c_pack_name)
1613
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1614
[a_pack, c_pack], '.test-pack')
1615
# This would raise ValueError in bug #437003, but should not raise an
1619
def test_pack_with_missing_inventory(self):
1620
# Similar to test_pack_with_missing_inventory, but this time, we force
1621
# the A inventory to actually be gone from the repository.
1622
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1623
) = self.make_branch_with_disjoint_inventory_and_revision()
1624
inv_a_pack = repo._pack_collection.get_pack_by_name(inv_a_pack_name)
1625
repo._pack_collection._remove_pack_from_memory(inv_a_pack)
1626
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1627
repo._pack_collection.all_packs(), '.test-pack')
1628
e = self.assertRaises(ValueError, packer.pack)
1629
packer.new_pack.abort()
1630
self.assertContainsRe(str(e),
1631
r"We are missing inventories for revisions: .*'A'")
1635
1634
class TestCrossFormatPacks(TestCaseWithTransport):
1637
1636
def log_pack(self, hint=None):