237
237
'e':['d'], 'f':['e'], 'g':['f'], 'h':['d'], 'i':['g'],
238
238
'j':['h'], 'k':['h', 'i'], 'l':['k'], 'm':['l'], 'n':['m'],
239
239
'o':['n'], 'p':['o'], 'q':['p'], 'r':['q'], 's':['r'],
240
't':['i', 's'], 'u':['s', 'j'],
240
't':['i', 's'], 'u':['s', 'j'],
243
243
# Graph where different walkers will race to find the common and uncommon
1524
1528
# 2 and 3 cannot be removed because 1 has 2 parents
1525
1529
d = {1:[2, 3], 2:[4], 4:[6], 3:[5], 5:[6], 6:[7], 7:[]}
1526
1530
self.assertCollapsed(d, d)
1533
class TestPendingAncestryResultGetKeys(TestCaseWithMemoryTransport):
1534
"""Tests for bzrlib.graph.PendingAncestryResult."""
1536
def test_get_keys(self):
1537
builder = self.make_branch_builder('b')
1538
builder.start_series()
1539
builder.build_snapshot('rev-1', None, [
1540
('add', ('', 'root-id', 'directory', ''))])
1541
builder.build_snapshot('rev-2', ['rev-1'], [])
1542
builder.finish_series()
1543
repo = builder.get_branch().repository
1545
self.addCleanup(repo.unlock)
1546
result = _mod_graph.PendingAncestryResult(['rev-2'], repo)
1547
self.assertEqual(set(['rev-1', 'rev-2']), set(result.get_keys()))
1549
def test_get_keys_excludes_null(self):
1550
# Make a 'graph' with an iter_ancestry that returns NULL_REVISION
1551
# somewhere other than the last element, which can happen in real
1553
class StubGraph(object):
1554
def iter_ancestry(self, keys):
1555
return [(NULL_REVISION, ()), ('foo', (NULL_REVISION,))]
1556
result = _mod_graph.PendingAncestryResult(['rev-3'], None)
1557
result_keys = result._get_keys(StubGraph())
1558
# Only the non-null keys from the ancestry appear.
1559
self.assertEqual(set(['foo']), set(result_keys))
1562
class TestPendingAncestryResultRefine(TestGraphBase):
1564
def test_refine(self):
1565
# Used when pulling from a stacked repository, so test some revisions
1566
# being satisfied from the stacking branch.
1567
g = self.make_graph(
1568
{"tip":["mid"], "mid":["base"], "tag":["base"],
1569
"base":[NULL_REVISION], NULL_REVISION:[]})
1570
result = _mod_graph.PendingAncestryResult(['tip', 'tag'], None)
1571
result = result.refine(set(['tip']), set(['mid']))
1572
self.assertEqual(set(['mid', 'tag']), result.heads)
1573
result = result.refine(set(['mid', 'tag', 'base']),
1574
set([NULL_REVISION]))
1575
self.assertEqual(set([NULL_REVISION]), result.heads)
1576
self.assertTrue(result.is_empty())
1579
class TestSearchResultRefine(TestGraphBase):
1581
def test_refine(self):
1582
# Used when pulling from a stacked repository, so test some revisions
1583
# being satisfied from the stacking branch.
1584
g = self.make_graph(
1585
{"tip":["mid"], "mid":["base"], "tag":["base"],
1586
"base":[NULL_REVISION], NULL_REVISION:[]})
1587
result = _mod_graph.SearchResult(set(['tip', 'tag']),
1588
set([NULL_REVISION]), 4, set(['tip', 'mid', 'tag', 'base']))
1589
result = result.refine(set(['tip']), set(['mid']))
1590
recipe = result.get_recipe()
1591
# We should be starting from tag (original head) and mid (seen ref)
1592
self.assertEqual(set(['mid', 'tag']), recipe[1])
1593
# We should be stopping at NULL (original stop) and tip (seen head)
1594
self.assertEqual(set([NULL_REVISION, 'tip']), recipe[2])
1595
self.assertEqual(3, recipe[3])
1596
result = result.refine(set(['mid', 'tag', 'base']),
1597
set([NULL_REVISION]))
1598
recipe = result.get_recipe()
1599
# We should be starting from nothing (NULL was known as a cut point)
1600
self.assertEqual(set([]), recipe[1])
1601
# We should be stopping at NULL (original stop) and tip (seen head) and
1602
# tag (seen head) and mid(seen mid-point head). We could come back and
1603
# define this as not including mid, for minimal results, but it is
1604
# still 'correct' to include mid, and simpler/easier.
1605
self.assertEqual(set([NULL_REVISION, 'tip', 'tag', 'mid']), recipe[2])
1606
self.assertEqual(0, recipe[3])
1607
self.assertTrue(result.is_empty())