~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testgraph.py

  • Committer: Aaron Bentley
  • Date: 2005-09-10 23:15:33 UTC
  • mto: (1185.3.4)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: aaron.bentley@utoronto.ca-20050910231533-e3860a46890c2c71
Cleanup and test-fixing

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
from bzrlib.selftest import TestCase
2
 
from bzrlib.graph import shortest_path
3
 
from bzrlib.graph import farthest_nodes_ab
4
2
from bzrlib.graph import farthest_node
5
3
 
6
4
class TestBase(TestCase):
15
13
    def setUp(self):
16
14
        TestCase.setUp(self)
17
15
        self.graph = {}
18
 
        self.edge_add('A', 'B', 'C')
19
 
        self.edge_add('A', 'D', 'E', 'B', 'G')
20
 
        self.edge_add('E', 'F')
21
 
    
22
 
    def test_shortest(self):
23
 
        """Ensure we find the longest path to A"""
24
 
        assert 'B' in self.graph['A']
25
 
        self.assertEqual(shortest_path(self.graph, 'A', 'F'), 
26
 
                         ['A', 'D', 'E', 'F'])
27
 
        self.assertEqual(shortest_path(self.graph, 'A', 'G'), 
28
 
                         ['A', 'B', 'G'])
29
 
    def test_farthest(self):
30
 
        self.assertEqual(farthest_nodes_ab(self.graph, 'A')[0], 'G')
31
 
        self.assertEqual(farthest_nodes_ab(self.graph, 'F')[0], 'F')
32
 
        self.graph = {}
33
16
        self.edge_add('A', 'B', 'C', 'D')
34
17
        self.edge_add('A', 'E', 'F', 'C')
35
18
        self.edge_add('A', 'G', 'H', 'I', 'B')
36
19
        self.edge_add('A', 'J', 'K', 'L', 'M', 'N')
37
20
        self.edge_add('O', 'N')
 
21
    
 
22
    def test_farthest(self):
38
23
        descendants = {'A':set()}
39
24
        for node in self.graph:
40
25
            for ancestor in self.graph[node]: