127
137
def check_format(format, url):
128
138
dir = format._matchingbzrdir.initialize(url)
129
139
format.initialize(dir)
130
t = get_transport(url)
131
found_format = repository.RepositoryFormat.find_format(dir)
132
self.failUnless(isinstance(found_format, format.__class__))
133
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")
135
145
def test_find_format_no_repository(self):
136
146
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
137
147
self.assertRaises(errors.NoRepositoryPresent,
138
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(ValueError,
157
SampleRepositoryFormat.from_string,
158
"Different .bzr repository format.")
141
160
def test_find_format_unknown_format(self):
142
161
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
143
162
SampleRepositoryFormat().initialize(dir)
144
163
self.assertRaises(UnknownFormatError,
145
repository.RepositoryFormat.find_format,
164
repository.RepositoryFormatMetaDir.find_format,
148
167
def test_register_unregister_format(self):
168
# Test deprecated format registration functions
149
169
format = SampleRepositoryFormat()
150
170
# make a control dir
151
171
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
153
173
format.initialize(dir)
154
174
# register a format for it.
155
repository.RepositoryFormat.register_format(format)
175
self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
176
repository.RepositoryFormat.register_format, format)
156
177
# which repository.Open will refuse (not supported)
157
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
178
self.assertRaises(UnsupportedFormatError, repository.Repository.open,
158
180
# but open(unsupported) will work
159
181
self.assertEqual(format.open(dir), "opened repository.")
160
182
# unregister the format
161
repository.RepositoryFormat.unregister_format(format)
164
class TestFormat6(TestCaseWithTransport):
166
def test_attribute__fetch_order(self):
167
"""Weaves need topological data insertion."""
168
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
169
repo = weaverepo.RepositoryFormat6().initialize(control)
170
self.assertEqual('topological', repo._format._fetch_order)
172
def test_attribute__fetch_uses_deltas(self):
173
"""Weaves do not reuse deltas."""
174
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
175
repo = weaverepo.RepositoryFormat6().initialize(control)
176
self.assertEqual(False, repo._format._fetch_uses_deltas)
178
def test_attribute__fetch_reconcile(self):
179
"""Weave repositories need a reconcile after fetch."""
180
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
181
repo = weaverepo.RepositoryFormat6().initialize(control)
182
self.assertEqual(True, repo._format._fetch_reconcile)
184
def test_no_ancestry_weave(self):
185
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
186
repo = weaverepo.RepositoryFormat6().initialize(control)
187
# We no longer need to create the ancestry.weave file
188
# since it is *never* used.
189
self.assertRaises(NoSuchFile,
190
control.transport.get,
193
def test_supports_external_lookups(self):
194
control = bzrdir.BzrDirFormat6().initialize(self.get_url())
195
repo = weaverepo.RepositoryFormat6().initialize(control)
196
self.assertFalse(repo._format.supports_external_lookups)
199
class TestFormat7(TestCaseWithTransport):
201
def test_attribute__fetch_order(self):
202
"""Weaves need topological data insertion."""
203
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
204
repo = weaverepo.RepositoryFormat7().initialize(control)
205
self.assertEqual('topological', repo._format._fetch_order)
207
def test_attribute__fetch_uses_deltas(self):
208
"""Weaves do not reuse deltas."""
209
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
210
repo = weaverepo.RepositoryFormat7().initialize(control)
211
self.assertEqual(False, repo._format._fetch_uses_deltas)
213
def test_attribute__fetch_reconcile(self):
214
"""Weave repositories need a reconcile after fetch."""
215
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
216
repo = weaverepo.RepositoryFormat7().initialize(control)
217
self.assertEqual(True, repo._format._fetch_reconcile)
219
def test_disk_layout(self):
220
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
221
repo = weaverepo.RepositoryFormat7().initialize(control)
222
# in case of side effects of locking.
226
# format 'Bazaar-NG Repository format 7'
228
# inventory.weave == empty_weave
229
# empty revision-store directory
230
# empty weaves directory
231
t = control.get_repository_transport(None)
232
self.assertEqualDiff('Bazaar-NG Repository format 7',
233
t.get('format').read())
234
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
235
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
236
self.assertEqualDiff('# bzr weave file v5\n'
239
t.get('inventory.weave').read())
240
# Creating a file with id Foo:Bar results in a non-escaped file name on
242
control.create_branch()
243
tree = control.create_workingtree()
244
tree.add(['foo'], ['Foo:Bar'], ['file'])
245
tree.put_file_bytes_non_atomic('Foo:Bar', 'content\n')
247
tree.commit('first post', rev_id='first')
248
except errors.IllegalPath:
249
if sys.platform != 'win32':
251
self.knownFailure('Foo:Bar cannot be used as a file-id on windows'
254
self.assertEqualDiff(
255
'# bzr weave file v5\n'
257
'1 7fe70820e08a1aac0ef224d9c66ab66831cc4ab1\n'
265
t.get('weaves/74/Foo%3ABar.weave').read())
267
def test_shared_disk_layout(self):
268
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
269
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
271
# format 'Bazaar-NG Repository format 7'
272
# inventory.weave == empty_weave
273
# empty revision-store directory
274
# empty weaves directory
275
# a 'shared-storage' marker file.
276
# lock is not present when unlocked
277
t = control.get_repository_transport(None)
278
self.assertEqualDiff('Bazaar-NG Repository format 7',
279
t.get('format').read())
280
self.assertEqualDiff('', t.get('shared-storage').read())
281
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
282
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
283
self.assertEqualDiff('# bzr weave file v5\n'
286
t.get('inventory.weave').read())
287
self.assertFalse(t.has('branch-lock'))
289
def test_creates_lockdir(self):
290
"""Make sure it appears to be controlled by a LockDir existence"""
291
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
292
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
293
t = control.get_repository_transport(None)
294
# TODO: Should check there is a 'lock' toplevel directory,
295
# regardless of contents
296
self.assertFalse(t.has('lock/held/info'))
299
self.assertTrue(t.has('lock/held/info'))
301
# unlock so we don't get a warning about failing to do so
304
def test_uses_lockdir(self):
305
"""repo format 7 actually locks on lockdir"""
306
base_url = self.get_url()
307
control = bzrdir.BzrDirMetaFormat1().initialize(base_url)
308
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
309
t = control.get_repository_transport(None)
313
# make sure the same lock is created by opening it
314
repo = repository.Repository.open(base_url)
316
self.assertTrue(t.has('lock/held/info'))
318
self.assertFalse(t.has('lock/held/info'))
320
def test_shared_no_tree_disk_layout(self):
321
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
322
repo = weaverepo.RepositoryFormat7().initialize(control, shared=True)
323
repo.set_make_working_trees(False)
325
# format 'Bazaar-NG Repository format 7'
327
# inventory.weave == empty_weave
328
# empty revision-store directory
329
# empty weaves directory
330
# a 'shared-storage' marker file.
331
t = control.get_repository_transport(None)
332
self.assertEqualDiff('Bazaar-NG Repository format 7',
333
t.get('format').read())
334
## self.assertEqualDiff('', t.get('lock').read())
335
self.assertEqualDiff('', t.get('shared-storage').read())
336
self.assertEqualDiff('', t.get('no-working-trees').read())
337
repo.set_make_working_trees(True)
338
self.assertFalse(t.has('no-working-trees'))
339
self.assertTrue(S_ISDIR(t.stat('revision-store').st_mode))
340
self.assertTrue(S_ISDIR(t.stat('weaves').st_mode))
341
self.assertEqualDiff('# bzr weave file v5\n'
344
t.get('inventory.weave').read())
346
def test_supports_external_lookups(self):
347
control = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
348
repo = weaverepo.RepositoryFormat7().initialize(control)
349
self.assertFalse(repo._format.supports_external_lookups)
183
self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
184
repository.RepositoryFormat.unregister_format, format)
187
class TestRepositoryFormatRegistry(TestCase):
190
super(TestRepositoryFormatRegistry, self).setUp()
191
self.registry = repository.RepositoryFormatRegistry()
193
def test_register_unregister_format(self):
194
format = SampleRepositoryFormat()
195
self.registry.register(format)
196
self.assertEquals(format, self.registry.get("Sample .bzr repository format."))
197
self.registry.remove(format)
198
self.assertRaises(KeyError, self.registry.get, "Sample .bzr repository format.")
200
def test_get_all(self):
201
format = SampleRepositoryFormat()
202
self.assertEquals([], self.registry._get_all())
203
self.registry.register(format)
204
self.assertEquals([format], self.registry._get_all())
206
def test_register_extra(self):
207
format = SampleExtraRepositoryFormat()
208
self.assertEquals([], self.registry._get_all())
209
self.registry.register_extra(format)
210
self.assertEquals([format], self.registry._get_all())
212
def test_register_extra_lazy(self):
213
self.assertEquals([], self.registry._get_all())
214
self.registry.register_extra_lazy("bzrlib.tests.test_repository",
215
"SampleExtraRepositoryFormat")
216
formats = self.registry._get_all()
217
self.assertEquals(1, len(formats))
218
self.assertIsInstance(formats[0], SampleExtraRepositoryFormat)
352
221
class TestFormatKnit1(TestCaseWithTransport):
571
446
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
574
class TestInterWeaveRepo(TestCaseWithTransport):
576
def test_is_compatible_and_registered(self):
577
# InterWeaveRepo is compatible when either side
578
# is a format 5/6/7 branch
579
from bzrlib.repofmt import knitrepo, weaverepo
580
formats = [weaverepo.RepositoryFormat5(),
581
weaverepo.RepositoryFormat6(),
582
weaverepo.RepositoryFormat7()]
583
incompatible_formats = [weaverepo.RepositoryFormat4(),
584
knitrepo.RepositoryFormatKnit1(),
586
repo_a = self.make_repository('a')
587
repo_b = self.make_repository('b')
588
is_compatible = repository.InterWeaveRepo.is_compatible
589
for source in incompatible_formats:
590
# force incompatible left then right
591
repo_a._format = source
592
repo_b._format = formats[0]
593
self.assertFalse(is_compatible(repo_a, repo_b))
594
self.assertFalse(is_compatible(repo_b, repo_a))
595
for source in formats:
596
repo_a._format = source
597
for target in formats:
598
repo_b._format = target
599
self.assertTrue(is_compatible(repo_a, repo_b))
600
self.assertEqual(repository.InterWeaveRepo,
601
repository.InterRepository.get(repo_a,
449
class TestRepositoryFormat1(knitrepo.RepositoryFormatKnit1):
452
def get_format_string(cls):
453
return "Test Format 1"
456
class TestRepositoryFormat2(knitrepo.RepositoryFormatKnit1):
459
def get_format_string(cls):
460
return "Test Format 2"
605
463
class TestRepositoryConverter(TestCaseWithTransport):
607
465
def test_convert_empty(self):
608
t = get_transport(self.get_url('.'))
466
source_format = TestRepositoryFormat1()
467
target_format = TestRepositoryFormat2()
468
repository.format_registry.register(source_format)
469
self.addCleanup(repository.format_registry.remove,
471
repository.format_registry.register(target_format)
472
self.addCleanup(repository.format_registry.remove,
474
t = self.get_transport()
609
475
t.mkdir('repository')
610
476
repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
611
repo = weaverepo.RepositoryFormat7().initialize(repo_dir)
612
target_format = knitrepo.RepositoryFormatKnit1()
477
repo = TestRepositoryFormat1().initialize(repo_dir)
613
478
converter = repository.CopyConverter(target_format)
614
479
pb = bzrlib.ui.ui_factory.nested_progress_bar()
1622
1517
self.assertTrue(new_pack.signature_index._optimize_for_size)
1520
class TestGCCHKPacker(TestCaseWithTransport):
1522
def make_abc_branch(self):
1523
builder = self.make_branch_builder('source')
1524
builder.start_series()
1525
builder.build_snapshot('A', None, [
1526
('add', ('', 'root-id', 'directory', None)),
1527
('add', ('file', 'file-id', 'file', 'content\n')),
1529
builder.build_snapshot('B', ['A'], [
1530
('add', ('dir', 'dir-id', 'directory', None))])
1531
builder.build_snapshot('C', ['B'], [
1532
('modify', ('file-id', 'new content\n'))])
1533
builder.finish_series()
1534
return builder.get_branch()
1536
def make_branch_with_disjoint_inventory_and_revision(self):
1537
"""a repo with separate packs for a revisions Revision and Inventory.
1539
There will be one pack file that holds the Revision content, and one
1540
for the Inventory content.
1542
:return: (repository,
1543
pack_name_with_rev_A_Revision,
1544
pack_name_with_rev_A_Inventory,
1545
pack_name_with_rev_C_content)
1547
b_source = self.make_abc_branch()
1548
b_base = b_source.bzrdir.sprout('base', revision_id='A').open_branch()
1549
b_stacked = b_base.bzrdir.sprout('stacked', stacked=True).open_branch()
1550
b_stacked.lock_write()
1551
self.addCleanup(b_stacked.unlock)
1552
b_stacked.fetch(b_source, 'B')
1553
# Now re-open the stacked repo directly (no fallbacks) so that we can
1554
# fill in the A rev.
1555
repo_not_stacked = b_stacked.bzrdir.open_repository()
1556
repo_not_stacked.lock_write()
1557
self.addCleanup(repo_not_stacked.unlock)
1558
# Now we should have a pack file with A's inventory, but not its
1560
self.assertEqual([('A',), ('B',)],
1561
sorted(repo_not_stacked.inventories.keys()))
1562
self.assertEqual([('B',)],
1563
sorted(repo_not_stacked.revisions.keys()))
1564
stacked_pack_names = repo_not_stacked._pack_collection.names()
1565
# We have a couple names here, figure out which has A's inventory
1566
for name in stacked_pack_names:
1567
pack = repo_not_stacked._pack_collection.get_pack_by_name(name)
1568
keys = [n[1] for n in pack.inventory_index.iter_all_entries()]
1570
inv_a_pack_name = name
1573
self.fail('Could not find pack containing A\'s inventory')
1574
repo_not_stacked.fetch(b_source.repository, 'A')
1575
self.assertEqual([('A',), ('B',)],
1576
sorted(repo_not_stacked.revisions.keys()))
1577
new_pack_names = set(repo_not_stacked._pack_collection.names())
1578
rev_a_pack_names = new_pack_names.difference(stacked_pack_names)
1579
self.assertEqual(1, len(rev_a_pack_names))
1580
rev_a_pack_name = list(rev_a_pack_names)[0]
1581
# Now fetch 'C', so we have a couple pack files to join
1582
repo_not_stacked.fetch(b_source.repository, 'C')
1583
rev_c_pack_names = set(repo_not_stacked._pack_collection.names())
1584
rev_c_pack_names = rev_c_pack_names.difference(new_pack_names)
1585
self.assertEqual(1, len(rev_c_pack_names))
1586
rev_c_pack_name = list(rev_c_pack_names)[0]
1587
return (repo_not_stacked, rev_a_pack_name, inv_a_pack_name,
1590
def test_pack_with_distant_inventories(self):
1591
# See https://bugs.launchpad.net/bzr/+bug/437003
1592
# When repacking, it is possible to have an inventory in a different
1593
# pack file than the associated revision. An autopack can then come
1594
# along, and miss that inventory, and complain.
1595
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1596
) = self.make_branch_with_disjoint_inventory_and_revision()
1597
a_pack = repo._pack_collection.get_pack_by_name(rev_a_pack_name)
1598
c_pack = repo._pack_collection.get_pack_by_name(rev_c_pack_name)
1599
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1600
[a_pack, c_pack], '.test-pack')
1601
# This would raise ValueError in bug #437003, but should not raise an
1605
def test_pack_with_missing_inventory(self):
1606
# Similar to test_pack_with_missing_inventory, but this time, we force
1607
# the A inventory to actually be gone from the repository.
1608
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1609
) = self.make_branch_with_disjoint_inventory_and_revision()
1610
inv_a_pack = repo._pack_collection.get_pack_by_name(inv_a_pack_name)
1611
repo._pack_collection._remove_pack_from_memory(inv_a_pack)
1612
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1613
repo._pack_collection.all_packs(), '.test-pack')
1614
e = self.assertRaises(ValueError, packer.pack)
1615
packer.new_pack.abort()
1616
self.assertContainsRe(str(e),
1617
r"We are missing inventories for revisions: .*'A'")
1625
1620
class TestCrossFormatPacks(TestCaseWithTransport):
1627
1622
def log_pack(self, hint=None):