49
40
self.assertContainsRe(self.get_log(), "0 unreferenced text versions")
52
class TestFindInconsistentRevisionParents(TestCaseWithBrokenRevisionIndex):
54
def test__find_inconsistent_revision_parents(self):
55
"""_find_inconsistent_revision_parents finds revisions with broken
58
repo = self.make_repo_with_extra_ghost_index()
60
[('revision-id', ('incorrect-parent',), ())],
61
list(repo._find_inconsistent_revision_parents()))
63
def test__check_for_inconsistent_revision_parents(self):
64
"""_check_for_inconsistent_revision_parents raises BzrCheckError if
65
there are any revisions with inconsistent parents.
67
repo = self.make_repo_with_extra_ghost_index()
70
repo._check_for_inconsistent_revision_parents)
72
def test__check_for_inconsistent_revision_parents_on_clean_repo(self):
73
"""_check_for_inconsistent_revision_parents does nothing if there are
76
repo = self.make_repository('empty-repo')
77
if not repo.revision_graph_can_have_wrong_parents():
78
raise TestNotApplicable(
79
'%r cannot have corrupt revision index.' % repo)
82
repo._check_for_inconsistent_revision_parents() # nothing happens
86
def test_check_reports_bad_ancestor(self):
87
repo = self.make_repo_with_extra_ghost_index()
88
# XXX: check requires a non-empty revision IDs list, but it ignores the
90
check_object = repo.check(['ignored'])
91
check_object.report_results(verbose=False)
92
self.assertContainsRe(self.get_log(),
93
'1 revisions have incorrect parents in the revision index')
94
check_object.report_results(verbose=True)
95
self.assertContainsRe(
97
"revision-id has wrong parents in index: "
98
r"\('incorrect-parent',\) should be \(\)")
101
class TestCallbacks(TestCaseWithRepository):
103
def test_callback_tree_and_branch(self):
104
# use a real tree to get actual refs that will work
105
tree = self.make_branch_and_tree('foo')
106
revid = tree.commit('foo')
108
self.addCleanup(tree.unlock)
110
for ref in tree._get_check_refs():
111
needed_refs.setdefault(ref, []).append(tree)
112
for ref in tree.branch._get_check_refs():
113
needed_refs.setdefault(ref, []).append(tree.branch)
114
self.tree_check = tree._check
115
self.branch_check = tree.branch.check
116
tree._check = self.tree_callback
117
tree.branch.check = self.branch_callback
119
tree.branch.repository.check([revid], callback_refs=needed_refs)
120
self.assertNotEqual([], self.callbacks)
122
def tree_callback(self, refs):
123
self.callbacks.append(('tree', refs))
124
return self.tree_check(refs)
126
def branch_callback(self, refs):
127
self.callbacks.append(('branch', refs))
128
return self.branch_check(refs)
131
43
class TestCleanRepository(TestCaseWithRepository):
133
45
def test_new_repo(self):