138
136
def check_format(format, url):
139
137
dir = format._matchingbzrdir.initialize(url)
140
138
format.initialize(dir)
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")
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")
146
144
def test_find_format_no_repository(self):
147
145
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
148
146
self.assertRaises(errors.NoRepositoryPresent,
149
repository.RepositoryFormatMetaDir.find_format,
147
repository.RepositoryFormat.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.")
161
150
def test_find_format_unknown_format(self):
162
151
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
163
152
SampleRepositoryFormat().initialize(dir)
164
153
self.assertRaises(UnknownFormatError,
165
repository.RepositoryFormatMetaDir.find_format,
154
repository.RepositoryFormat.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)
181
157
def test_register_unregister_format(self):
182
# Test deprecated format registration functions
183
158
format = SampleRepositoryFormat()
184
159
# make a control dir
185
160
dir = bzrdir.BzrDirMetaFormat1().initialize(self.get_url())
187
162
format.initialize(dir)
188
163
# register a format for it.
189
self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
190
repository.RepositoryFormat.register_format, format)
164
repository.RepositoryFormat.register_format(format)
191
165
# which repository.Open will refuse (not supported)
192
self.assertRaises(UnsupportedFormatError, repository.Repository.open,
166
self.assertRaises(UnsupportedFormatError, repository.Repository.open, self.get_url())
194
167
# but open(unsupported) will work
195
168
self.assertEqual(format.open(dir), "opened repository.")
196
169
# unregister the format
197
self.applyDeprecated(symbol_versioning.deprecated_in((2, 4, 0)),
198
repository.RepositoryFormat.unregister_format, format)
201
class TestRepositoryFormatRegistry(TestCase):
204
super(TestRepositoryFormatRegistry, self).setUp()
205
self.registry = repository.RepositoryFormatRegistry()
207
def test_register_unregister_format(self):
208
format = SampleRepositoryFormat()
209
self.registry.register(format)
210
self.assertEquals(format, self.registry.get("Sample .bzr repository format."))
211
self.registry.remove(format)
212
self.assertRaises(KeyError, self.registry.get, "Sample .bzr repository format.")
214
def test_get_all(self):
215
format = SampleRepositoryFormat()
216
self.assertEquals([], self.registry._get_all())
217
self.registry.register(format)
218
self.assertEquals([format], self.registry._get_all())
220
def test_register_extra(self):
221
format = SampleExtraRepositoryFormat()
222
self.assertEquals([], self.registry._get_all())
223
self.registry.register_extra(format)
224
self.assertEquals([format], self.registry._get_all())
226
def test_register_extra_lazy(self):
227
self.assertEquals([], self.registry._get_all())
228
self.registry.register_extra_lazy("bzrlib.tests.test_repository",
229
"SampleExtraRepositoryFormat")
230
formats = self.registry._get_all()
231
self.assertEquals(1, len(formats))
232
self.assertIsInstance(formats[0], SampleExtraRepositoryFormat)
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)
235
354
class TestFormatKnit1(TestCaseWithTransport):
460
573
self.assertGetsDefaultInterRepository(dummy_a, dummy_b)
463
class TestRepositoryFormat1(knitrepo.RepositoryFormatKnit1):
466
def get_format_string(cls):
467
return "Test Format 1"
470
class TestRepositoryFormat2(knitrepo.RepositoryFormatKnit1):
473
def get_format_string(cls):
474
return "Test Format 2"
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,
477
607
class TestRepositoryConverter(TestCaseWithTransport):
479
609
def test_convert_empty(self):
480
source_format = TestRepositoryFormat1()
481
target_format = TestRepositoryFormat2()
482
repository.format_registry.register(source_format)
483
self.addCleanup(repository.format_registry.remove,
485
repository.format_registry.register(target_format)
486
self.addCleanup(repository.format_registry.remove,
488
t = self.get_transport()
610
t = get_transport(self.get_url('.'))
489
611
t.mkdir('repository')
490
612
repo_dir = bzrdir.BzrDirMetaFormat1().initialize('repository')
491
repo = TestRepositoryFormat1().initialize(repo_dir)
613
repo = weaverepo.RepositoryFormat7().initialize(repo_dir)
614
target_format = knitrepo.RepositoryFormatKnit1()
492
615
converter = repository.CopyConverter(target_format)
493
616
pb = bzrlib.ui.ui_factory.nested_progress_bar()
1070
1160
# check some arbitrary big numbers
1071
1161
self.assertEqual(25, packs._max_pack_count(112894))
1073
def test_repr(self):
1074
packs = self.get_packs()
1075
self.assertContainsRe(repr(packs),
1076
'RepositoryPackCollection(.*Repository(.*))')
1078
def test__obsolete_packs(self):
1079
tree, r, packs, revs = self.make_packs_and_alt_repo(write_lock=True)
1080
names = packs.names()
1081
pack = packs.get_pack_by_name(names[0])
1082
# Schedule this one for removal
1083
packs._remove_pack_from_memory(pack)
1084
# Simulate a concurrent update by renaming the .pack file and one of
1086
packs.transport.rename('packs/%s.pack' % (names[0],),
1087
'obsolete_packs/%s.pack' % (names[0],))
1088
packs.transport.rename('indices/%s.iix' % (names[0],),
1089
'obsolete_packs/%s.iix' % (names[0],))
1090
# Now trigger the obsoletion, and ensure that all the remaining files
1092
packs._obsolete_packs([pack])
1093
self.assertEqual([n + '.pack' for n in names[1:]],
1094
sorted(packs._pack_transport.list_dir('.')))
1095
# names[0] should not be present in the index anymore
1096
self.assertEqual(names[1:],
1097
sorted(set([osutils.splitext(n)[0] for n in
1098
packs._index_transport.list_dir('.')])))
1100
def test__obsolete_packs_missing_directory(self):
1101
tree, r, packs, revs = self.make_packs_and_alt_repo(write_lock=True)
1102
r.control_transport.rmdir('obsolete_packs')
1103
names = packs.names()
1104
pack = packs.get_pack_by_name(names[0])
1105
# Schedule this one for removal
1106
packs._remove_pack_from_memory(pack)
1107
# Now trigger the obsoletion, and ensure that all the remaining files
1109
packs._obsolete_packs([pack])
1110
self.assertEqual([n + '.pack' for n in names[1:]],
1111
sorted(packs._pack_transport.list_dir('.')))
1112
# names[0] should not be present in the index anymore
1113
self.assertEqual(names[1:],
1114
sorted(set([osutils.splitext(n)[0] for n in
1115
packs._index_transport.list_dir('.')])))
1117
1163
def test_pack_distribution_zero(self):
1118
1164
packs = self.get_packs()
1119
1165
self.assertEqual([0], packs.pack_distribution(0))
1287
1333
self.assertEqual({revs[-1]:(revs[-2],)}, r.get_parent_map([revs[-1]]))
1288
1334
self.assertFalse(packs.reload_pack_names())
1290
def test_reload_pack_names_preserves_pending(self):
1291
# TODO: Update this to also test for pending-deleted names
1292
tree, r, packs, revs = self.make_packs_and_alt_repo(write_lock=True)
1293
# We will add one pack (via start_write_group + insert_record_stream),
1294
# and remove another pack (via _remove_pack_from_memory)
1295
orig_names = packs.names()
1296
orig_at_load = packs._packs_at_load
1297
to_remove_name = iter(orig_names).next()
1298
r.start_write_group()
1299
self.addCleanup(r.abort_write_group)
1300
r.texts.insert_record_stream([versionedfile.FulltextContentFactory(
1301
('text', 'rev'), (), None, 'content\n')])
1302
new_pack = packs._new_pack
1303
self.assertTrue(new_pack.data_inserted())
1305
packs.allocate(new_pack)
1306
packs._new_pack = None
1307
removed_pack = packs.get_pack_by_name(to_remove_name)
1308
packs._remove_pack_from_memory(removed_pack)
1309
names = packs.names()
1310
all_nodes, deleted_nodes, new_nodes, _ = packs._diff_pack_names()
1311
new_names = set([x[0][0] for x in new_nodes])
1312
self.assertEqual(names, sorted([x[0][0] for x in all_nodes]))
1313
self.assertEqual(set(names) - set(orig_names), new_names)
1314
self.assertEqual(set([new_pack.name]), new_names)
1315
self.assertEqual([to_remove_name],
1316
sorted([x[0][0] for x in deleted_nodes]))
1317
packs.reload_pack_names()
1318
reloaded_names = packs.names()
1319
self.assertEqual(orig_at_load, packs._packs_at_load)
1320
self.assertEqual(names, reloaded_names)
1321
all_nodes, deleted_nodes, new_nodes, _ = packs._diff_pack_names()
1322
new_names = set([x[0][0] for x in new_nodes])
1323
self.assertEqual(names, sorted([x[0][0] for x in all_nodes]))
1324
self.assertEqual(set(names) - set(orig_names), new_names)
1325
self.assertEqual(set([new_pack.name]), new_names)
1326
self.assertEqual([to_remove_name],
1327
sorted([x[0][0] for x in deleted_nodes]))
1329
def test_autopack_obsoletes_new_pack(self):
1330
tree, r, packs, revs = self.make_packs_and_alt_repo(write_lock=True)
1331
packs._max_pack_count = lambda x: 1
1332
packs.pack_distribution = lambda x: [10]
1333
r.start_write_group()
1334
r.revisions.insert_record_stream([versionedfile.FulltextContentFactory(
1335
('bogus-rev',), (), None, 'bogus-content\n')])
1336
# This should trigger an autopack, which will combine everything into a
1338
new_names = r.commit_write_group()
1339
names = packs.names()
1340
self.assertEqual(1, len(names))
1341
self.assertEqual([names[0] + '.pack'],
1342
packs._pack_transport.list_dir('.'))
1344
1336
def test_autopack_reloads_and_stops(self):
1345
1337
tree, r, packs, revs = self.make_packs_and_alt_repo(write_lock=True)
1346
1338
# After we have determined what needs to be autopacked, trigger a
1532
1484
self.assertTrue(new_pack.signature_index._optimize_for_size)
1535
class TestGCCHKPacker(TestCaseWithTransport):
1537
def make_abc_branch(self):
1538
builder = self.make_branch_builder('source')
1539
builder.start_series()
1540
builder.build_snapshot('A', None, [
1541
('add', ('', 'root-id', 'directory', None)),
1542
('add', ('file', 'file-id', 'file', 'content\n')),
1544
builder.build_snapshot('B', ['A'], [
1545
('add', ('dir', 'dir-id', 'directory', None))])
1546
builder.build_snapshot('C', ['B'], [
1547
('modify', ('file-id', 'new content\n'))])
1548
builder.finish_series()
1549
return builder.get_branch()
1551
def make_branch_with_disjoint_inventory_and_revision(self):
1552
"""a repo with separate packs for a revisions Revision and Inventory.
1554
There will be one pack file that holds the Revision content, and one
1555
for the Inventory content.
1557
:return: (repository,
1558
pack_name_with_rev_A_Revision,
1559
pack_name_with_rev_A_Inventory,
1560
pack_name_with_rev_C_content)
1562
b_source = self.make_abc_branch()
1563
b_base = b_source.bzrdir.sprout('base', revision_id='A').open_branch()
1564
b_stacked = b_base.bzrdir.sprout('stacked', stacked=True).open_branch()
1565
b_stacked.lock_write()
1566
self.addCleanup(b_stacked.unlock)
1567
b_stacked.fetch(b_source, 'B')
1568
# Now re-open the stacked repo directly (no fallbacks) so that we can
1569
# fill in the A rev.
1570
repo_not_stacked = b_stacked.bzrdir.open_repository()
1571
repo_not_stacked.lock_write()
1572
self.addCleanup(repo_not_stacked.unlock)
1573
# Now we should have a pack file with A's inventory, but not its
1575
self.assertEqual([('A',), ('B',)],
1576
sorted(repo_not_stacked.inventories.keys()))
1577
self.assertEqual([('B',)],
1578
sorted(repo_not_stacked.revisions.keys()))
1579
stacked_pack_names = repo_not_stacked._pack_collection.names()
1580
# We have a couple names here, figure out which has A's inventory
1581
for name in stacked_pack_names:
1582
pack = repo_not_stacked._pack_collection.get_pack_by_name(name)
1583
keys = [n[1] for n in pack.inventory_index.iter_all_entries()]
1585
inv_a_pack_name = name
1588
self.fail('Could not find pack containing A\'s inventory')
1589
repo_not_stacked.fetch(b_source.repository, 'A')
1590
self.assertEqual([('A',), ('B',)],
1591
sorted(repo_not_stacked.revisions.keys()))
1592
new_pack_names = set(repo_not_stacked._pack_collection.names())
1593
rev_a_pack_names = new_pack_names.difference(stacked_pack_names)
1594
self.assertEqual(1, len(rev_a_pack_names))
1595
rev_a_pack_name = list(rev_a_pack_names)[0]
1596
# Now fetch 'C', so we have a couple pack files to join
1597
repo_not_stacked.fetch(b_source.repository, 'C')
1598
rev_c_pack_names = set(repo_not_stacked._pack_collection.names())
1599
rev_c_pack_names = rev_c_pack_names.difference(new_pack_names)
1600
self.assertEqual(1, len(rev_c_pack_names))
1601
rev_c_pack_name = list(rev_c_pack_names)[0]
1602
return (repo_not_stacked, rev_a_pack_name, inv_a_pack_name,
1605
def test_pack_with_distant_inventories(self):
1606
# See https://bugs.launchpad.net/bzr/+bug/437003
1607
# When repacking, it is possible to have an inventory in a different
1608
# pack file than the associated revision. An autopack can then come
1609
# along, and miss that inventory, and complain.
1610
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1611
) = self.make_branch_with_disjoint_inventory_and_revision()
1612
a_pack = repo._pack_collection.get_pack_by_name(rev_a_pack_name)
1613
c_pack = repo._pack_collection.get_pack_by_name(rev_c_pack_name)
1614
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1615
[a_pack, c_pack], '.test-pack')
1616
# This would raise ValueError in bug #437003, but should not raise an
1620
def test_pack_with_missing_inventory(self):
1621
# Similar to test_pack_with_missing_inventory, but this time, we force
1622
# the A inventory to actually be gone from the repository.
1623
(repo, rev_a_pack_name, inv_a_pack_name, rev_c_pack_name
1624
) = self.make_branch_with_disjoint_inventory_and_revision()
1625
inv_a_pack = repo._pack_collection.get_pack_by_name(inv_a_pack_name)
1626
repo._pack_collection._remove_pack_from_memory(inv_a_pack)
1627
packer = groupcompress_repo.GCCHKPacker(repo._pack_collection,
1628
repo._pack_collection.all_packs(), '.test-pack')
1629
e = self.assertRaises(ValueError, packer.pack)
1630
packer.new_pack.abort()
1631
self.assertContainsRe(str(e),
1632
r"We are missing inventories for revisions: .*'A'")
1635
1487
class TestCrossFormatPacks(TestCaseWithTransport):
1637
1489
def log_pack(self, hint=None):