34
35
def test_straightline_ancestry(self):
35
36
"""Test ancestry file when just committing."""
36
tree = self.make_branch_and_memory_tree('.')
40
rev_id_one = tree.commit('one')
41
rev_id_two = tree.commit('two', allow_pointless=True)
37
builder = BranchBuilder(self.get_transport())
38
rev_id_one = builder.build_commit()
39
rev_id_two = builder.build_commit()
40
branch = builder.get_branch()
44
41
self.assertAncestryEqual([None, rev_id_one, rev_id_two],
45
42
rev_id_two, branch)
46
43
self.assertAncestryEqual([None, rev_id_one], rev_id_one, branch)
48
def test_none_is_always_an_ancestor(self):
49
tree = self.make_branch_and_memory_tree('.')
52
# note this is tested before any commits are done.
53
self.assertTrue(is_ancestor(None, None, tree.branch))
54
rev_id = tree.commit('one')
56
self.assertTrue(is_ancestor(None, None, tree.branch))
57
self.assertTrue(is_ancestor(rev_id, None, tree.branch))
58
self.assertFalse(is_ancestor(None, rev_id, tree.branch))
45
def test_none_is_ancestor_empty_branch(self):
46
branch = self.make_branch('.')
47
self.assertTrue(is_ancestor(None, None, branch))
49
def test_none_is_ancestor_non_empty_branch(self):
50
builder = BranchBuilder(self.get_transport())
51
rev_id = builder.build_commit()
52
branch = builder.get_branch()
53
self.assertTrue(is_ancestor(None, None, branch))
54
self.assertTrue(is_ancestor(rev_id, None, branch))
55
self.assertFalse(is_ancestor(None, rev_id, branch))
61
58
# TODO: check that ancestry is updated to include indirectly merged revisions