128
138
def check_format(format, url):
129
139
dir = format._matchingbzrdir.initialize(url)
130
140
format.initialize(dir)
131
t = get_transport(url)
132
found_format = repository.RepositoryFormat.find_format(dir)
133
self.failUnless(isinstance(found_format, format.__class__))
134
check_format(weaverepo.RepositoryFormat7(), "bar")
141
t = transport.get_transport_from_path(url)
142
found_format = repository.RepositoryFormatMetaDir.find_format(dir)
143
self.assertIsInstance(found_format, format.__class__)
144
check_format(repository.format_registry.get_default(), "bar")
136
146
def test_find_format_no_repository(self):
137
147
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
138
148
self.assertRaises(errors.NoRepositoryPresent,
139
repository.RepositoryFormat.find_format,
149
repository.RepositoryFormatMetaDir.find_format,
152
def test_from_string(self):
153
self.assertIsInstance(
154
SampleRepositoryFormat.from_string(
155
"Sample .bzr repository format."),
156
SampleRepositoryFormat)
157
self.assertRaises(AssertionError,
158
SampleRepositoryFormat.from_string,
159
"Different .bzr repository format.")
142
161
def test_find_format_unknown_format(self):
143
162
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
144
163
SampleRepositoryFormat().initialize(dir)
145
164
self.assertRaises(UnknownFormatError,
146
repository.RepositoryFormat.find_format,
165
repository.RepositoryFormatMetaDir.find_format,
168
def test_find_format_with_features(self):
169
tree = self.make_branch_and_tree('.', format='2a')
170
tree.branch.repository.update_feature_flags({"name": "necessity"})
171
found_format = repository.RepositoryFormatMetaDir.find_format(tree.bzrdir)
172
self.assertIsInstance(found_format, repository.RepositoryFormatMetaDir)
173
self.assertEquals(found_format.features.get("name"), "necessity")
174
self.assertRaises(errors.MissingFeature, found_format.check_support_status,
176
self.addCleanup(repository.RepositoryFormatMetaDir.unregister_feature,
178
repository.RepositoryFormatMetaDir.register_feature("name")
179
found_format.check_support_status(True)
182
class TestRepositoryFormatRegistry(TestCase):
185
super(TestRepositoryFormatRegistry, self).setUp()
186
self.registry = repository.RepositoryFormatRegistry()
149
188
def test_register_unregister_format(self):
150
189
format = SampleRepositoryFormat()
152
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
154
format.initialize(dir)
155
# register a format for it.
156
repository.RepositoryFormat.register_format(format)
157
# which repository.Open will refuse (not supported)
158
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
159
# but open(unsupported) will work
160
self.assertEqual(format.open(dir), "opened repository.")
161
# unregister the format
162
repository.RepositoryFormat.unregister_format(format)
165
class TestFormat6(TestCaseWithTransport):
167
def test_attribute__fetch_order(self):
168
"""Weaves need topological data insertion."""
169
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
170
repo = weaverepo.RepositoryFormat6().initialize(control)
171
self.assertEqual('topological', repo._format._fetch_order)
173
def test_attribute__fetch_uses_deltas(self):
174
"""Weaves do not reuse deltas."""
175
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
176
repo = weaverepo.RepositoryFormat6().initialize(control)
177
self.assertEqual(False, repo._format._fetch_uses_deltas)
179
def test_attribute__fetch_reconcile(self):
180
"""Weave repositories need a reconcile after fetch."""
181
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
182
repo = weaverepo.RepositoryFormat6().initialize(control)
183
self.assertEqual(True, repo._format._fetch_reconcile)
185
def test_no_ancestry_weave(self):
186
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
187
repo = weaverepo.RepositoryFormat6().initialize(control)
188
# We no longer need to create the ancestry.weave file
189
# since it is *never* used.
190
self.assertRaises(NoSuchFile,
191
control.transport.get,
194
def test_supports_external_lookups(self):
195
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
196
repo = weaverepo.RepositoryFormat6().initialize(control)
197
self.assertFalse(repo._format.supports_external_lookups)
200
class TestFormat7(TestCaseWithTransport):
202
def test_attribute__fetch_order(self):
203
"""Weaves need topological data insertion."""
204
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
205
repo = weaverepo.RepositoryFormat7().initialize(control)
206
self.assertEqual('topological', repo._format._fetch_order)
208
def test_attribute__fetch_uses_deltas(self):
209
"""Weaves do not reuse deltas."""
210
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
211
repo = weaverepo.RepositoryFormat7().initialize(control)
212
self.assertEqual(False, repo._format._fetch_uses_deltas)
214
def test_attribute__fetch_reconcile(self):
215
"""Weave repositories need a reconcile after fetch."""
216
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
217
repo = weaverepo.RepositoryFormat7().initialize(control)
218
self.assertEqual(True, repo._format._fetch_reconcile)
220
def test_disk_layout(self):
221
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
222
repo = weaverepo.RepositoryFormat7().initialize(control)
223
# in case of side effects of locking.
227
# format 'Bazaar-NG Repository format 7'
229
# inventory.weave == empty_weave
230
# empty revision-store directory
231
# empty weaves directory
232
t = control.get_repository_transport(None)
233
self.assertEqualDiff('Bazaar-NG Repository format 7',
234
t.get('format').read())
235
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
236
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
237
self.assertEqualDiff('# bzr weave file v5\n'
240
t.get('inventory.weave').read())
241
# Creating a file with id Foo:Bar results in a non-escaped file name on
243
control.create_branch()
244
tree = control.create_workingtree()
245
tree.add(['foo'], ['Foo:Bar'], ['file'])
246
tree.put_file_bytes_non_atomic('Foo:Bar', 'content\n')
248
tree.commit('first post', rev_id='first')
249
except errors.IllegalPath:
250
if sys.platform != 'win32':
252
self.knownFailure('Foo:Bar cannot be used as a file-id on windows'
255
self.assertEqualDiff(
256
'# bzr weave file v5\n'
258
'1 7fe70820e08a1aac0ef224d9c66ab66831cc4ab1\n'
266
t.get('weaves/74/Foo%3ABar.weave').read())
268
def test_shared_disk_layout(self):
269
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
270
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
272
# format 'Bazaar-NG Repository format 7'
273
# inventory.weave == empty_weave
274
# empty revision-store directory
275
# empty weaves directory
276
# a 'shared-storage' marker file.
277
# lock is not present when unlocked
278
t = control.get_repository_transport(None)
279
self.assertEqualDiff('Bazaar-NG Repository format 7',
280
t.get('format').read())
281
self.assertEqualDiff('', t.get('shared-storage').read())
282
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
283
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
284
self.assertEqualDiff('# bzr weave file v5\n'
287
t.get('inventory.weave').read())
288
self.assertFalse(t.has('branch-lock'))
290
def test_creates_lockdir(self):
291
"""Make sure it appears to be controlled by a LockDir existence"""
292
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
293
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
294
t = control.get_repository_transport(None)
295
# TODO: Should check there is a 'lock' toplevel directory,
296
# regardless of contents
297
self.assertFalse(t.has('lock/held/info'))
300
self.assertTrue(t.has('lock/held/info'))
302
# unlock so we don't get a warning about failing to do so
305
def test_uses_lockdir(self):
306
"""repo format 7 actually locks on lockdir"""
307
base_url = self.get_url()
308
control = bzrdir.BzrDirMetaFormat1().initialize(base_url)
309
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
310
t = control.get_repository_transport(None)
314
# make sure the same lock is created by opening it
315
repo = repository.Repository.open(base_url)
317
self.assertTrue(t.has('lock/held/info'))
319
self.assertFalse(t.has('lock/held/info'))
321
def test_shared_no_tree_disk_layout(self):
322
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
323
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
324
repo.set_make_working_trees(False)
326
# format 'Bazaar-NG Repository format 7'
328
# inventory.weave == empty_weave
329
# empty revision-store directory
330
# empty weaves directory
331
# a 'shared-storage' marker file.
332
t = control.get_repository_transport(None)
333
self.assertEqualDiff('Bazaar-NG Repository format 7',
334
t.get('format').read())
335
## self.assertEqualDiff('', t.get('lock').read())
336
self.assertEqualDiff('', t.get('shared-storage').read())
337
self.assertEqualDiff('', t.get('no-working-trees').read())
338
repo.set_make_working_trees(True)
339
self.assertFalse(t.has('no-working-trees'))
340
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
341
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
342
self.assertEqualDiff('# bzr weave file v5\n'
345
t.get('inventory.weave').read())
347
def test_supports_external_lookups(self):
348
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
349
repo = weaverepo.RepositoryFormat7().initialize(control)
350
self.assertFalse(repo._format.supports_external_lookups)
190
self.registry.register(format)
191
self.assertEquals(format, self.registry.get("Sample .bzr repository format."))
192
self.registry.remove(format)
193
self.assertRaises(KeyError, self.registry.get, "Sample .bzr repository format.")
195
def test_get_all(self):
196
format = SampleRepositoryFormat()
197
self.assertEquals([], self.registry._get_all())
198
self.registry.register(format)
199
self.assertEquals([format], self.registry._get_all())
201
def test_register_extra(self):
202
format = SampleExtraRepositoryFormat()
203
self.assertEquals([], self.registry._get_all())
204
self.registry.register_extra(format)
205
self.assertEquals([format], self.registry._get_all())
207
def test_register_extra_lazy(self):
208
self.assertEquals([], self.registry._get_all())
209
self.registry.register_extra_lazy("bzrlib.tests.test_repository",
210
"SampleExtraRepositoryFormat")
211
formats = self.registry._get_all()
212
self.assertEquals(1, len(formats))
213
self.assertIsInstance(formats[0], SampleExtraRepositoryFormat)
353
216
class TestFormatKnit1(TestCaseWithTransport):
572
441
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
575
class TestInterWeaveRepo(TestCaseWithTransport):
577
def test_is_compatible_and_registered(self):
578
# InterWeaveRepo is compatible when either side
579
# is a format 5/6/7 branch
580
from bzrlib.repofmt import knitrepo, weaverepo
581
formats = [weaverepo.RepositoryFormat5(),
582
weaverepo.RepositoryFormat6(),
583
weaverepo.RepositoryFormat7()]
584
incompatible_formats = [weaverepo.RepositoryFormat4(),
585
knitrepo.RepositoryFormatKnit1(),
587
repo_a = self.make_repository('a')
588
repo_b = self.make_repository('b')
589
is_compatible = repository.InterWeaveRepo.is_compatible
590
for source in incompatible_formats:
591
# force incompatible left then right
592
repo_a._format = source
593
repo_b._format = formats[0]
594
self.assertFalse(is_compatible(repo_a, repo_b))
595
self.assertFalse(is_compatible(repo_b, repo_a))
596
for source in formats:
597
repo_a._format = source
598
for target in formats:
599
repo_b._format = target
600
self.assertTrue(is_compatible(repo_a, repo_b))
601
self.assertEqual(repository.InterWeaveRepo,
602
repository.InterRepository.get(repo_a,
444
class TestRepositoryFormat1(knitrepo.RepositoryFormatKnit1):
447
def get_format_string(cls):
448
return "Test Format 1"
451
class TestRepositoryFormat2(knitrepo.RepositoryFormatKnit1):
454
def get_format_string(cls):
455
return "Test Format 2"
606
458
class TestRepositoryConverter(TestCaseWithTransport):
608
460
def test_convert_empty(self):
609
t = get_transport(self.get_url('.'))
461
source_format = TestRepositoryFormat1()
462
target_format = TestRepositoryFormat2()
463
repository.format_registry.register(source_format)
464
self.addCleanup(repository.format_registry.remove,
466
repository.format_registry.register(target_format)
467
self.addCleanup(repository.format_registry.remove,
469
t = self.get_transport()
610
470
t.mkdir('repository')
611
471
repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
612
repo = weaverepo.RepositoryFormat7().initialize(repo_dir)
613
target_format = knitrepo.RepositoryFormatKnit1()
472
repo = TestRepositoryFormat1().initialize(repo_dir)
614
473
converter = repository.CopyConverter(target_format)
615
474
pb = bzrlib.ui.ui_factory.nested_progress_bar()
1638
1513
self.assertTrue(new_pack.signature_index._optimize_for_size)
1516
class TestGCCHKPacker(TestCaseWithTransport):
1518
def make_abc_branch(self):
1519
builder = self.make_branch_builder('source')
1520
builder.start_series()
1521
builder.build_snapshot('A', None, [
1522
('add', ('', 'root-id', 'directory', None)),
1523
('add', ('file', 'file-id', 'file', 'content\n')),
1525
builder.build_snapshot('B', ['A'], [
1526
('add', ('dir', 'dir-id', 'directory', None))])
1527
builder.build_snapshot('C', ['B'], [
1528
('modify', ('file-id', 'new content\n'))])
1529
builder.finish_series()
1530
return builder.get_branch()
1532
def make_branch_with_disjoint_inventory_and_revision(self):
1533
"""a repo with separate packs for a revisions Revision and Inventory.
1535
There will be one pack file that holds the Revision content, and one
1536
for the Inventory content.
1538
:return: (repository,
1539
pack_name_with_rev_A_Revision,
1540
pack_name_with_rev_A_Inventory,
1541
pack_name_with_rev_C_content)
1543
b_source = self.make_abc_branch()
1544
b_base = b_source.bzrdir.sprout('base', revision_id='A').open_branch()
1545
b_stacked = b_base.bzrdir.sprout('stacked', stacked=True).open_branch()
1546
b_stacked.lock_write()
1547
self.addCleanup(b_stacked.unlock)
1548
b_stacked.fetch(b_source, 'B')
1549
# Now re-open the stacked repo directly (no fallbacks) so that we can
1550
# fill in the A rev.
1551
repo_not_stacked = b_stacked.bzrdir.open_repository()
1552
repo_not_stacked.lock_write()
1553
self.addCleanup(repo_not_stacked.unlock)
1554
# Now we should have a pack file with A's inventory, but not its
1556
self.assertEqual([('A',), ('B',)],
1557
sorted(repo_not_stacked.inventories.keys()))
1558
self.assertEqual([('B',)],
1559
sorted(repo_not_stacked.revisions.keys()))
1560
stacked_pack_names = repo_not_stacked._pack_collection.names()
1561
# We have a couple names here, figure out which has A's inventory
1562
for name in stacked_pack_names:
1563
pack = repo_not_stacked._pack_collection.get_pack_by_name(name)
1564
keys = [n[1] for n in pack.inventory_index.iter_all_entries()]
1566
inv_a_pack_name = name
1569
self.fail('Could not find pack containing A\'s inventory')
1570
repo_not_stacked.fetch(b_source.repository, 'A')
1571
self.assertEqual([('A',), ('B',)],
1572
sorted(repo_not_stacked.revisions.keys()))
1573
new_pack_names = set(repo_not_stacked._pack_collection.names())
1574
rev_a_pack_names = new_pack_names.difference(stacked_pack_names)
1575
self.assertEqual(1, len(rev_a_pack_names))
1576
rev_a_pack_name = list(rev_a_pack_names)[0]
1577
# Now fetch 'C', so we have a couple pack files to join
1578
repo_not_stacked.fetch(b_source.repository, 'C')
1579
rev_c_pack_names = set(repo_not_stacked._pack_collection.names())
1580
rev_c_pack_names = rev_c_pack_names.difference(new_pack_names)
1581
self.assertEqual(1, len(rev_c_pack_names))
1582
rev_c_pack_name = list(rev_c_pack_names)[0]
1583
return (repo_not_stacked, rev_a_pack_name, inv_a_pack_name,
1586
def test_pack_with_distant_inventories(self):
1587
# See https://bugs.launchpad.net/bzr/+bug/437003
1588
# When repacking, it is possible to have an inventory in a different
1589
# pack file than the associated revision. An autopack can then come
1590
# along, and miss that inventory, and complain.
1591
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1592
) = self.make_branch_with_disjoint_inventory_and_revision()
1593
a_pack = repo._pack_collection.get_pack_by_name(rev_a_pack_name)
1594
c_pack = repo._pack_collection.get_pack_by_name(rev_c_pack_name)
1595
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1596
[a_pack, c_pack], '.test-pack')
1597
# This would raise ValueError in bug #437003, but should not raise an
1601
def test_pack_with_missing_inventory(self):
1602
# Similar to test_pack_with_missing_inventory, but this time, we force
1603
# the A inventory to actually be gone from the repository.
1604
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1605
) = self.make_branch_with_disjoint_inventory_and_revision()
1606
inv_a_pack = repo._pack_collection.get_pack_by_name(inv_a_pack_name)
1607
repo._pack_collection._remove_pack_from_memory(inv_a_pack)
1608
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1609
repo._pack_collection.all_packs(), '.test-pack')
1610
e = self.assertRaises(ValueError, packer.pack)
1611
packer.new_pack.abort()
1612
self.assertContainsRe(str(e),
1613
r"We are missing inventories for revisions: .*'A'")
1641
1616
class TestCrossFormatPacks(TestCaseWithTransport):
1643
1618
def log_pack(self, hint=None):