458
397
# Arguably, the deserialise_inventory should detect a mismatch, and
459
398
# raise an error, rather than silently using one revision_id over the
461
self.assertRaises(AssertionError, repo.deserialise_inventory,
462
'test-rev-id', inv_xml)
463
inv = repo.deserialise_inventory('other-rev-id', inv_xml)
400
inv = repo.deserialise_inventory('test-rev-id', inv_xml)
464
401
self.assertEqual('other-rev-id', inv.root.revision)
466
def test_supports_external_lookups(self):
467
repo = self.make_repository('.',
468
format=bzrdir.format_registry.get('knit')())
469
self.assertFalse(repo._format.supports_external_lookups)
404
class KnitRepositoryStreamTests(test_knit.KnitTests):
405
"""Tests for knitrepo._get_stream_as_bytes."""
407
def test_get_stream_as_bytes(self):
409
k1 = self.make_test_knit()
410
k1.add_lines('text-a', [], test_knit.split_lines(test_knit.TEXT_1))
412
# Serialise it, check the output.
413
bytes = knitrepo._get_stream_as_bytes(k1, ['text-a'])
414
data = bencode.bdecode(bytes)
415
format, record = data
416
self.assertEqual('knit-plain', format)
417
self.assertEqual(['text-a', ['fulltext'], []], record[:3])
418
self.assertRecordContentEqual(k1, 'text-a', record[3])
420
def test_get_stream_as_bytes_all(self):
421
"""Get a serialised data stream for all the records in a knit.
423
Much like test_get_stream_all, except for get_stream_as_bytes.
425
k1 = self.make_test_knit()
426
# Insert the same data as BasicKnitTests.test_knit_join, as they seem
427
# to cover a range of cases (no parents, one parent, multiple parents).
429
('text-a', [], test_knit.TEXT_1),
430
('text-b', ['text-a'], test_knit.TEXT_1),
431
('text-c', [], test_knit.TEXT_1),
432
('text-d', ['text-c'], test_knit.TEXT_1),
433
('text-m', ['text-b', 'text-d'], test_knit.TEXT_1),
435
expected_data_list = [
436
# version, options, parents
437
('text-a', ['fulltext'], []),
438
('text-b', ['line-delta'], ['text-a']),
439
('text-c', ['fulltext'], []),
440
('text-d', ['line-delta'], ['text-c']),
441
('text-m', ['line-delta'], ['text-b', 'text-d']),
443
for version_id, parents, lines in test_data:
444
k1.add_lines(version_id, parents, test_knit.split_lines(lines))
446
bytes = knitrepo._get_stream_as_bytes(
447
k1, ['text-a', 'text-b', 'text-c', 'text-d', 'text-m'])
449
data = bencode.bdecode(bytes)
451
self.assertEqual('knit-plain', format)
453
for expected, actual in zip(expected_data_list, data):
454
expected_version = expected[0]
455
expected_options = expected[1]
456
expected_parents = expected[2]
457
version, options, parents, bytes = actual
458
self.assertEqual(expected_version, version)
459
self.assertEqual(expected_options, options)
460
self.assertEqual(expected_parents, parents)
461
self.assertRecordContentEqual(k1, version, bytes)
472
464
class DummyRepository(object):
737
752
broken_repo = self.make_broken_repository()
738
753
empty_repo = self.make_repository('empty-repo')
739
self.assertRaises(errors.RevisionNotPresent, empty_repo.fetch, broken_repo)
754
stream = broken_repo.get_data_stream(['rev1a', 'rev2', 'rev3'])
755
empty_repo.lock_write()
756
self.addCleanup(empty_repo.unlock)
757
empty_repo.start_write_group()
760
errors.KnitCorrupt, empty_repo.insert_data_stream, stream)
762
empty_repo.abort_write_group()
765
class TestKnitPackNoSubtrees(TestCaseWithTransport):
767
def get_format(self):
768
return bzrdir.format_registry.make_bzrdir('knitpack-experimental')
770
def test_disk_layout(self):
771
format = self.get_format()
772
repo = self.make_repository('.', format=format)
773
# in case of side effects of locking.
776
t = repo.bzrdir.get_repository_transport(None)
778
# XXX: no locks left when unlocked at the moment
779
# self.assertEqualDiff('', t.get('lock').read())
780
self.check_databases(t)
782
def check_format(self, t):
783
self.assertEqualDiff(
784
"Bazaar pack repository format 1 (needs bzr 0.92)\n",
785
t.get('format').read())
787
def assertHasKndx(self, t, knit_name):
788
"""Assert that knit_name exists on t."""
789
self.assertEqualDiff('# bzr knit index 8\n',
790
t.get(knit_name + '.kndx').read())
792
def assertHasNoKndx(self, t, knit_name):
793
"""Assert that knit_name has no index on t."""
794
self.assertFalse(t.has(knit_name + '.kndx'))
796
def assertHasNoKnit(self, t, knit_name):
797
"""Assert that knit_name exists on t."""
799
self.assertFalse(t.has(knit_name + '.knit'))
801
def check_databases(self, t):
802
"""check knit content for a repository."""
803
# check conversion worked
804
self.assertHasNoKndx(t, 'inventory')
805
self.assertHasNoKnit(t, 'inventory')
806
self.assertHasNoKndx(t, 'revisions')
807
self.assertHasNoKnit(t, 'revisions')
808
self.assertHasNoKndx(t, 'signatures')
809
self.assertHasNoKnit(t, 'signatures')
810
self.assertFalse(t.has('knits'))
811
# revision-indexes file-container directory
813
list(GraphIndex(t, 'pack-names', None).iter_all_entries()))
814
self.assertTrue(S_ISDIR(t.stat('packs').st_mode))
815
self.assertTrue(S_ISDIR(t.stat('upload').st_mode))
816
self.assertTrue(S_ISDIR(t.stat('indices').st_mode))
817
self.assertTrue(S_ISDIR(t.stat('obsolete_packs').st_mode))
819
def test_shared_disk_layout(self):
820
format = self.get_format()
821
repo = self.make_repository('.', shared=True, format=format)
823
t = repo.bzrdir.get_repository_transport(None)
825
# XXX: no locks left when unlocked at the moment
826
# self.assertEqualDiff('', t.get('lock').read())
827
# We should have a 'shared-storage' marker file.
828
self.assertEqualDiff('', t.get('shared-storage').read())
829
self.check_databases(t)
831
def test_shared_no_tree_disk_layout(self):
832
format = self.get_format()
833
repo = self.make_repository('.', shared=True, format=format)
834
repo.set_make_working_trees(False)
836
t = repo.bzrdir.get_repository_transport(None)
838
# XXX: no locks left when unlocked at the moment
839
# self.assertEqualDiff('', t.get('lock').read())
840
# We should have a 'shared-storage' marker file.
841
self.assertEqualDiff('', t.get('shared-storage').read())
842
# We should have a marker for the no-working-trees flag.
843
self.assertEqualDiff('', t.get('no-working-trees').read())
844
# The marker should go when we toggle the setting.
845
repo.set_make_working_trees(True)
846
self.assertFalse(t.has('no-working-trees'))
847
self.check_databases(t)
849
def test_adding_revision_creates_pack_indices(self):
850
format = self.get_format()
851
tree = self.make_branch_and_tree('.', format=format)
852
trans = tree.branch.repository.bzrdir.get_repository_transport(None)
854
list(GraphIndex(trans, 'pack-names', None).iter_all_entries()))
855
tree.commit('foobarbaz')
856
index = GraphIndex(trans, 'pack-names', None)
857
index_nodes = list(index.iter_all_entries())
858
self.assertEqual(1, len(index_nodes))
859
node = index_nodes[0]
861
# the pack sizes should be listed in the index
863
sizes = [int(digits) for digits in pack_value.split(' ')]
864
for size, suffix in zip(sizes, ['.rix', '.iix', '.tix', '.six']):
865
stat = trans.stat('indices/%s%s' % (name, suffix))
866
self.assertEqual(size, stat.st_size)
868
def test_pulling_nothing_leads_to_no_new_names(self):
869
format = self.get_format()
870
tree1 = self.make_branch_and_tree('1', format=format)
871
tree2 = self.make_branch_and_tree('2', format=format)
872
tree1.branch.repository.fetch(tree2.branch.repository)
873
trans = tree1.branch.repository.bzrdir.get_repository_transport(None)
875
list(GraphIndex(trans, 'pack-names', None).iter_all_entries()))
877
def test_commit_across_pack_shape_boundary_autopacks(self):
878
format = self.get_format()
879
tree = self.make_branch_and_tree('.', format=format)
880
trans = tree.branch.repository.bzrdir.get_repository_transport(None)
881
# This test could be a little cheaper by replacing the packs
882
# attribute on the repository to allow a different pack distribution
883
# and max packs policy - so we are checking the policy is honoured
884
# in the test. But for now 11 commits is not a big deal in a single
887
tree.commit('commit %s' % x)
888
# there should be 9 packs:
889
index = GraphIndex(trans, 'pack-names', None)
890
self.assertEqual(9, len(list(index.iter_all_entries())))
891
# committing one more should coalesce to 1 of 10.
892
tree.commit('commit triggering pack')
893
index = GraphIndex(trans, 'pack-names', None)
894
self.assertEqual(1, len(list(index.iter_all_entries())))
895
# packing should not damage data
896
tree = tree.bzrdir.open_workingtree()
897
check_result = tree.branch.repository.check(
898
[tree.branch.last_revision()])
899
# XXX: Todo check packs obsoleted correctly - old packs and indices
900
# in the obsolete_packs directory.
901
large_pack_name = list(index.iter_all_entries())[0][1][0]
902
# finally, committing again should not touch the large pack.
903
tree.commit('commit not triggering pack')
904
index = GraphIndex(trans, 'pack-names', None)
905
self.assertEqual(2, len(list(index.iter_all_entries())))
906
pack_names = [node[1][0] for node in index.iter_all_entries()]
907
self.assertTrue(large_pack_name in pack_names)
909
def test_pack_after_two_commits_packs_everything(self):
910
format = self.get_format()
911
tree = self.make_branch_and_tree('.', format=format)
912
trans = tree.branch.repository.bzrdir.get_repository_transport(None)
914
tree.commit('more work')
915
tree.branch.repository.pack()
916
# there should be 1 pack:
917
index = GraphIndex(trans, 'pack-names', None)
918
self.assertEqual(1, len(list(index.iter_all_entries())))
919
self.assertEqual(2, len(tree.branch.repository.all_revision_ids()))
921
def test_pack_repositories_support_multiple_write_locks(self):
922
format = self.get_format()
923
self.make_repository('.', shared=True, format=format)
924
r1 = repository.Repository.open('.')
925
r2 = repository.Repository.open('.')
927
self.addCleanup(r1.unlock)
931
def _add_text(self, repo, fileid):
932
"""Add a text to the repository within a write group."""
933
vf =repo.weave_store.get_weave(fileid, repo.get_transaction())
934
vf.add_lines('samplerev+' + fileid, [], [])
936
def test_concurrent_writers_merge_new_packs(self):
937
format = self.get_format()
938
self.make_repository('.', shared=True, format=format)
939
r1 = repository.Repository.open('.')
940
r2 = repository.Repository.open('.')
943
# access enough data to load the names list
944
list(r1.all_revision_ids())
947
# access enough data to load the names list
948
list(r2.all_revision_ids())
949
r1.start_write_group()
951
r2.start_write_group()
953
self._add_text(r1, 'fileidr1')
954
self._add_text(r2, 'fileidr2')
956
r2.abort_write_group()
959
r1.abort_write_group()
961
# both r1 and r2 have open write groups with data in them
962
# created while the other's write group was open.
963
# Commit both which requires a merge to the pack-names.
965
r1.commit_write_group()
967
r1.abort_write_group()
968
r2.abort_write_group()
970
r2.commit_write_group()
971
# tell r1 to reload from disk
972
r1._pack_collection.reset()
973
# Now both repositories should know about both names
974
r1._pack_collection.ensure_loaded()
975
r2._pack_collection.ensure_loaded()
976
self.assertEqual(r1._pack_collection.names(), r2._pack_collection.names())
977
self.assertEqual(2, len(r1._pack_collection.names()))
983
def test_concurrent_writer_second_preserves_dropping_a_pack(self):
984
format = self.get_format()
985
self.make_repository('.', shared=True, format=format)
986
r1 = repository.Repository.open('.')
987
r2 = repository.Repository.open('.')
991
r1.start_write_group()
993
self._add_text(r1, 'fileidr1')
995
r1.abort_write_group()
998
r1.commit_write_group()
999
r1._pack_collection.ensure_loaded()
1000
name_to_drop = r1._pack_collection.all_packs()[0].name
1005
# access enough data to load the names list
1006
list(r1.all_revision_ids())
1009
# access enough data to load the names list
1010
list(r2.all_revision_ids())
1011
r1._pack_collection.ensure_loaded()
1013
r2.start_write_group()
1015
# in r1, drop the pack
1016
r1._pack_collection._remove_pack_from_memory(
1017
r1._pack_collection.get_pack_by_name(name_to_drop))
1019
self._add_text(r2, 'fileidr2')
1021
r2.abort_write_group()
1024
r1._pack_collection.reset()
1026
# r1 has a changed names list, and r2 an open write groups with
1028
# save r1, and then commit the r2 write group, which requires a
1029
# merge to the pack-names, which should not reinstate
1032
r1._pack_collection._save_pack_names()
1033
r1._pack_collection.reset()
1035
r2.abort_write_group()
1038
r2.commit_write_group()
1040
r2.abort_write_group()
1042
# Now both repositories should now about just one name.
1043
r1._pack_collection.ensure_loaded()
1044
r2._pack_collection.ensure_loaded()
1045
self.assertEqual(r1._pack_collection.names(), r2._pack_collection.names())
1046
self.assertEqual(1, len(r1._pack_collection.names()))
1047
self.assertFalse(name_to_drop in r1._pack_collection.names())
1053
def test_lock_write_does_not_physically_lock(self):
1054
repo = self.make_repository('.', format=self.get_format())
1056
self.addCleanup(repo.unlock)
1057
self.assertFalse(repo.get_physical_lock_status())
1059
def prepare_for_break_lock(self):
1060
# Setup the global ui factory state so that a break-lock method call
1061
# will find usable input in the input stream.
1062
old_factory = bzrlib.ui.ui_factory
1063
def restoreFactory():
1064
bzrlib.ui.ui_factory = old_factory
1065
self.addCleanup(restoreFactory)
1066
bzrlib.ui.ui_factory = bzrlib.ui.SilentUIFactory()
1067
bzrlib.ui.ui_factory.stdin = StringIO("y\n")
1069
def test_break_lock_breaks_physical_lock(self):
1070
repo = self.make_repository('.', format=self.get_format())
1071
repo._pack_collection.lock_names()
1072
repo2 = repository.Repository.open('.')
1073
self.assertTrue(repo.get_physical_lock_status())
1074
self.prepare_for_break_lock()
1076
self.assertFalse(repo.get_physical_lock_status())
1078
def test_broken_physical_locks_error_on__unlock_names_lock(self):
1079
repo = self.make_repository('.', format=self.get_format())
1080
repo._pack_collection.lock_names()
1081
self.assertTrue(repo.get_physical_lock_status())
1082
repo2 = repository.Repository.open('.')
1083
self.prepare_for_break_lock()
1085
self.assertRaises(errors.LockBroken, repo._pack_collection._unlock_names)
1087
def test_fetch_without_find_ghosts_ignores_ghosts(self):
1088
# we want two repositories at this point:
1089
# one with a revision that is a ghost in the other
1091
# 'ghost' is present in has_ghost, 'ghost' is absent in 'missing_ghost'.
1092
# 'references' is present in both repositories, and 'tip' is present
1093
# just in has_ghost.
1094
# has_ghost missing_ghost
1095
#------------------------------
1097
# 'references' 'references'
1099
# In this test we fetch 'tip' which should not fetch 'ghost'
1100
has_ghost = self.make_repository('has_ghost', format=self.get_format())
1101
missing_ghost = self.make_repository('missing_ghost',
1102
format=self.get_format())
1104
def add_commit(repo, revision_id, parent_ids):
1106
repo.start_write_group()
1107
inv = inventory.Inventory(revision_id=revision_id)
1108
inv.root.revision = revision_id
1109
root_id = inv.root.file_id
1110
sha1 = repo.add_inventory(revision_id, inv, [])
1111
vf = repo.weave_store.get_weave_or_empty(root_id,
1112
repo.get_transaction())
1113
vf.add_lines(revision_id, [], [])
1114
rev = bzrlib.revision.Revision(timestamp=0,
1116
committer="Foo Bar <foo@example.com>",
1118
inventory_sha1=sha1,
1119
revision_id=revision_id)
1120
rev.parent_ids = parent_ids
1121
repo.add_revision(revision_id, rev)
1122
repo.commit_write_group()
1124
add_commit(has_ghost, 'ghost', [])
1125
add_commit(has_ghost, 'references', ['ghost'])
1126
add_commit(missing_ghost, 'references', ['ghost'])
1127
add_commit(has_ghost, 'tip', ['references'])
1128
missing_ghost.fetch(has_ghost, 'tip')
1129
# missing ghost now has tip and not ghost.
1130
rev = missing_ghost.get_revision('tip')
1131
inv = missing_ghost.get_inventory('tip')
1132
self.assertRaises(errors.NoSuchRevision,
1133
missing_ghost.get_revision, 'ghost')
1134
self.assertRaises(errors.RevisionNotPresent,
1135
missing_ghost.get_inventory, 'ghost')
1138
class TestKnitPackSubtrees(TestKnitPackNoSubtrees):
1140
def get_format(self):
1141
return bzrdir.format_registry.make_bzrdir(
1142
'knitpack-subtree-experimental')
1144
def check_format(self, t):
1145
self.assertEqualDiff(
1146
"Bazaar pack repository format 1 with subtree support (needs bzr 0.92)\n",
1147
t.get('format').read())
742
1150
class TestRepositoryPackCollection(TestCaseWithTransport):
744
1152
def get_format(self):
745
return bzrdir.format_registry.make_bzrdir('pack-0.92')
1153
return bzrdir.format_registry.make_bzrdir('knitpack-experimental')
747
1155
def test__max_pack_count(self):
748
1156
"""The maximum pack count is a function of the number of revisions."""