~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testgraph.py

  • Committer: John Arbash Meinel
  • Date: 2005-09-15 21:35:53 UTC
  • mfrom: (907.1.57)
  • mto: (1393.2.1)
  • mto: This revision was merged to the branch mainline in revision 1396.
  • Revision ID: john@arbash-meinel.com-20050915213552-a6c83a5ef1e20897
(broken) Transport work is merged in. Tests do not pass yet.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from bzrlib.selftest import TestCase
2
 
from bzrlib.graph import node_distances, nodes_by_distance
 
2
from bzrlib.graph import farthest_nodes
3
3
 
4
4
class TestBase(TestCase):
5
5
    def edge_add(self, *args):
18
18
        self.edge_add('A', 'G', 'H', 'I', 'B')
19
19
        self.edge_add('A', 'J', 'K', 'L', 'M', 'N')
20
20
        self.edge_add('O', 'N')
21
 
 
22
 
    def node_descendants(self):
 
21
    
 
22
    def test_farthest(self):
23
23
        descendants = {'A':set()}
24
24
        for node in self.graph:
25
25
            for ancestor in self.graph[node]:
26
26
                if ancestor not in descendants:
27
27
                    descendants[ancestor] = set()
28
28
                descendants[ancestor].add(node)
29
 
        return descendants
30
 
    
31
 
    def test_distances(self):
32
 
        descendants = self.node_descendants()
33
 
        distances = node_distances(self.graph, descendants, 'A')
34
 
        nodes = nodes_by_distance(distances)
 
29
        nodes = farthest_nodes(self.graph, descendants, 'A')
35
30
        self.assertEqual(nodes[0], 'D')
36
31
        assert nodes[1] in ('N', 'C')
37
32
        assert nodes[2] in ('N', 'C')
38
33
        assert nodes[3] in ('B', 'M')
39
34
        assert nodes[4] in ('B', 'M')
40
35
 
41
 
        #Ensure we don't shortcut through B when there's only a difference of
42
 
        # 1 in distance
43
 
        self.graph = {}
44
 
        self.edge_add('A', 'B', 'C')
45
 
        self.edge_add('A', 'D', 'E', 'C')
46
 
        descendants = self.node_descendants()
47
 
        distances = node_distances(self.graph, descendants, 'A')
48
 
        self.assertEqual(distances['C'], 3)
49
36