~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_graph.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-12-20 16:16:34 UTC
  • mfrom: (3123.5.18 hardlinks)
  • Revision ID: pqm@pqm.ubuntu.com-20071220161634-2kcjb650o21ydko4
Accelerate build_tree using similar workingtrees (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
165
165
# Complex shortcut
166
166
# This has a failure mode in that a shortcut will find some nodes in common,
167
167
# but the common searcher won't have time to find that one branch is actually
168
 
# in common. The extra nodes at the beginning are because we want to avoid
 
168
# in common. The extra nodes at the top are because we want to avoid
169
169
# walking off the graph. Specifically, node G should be considered common, but
170
170
# is likely to be seen by M long before the common searcher finds it.
171
171
#
181
181
#     |\
182
182
#     e f
183
183
#     | |\
184
 
#     | g h
185
 
#     |/| |
186
 
#     i j |
 
184
#     i | h
 
185
#     |\| |
 
186
#     | g |
 
187
#     | | |
 
188
#     | j |
187
189
#     | | |
188
190
#     | k |
189
191
#     | | |
190
192
#     | l |
191
193
#     |/|/
192
194
#     m n
193
 
complex_shortcut = {'a':[NULL_REVISION], 'b':['a'], 'c':['b'], 'd':['c'],
194
 
                    'e':['d'], 'f':['d'], 'g':['f'], 'h':['f'],
195
 
                    'i':['e', 'g'], 'j':['g'], 'k':['j'],
196
 
                    'l':['k'], 'm':['i', 'l'], 'n':['l', 'h']}
197
 
 
198
 
# NULL_REVISION
199
 
#     |
200
 
#     a
201
 
#     |
202
 
#     b
203
 
#     |
204
 
#     c
205
 
#     |
206
 
#     d
207
 
#     |\
208
 
#     e |
209
 
#     | |
210
 
#     f |
211
 
#     | |
212
 
#     g h
213
 
#     | |\
214
 
#     i | j
215
 
#     |\| |
216
 
#     | k |
217
 
#     | | |
218
 
#     | l |
219
 
#     | | |
220
 
#     | m |
221
 
#     | | |
222
 
#     | n |
223
 
#     | | |
224
 
#     | o |
225
 
#     | | |
226
 
#     | p |
227
 
#     | | |
228
 
#     | q |
229
 
#     | | |
230
 
#     | r |
231
 
#     | | |
232
 
#     | s |
233
 
#     | | |
234
 
#     |/|/
235
 
#     t u
236
 
complex_shortcut2 = {'a':[NULL_REVISION], 'b':['a'], 'c':['b'], 'd':['c'],
237
 
                    'e':['d'], 'f':['e'], 'g':['f'], 'h':['d'], 'i':['g'],
238
 
                    'j':['h'], 'k':['h', 'i'], 'l':['k'], 'm':['l'], 'n':['m'],
239
 
                    'o':['n'], 'p':['o'], 'q':['p'], 'r':['q'], 's':['r'],
240
 
                    't':['i', 's'], 'u':['s', 'j'], 
 
195
complex_shortcut = {'d':[NULL_REVISION],
 
196
                    'x':['d'], 'y':['x'],
 
197
                    'e':['y'], 'f':['d'], 'g':['f', 'i'], 'h':['f'],
 
198
                    'i':['e'], 'j':['g'], 'k':['j'],
 
199
                    'l':['k'], 'm':['i', 's'], 'n':['s', 'h'],
 
200
                    'o':['l'], 'p':['o'], 'q':['p'],
 
201
                    'r':['q'], 's':['r'],
241
202
                    }
242
203
 
243
 
# Graph where different walkers will race to find the common and uncommon
244
 
# nodes.
245
 
#
246
 
# NULL_REVISION
247
 
#     |
248
 
#     a
249
 
#     |
250
 
#     b
251
 
#     |
252
 
#     c
253
 
#     |
254
 
#     d
255
 
#     |\
256
 
#     e k
257
 
#     | |
258
 
#     f-+-p
259
 
#     | | |
260
 
#     | l |
261
 
#     | | |
262
 
#     | m |
263
 
#     | |\|
264
 
#     g n q
265
 
#     |\| |
266
 
#     h o |
267
 
#     |/| |
268
 
#     i r |
269
 
#     | | |
270
 
#     | s |
271
 
#     | | |
272
 
#     | t |
273
 
#     | | |
274
 
#     | u |
275
 
#     | | |
276
 
#     | v |
277
 
#     | | |
278
 
#     | w |
279
 
#     | | |
280
 
#     | x |
281
 
#     | |\|
282
 
#     | y z
283
 
#     |/
284
 
#     j
285
 
#
286
 
# x is found to be common right away, but is the start of a long series of
287
 
# common commits.
288
 
# o is actually common, but the i-j shortcut makes it look like it is actually
289
 
# unique to j at first, you have to traverse all of x->o to find it.
290
 
# q,m gives the walker from j a common point to stop searching, as does p,f.
291
 
# k-n exists so that the second pass still has nodes that are worth searching,
292
 
# rather than instantly cancelling the extra walker.
293
 
 
294
 
racing_shortcuts = {'a':[NULL_REVISION], 'b':['a'], 'c':['b'], 'd':['c'],
295
 
    'e':['d'], 'f':['e'], 'g':['f'], 'h':['g'], 'i':['h', 'o'], 'j':['i', 'y'],
296
 
    'k':['d'], 'l':['k'], 'm':['l'], 'n':['m'], 'o':['n', 'g'], 'p':['f'],
297
 
    'q':['p', 'm'], 'r':['o'], 's':['r'], 't':['s'], 'u':['t'], 'v':['u'],
298
 
    'w':['v'], 'x':['w'], 'y':['x'], 'z':['x', 'q']}
299
 
 
300
 
 
301
 
# A graph with multiple nodes unique to one side.
302
 
#
303
 
# NULL_REVISION
304
 
#     |
305
 
#     a
306
 
#     |
307
 
#     b
308
 
#     |
309
 
#     c
310
 
#     |
311
 
#     d
312
 
#     |\
313
 
#     e f
314
 
#     |\ \
315
 
#     g h i
316
 
#     |\ \ \
317
 
#     j k l m
318
 
#     | |/ x|
319
 
#     | n o p
320
 
#     | |/  |
321
 
#     | q   |
322
 
#     | |   |
323
 
#     | r   |
324
 
#     | |   |
325
 
#     | s   |
326
 
#     | |   |
327
 
#     | t   |
328
 
#     | |   |
329
 
#     | u   |
330
 
#     | |   |
331
 
#     | v   |
332
 
#     | |   |
333
 
#     | w   |
334
 
#     | |   |
335
 
#     | x   |
336
 
#     |/ \ /
337
 
#     y   z
338
 
#
339
 
 
340
 
multiple_interesting_unique = {'a':[NULL_REVISION], 'b':['a'], 'c':['b'],
341
 
    'd':['c'], 'e':['d'], 'f':['d'], 'g':['e'], 'h':['e'], 'i':['f'],
342
 
    'j':['g'], 'k':['g'], 'l':['h'], 'm':['i'], 'n':['k', 'l'],
343
 
    'o':['m'], 'p':['m', 'l'], 'q':['n', 'o'], 'r':['q'], 's':['r'],
344
 
    't':['s'], 'u':['t'], 'v':['u'], 'w':['v'], 'x':['w'],
345
 
    'y':['j', 'x'], 'z':['x', 'p']}
346
 
 
347
 
 
348
204
# Shortcut with extra root
349
205
# We have a long history shortcut, and an extra root, which is why we can't
350
206
# stop searchers based on seeing NULL_REVISION
382
238
            'f':[NULL_REVISION]}
383
239
 
384
240
 
385
 
# A graph that contains a ghost
386
 
#  NULL_REVISION
387
 
#       |
388
 
#       f
389
 
#       |
390
 
#       e   g
391
 
#      / \ /
392
 
#     b   d
393
 
#     | \ |
394
 
#     a   c
395
 
 
396
 
with_ghost = {'a': ['b'], 'c': ['b', 'd'], 'b':['e'], 'd':['e', 'g'],
397
 
              'e': ['f'], 'f':[NULL_REVISION], NULL_REVISION:()}
398
 
 
399
 
# A graph that shows we can shortcut finding revnos when reaching them from the
400
 
# side.
401
 
#  NULL_REVISION
402
 
#       |
403
 
#       a
404
 
#       |
405
 
#       b
406
 
#       |
407
 
#       c
408
 
#       |
409
 
#       d
410
 
#       |
411
 
#       e
412
 
#      / \
413
 
#     f   g
414
 
#     |
415
 
#     h
416
 
#     |
417
 
#     i
418
 
 
419
 
with_tail = {'a':[NULL_REVISION], 'b':['a'], 'c':['b'], 'd':['c'], 'e':['d'],
420
 
             'f':['e'], 'g':['e'], 'h':['f'], 'i':['h']}
421
 
 
422
 
 
423
241
class InstrumentedParentsProvider(object):
424
242
 
425
243
    def __init__(self, parents_provider):
426
244
        self.calls = []
427
245
        self._real_parents_provider = parents_provider
428
246
 
 
247
    def get_parents(self, nodes):
 
248
        self.calls.extend(nodes)
 
249
        return self._real_parents_provider.get_parents(nodes)
 
250
 
429
251
    def get_parent_map(self, nodes):
430
252
        self.calls.extend(nodes)
431
253
        return self._real_parents_provider.get_parent_map(nodes)
432
254
 
433
255
 
434
 
class TestGraphBase(tests.TestCase):
435
 
 
436
 
    def make_graph(self, ancestors):
437
 
        return _mod_graph.Graph(_mod_graph.DictParentsProvider(ancestors))
438
 
 
439
 
    def make_breaking_graph(self, ancestors, break_on):
440
 
        """Make a Graph that raises an exception if we hit a node."""
441
 
        g = self.make_graph(ancestors)
442
 
        orig_parent_map = g.get_parent_map
443
 
        def get_parent_map(keys):
444
 
            bad_keys = set(keys).intersection(break_on)
445
 
            if bad_keys:
446
 
                self.fail('key(s) %s was accessed' % (sorted(bad_keys),))
447
 
            return orig_parent_map(keys)
448
 
        g.get_parent_map = get_parent_map
449
 
        return g
450
 
 
451
 
 
452
256
class TestGraph(TestCaseWithMemoryTransport):
453
257
 
454
258
    def make_graph(self, ancestors):
 
259
        # XXX: This seems valid, is there a reason to actually create a
 
260
        # repository and put things in it?
455
261
        return _mod_graph.Graph(_mod_graph.DictParentsProvider(ancestors))
 
262
        tree = self.prepare_memory_tree('.')
 
263
        self.build_ancestry(tree, ancestors)
 
264
        self.addCleanup(tree.unlock)
 
265
        return tree.branch.repository.get_graph()
456
266
 
457
267
    def prepare_memory_tree(self, location):
458
268
        tree = self.make_branch_and_memory_tree(location)
541
351
                         graph.find_unique_lca('rev2a', 'rev2b',
542
352
                         count_steps=True))
543
353
 
544
 
    def assertRemoveDescendants(self, expected, graph, revisions):
545
 
        parents = graph.get_parent_map(revisions)
546
 
        self.assertEqual(expected,
547
 
                         graph._remove_simple_descendants(revisions, parents))
548
 
 
549
 
    def test__remove_simple_descendants(self):
550
 
        graph = self.make_graph(ancestry_1)
551
 
        self.assertRemoveDescendants(set(['rev1']), graph,
552
 
            set(['rev1', 'rev2a', 'rev2b', 'rev3', 'rev4']))
553
 
 
554
 
    def test__remove_simple_descendants_disjoint(self):
555
 
        graph = self.make_graph(ancestry_1)
556
 
        self.assertRemoveDescendants(set(['rev1', 'rev3']), graph,
557
 
            set(['rev1', 'rev3']))
558
 
 
559
 
    def test__remove_simple_descendants_chain(self):
560
 
        graph = self.make_graph(ancestry_1)
561
 
        self.assertRemoveDescendants(set(['rev1']), graph,
562
 
            set(['rev1', 'rev2a', 'rev3']))
563
 
 
564
 
    def test__remove_simple_descendants_siblings(self):
565
 
        graph = self.make_graph(ancestry_1)
566
 
        self.assertRemoveDescendants(set(['rev2a', 'rev2b']), graph,
567
 
            set(['rev2a', 'rev2b', 'rev3']))
568
 
 
569
354
    def test_unique_lca_criss_cross(self):
570
355
        """Ensure we don't pick non-unique lcas in a criss-cross"""
571
356
        graph = self.make_graph(criss_cross)
636
421
 
637
422
    def test_graph_difference_extended_history(self):
638
423
        graph = self.make_graph(extended_history_shortcut)
 
424
        self.expectFailure('find_difference cannot handle shortcuts',
 
425
            self.assertEqual, (set(['e']), set(['f'])),
 
426
                graph.find_difference('e', 'f'))
639
427
        self.assertEqual((set(['e']), set(['f'])),
640
428
                         graph.find_difference('e', 'f'))
641
429
        self.assertEqual((set(['f']), set(['e'])),
648
436
 
649
437
    def test_graph_difference_complex_shortcut(self):
650
438
        graph = self.make_graph(complex_shortcut)
651
 
        self.assertEqual((set(['m', 'i', 'e']), set(['n', 'h'])),
 
439
        self.expectFailure('find_difference cannot handle shortcuts',
 
440
            self.assertEqual, (set(['m']), set(['h', 'n'])),
 
441
                graph.find_difference('m', 'n'))
 
442
        self.assertEqual((set(['m']), set(['h', 'n'])),
652
443
                         graph.find_difference('m', 'n'))
653
444
 
654
 
    def test_graph_difference_complex_shortcut2(self):
655
 
        graph = self.make_graph(complex_shortcut2)
656
 
        self.assertEqual((set(['t']), set(['j', 'u'])),
657
 
                         graph.find_difference('t', 'u'))
658
 
 
659
445
    def test_graph_difference_shortcut_extra_root(self):
660
446
        graph = self.make_graph(shortcut_extra_root)
 
447
        self.expectFailure('find_difference cannot handle shortcuts',
 
448
            self.assertEqual, (set(['e']), set(['f', 'g'])),
 
449
                graph.find_difference('e', 'f'))
661
450
        self.assertEqual((set(['e']), set(['f', 'g'])),
662
451
                         graph.find_difference('e', 'f'))
663
452
 
 
453
    def test_stacked_parents_provider_get_parents(self):
 
454
        parents1 = _mod_graph.DictParentsProvider({'rev2': ['rev3']})
 
455
        parents2 = _mod_graph.DictParentsProvider({'rev1': ['rev4']})
 
456
        stacked = _mod_graph._StackedParentsProvider([parents1, parents2])
 
457
        self.assertEqual([['rev4',], ['rev3']],
 
458
             self.applyDeprecated(symbol_versioning.one_one,
 
459
                                  stacked.get_parents, ['rev1', 'rev2']))
 
460
        self.assertEqual([['rev3',], ['rev4']],
 
461
             self.applyDeprecated(symbol_versioning.one_one,
 
462
                                  stacked.get_parents, ['rev2', 'rev1']))
 
463
        self.assertEqual([['rev3',], ['rev3']],
 
464
             self.applyDeprecated(symbol_versioning.one_one,
 
465
                         stacked.get_parents, ['rev2', 'rev2']))
 
466
        self.assertEqual([['rev4',], ['rev4']],
 
467
             self.applyDeprecated(symbol_versioning.one_one,
 
468
                         stacked.get_parents, ['rev1', 'rev1']))
 
469
 
664
470
    def test_stacked_parents_provider(self):
665
471
        parents1 = _mod_graph.DictParentsProvider({'rev2': ['rev3']})
666
472
        parents2 = _mod_graph.DictParentsProvider({'rev1': ['rev4']})
710
516
        self.assertFalse(graph.is_ancestor('a', 'c'))
711
517
        self.assertTrue('null:' not in instrumented_provider.calls)
712
518
 
713
 
    def test_iter_ancestry(self):
714
 
        nodes = boundary.copy()
715
 
        nodes[NULL_REVISION] = ()
716
 
        graph = self.make_graph(nodes)
717
 
        expected = nodes.copy()
718
 
        expected.pop('a') # 'a' is not in the ancestry of 'c', all the
719
 
                          # other nodes are
720
 
        self.assertEqual(expected, dict(graph.iter_ancestry(['c'])))
721
 
        self.assertEqual(nodes, dict(graph.iter_ancestry(['a', 'c'])))
722
 
 
723
 
    def test_iter_ancestry_with_ghost(self):
724
 
        graph = self.make_graph(with_ghost)
725
 
        expected = with_ghost.copy()
726
 
        # 'a' is not in the ancestry of 'c', and 'g' is a ghost
727
 
        expected['g'] = None
728
 
        self.assertEqual(expected, dict(graph.iter_ancestry(['a', 'c'])))
729
 
        expected.pop('a') 
730
 
        self.assertEqual(expected, dict(graph.iter_ancestry(['c'])))
731
 
 
732
519
    def test_filter_candidate_lca(self):
733
520
        """Test filter_candidate_lca for a corner case
734
521
 
839
626
        """
840
627
        class stub(object):
841
628
            pass
 
629
        def get_parents(keys):
 
630
            result = []
 
631
            for key in keys:
 
632
                if key == 'deeper':
 
633
                    self.fail('key deeper was accessed')
 
634
                result.append(graph_dict[key])
 
635
            return result
842
636
        def get_parent_map(keys):
843
637
            result = {}
844
638
            for key in keys:
847
641
                result[key] = graph_dict[key]
848
642
            return result
849
643
        an_obj = stub()
 
644
        an_obj.get_parents = get_parents
850
645
        an_obj.get_parent_map = get_parent_map
851
646
        graph = _mod_graph.Graph(an_obj)
852
647
        return graph.heads(search)
886
681
        self.assertEqual(set(['h1', 'h2']),
887
682
            self._run_heads_break_deeper(graph_dict, ['h1', 'h2']))
888
683
 
889
 
    def test_breadth_first_search_start_ghosts(self):
890
 
        graph = self.make_graph({})
891
 
        # with_ghosts reports the ghosts
892
 
        search = graph._make_breadth_first_searcher(['a-ghost'])
893
 
        self.assertEqual((set(), set(['a-ghost'])), search.next_with_ghosts())
894
 
        self.assertRaises(StopIteration, search.next_with_ghosts)
895
 
        # next includes them
896
 
        search = graph._make_breadth_first_searcher(['a-ghost'])
897
 
        self.assertEqual(set(['a-ghost']), search.next())
898
 
        self.assertRaises(StopIteration, search.next)
899
 
 
900
 
    def test_breadth_first_search_deep_ghosts(self):
901
 
        graph = self.make_graph({
902
 
            'head':['present'],
903
 
            'present':['child', 'ghost'],
904
 
            'child':[],
905
 
            })
906
 
        # with_ghosts reports the ghosts
907
 
        search = graph._make_breadth_first_searcher(['head'])
908
 
        self.assertEqual((set(['head']), set()), search.next_with_ghosts())
909
 
        self.assertEqual((set(['present']), set()), search.next_with_ghosts())
910
 
        self.assertEqual((set(['child']), set(['ghost'])),
911
 
            search.next_with_ghosts())
912
 
        self.assertRaises(StopIteration, search.next_with_ghosts)
913
 
        # next includes them
914
 
        search = graph._make_breadth_first_searcher(['head'])
915
 
        self.assertEqual(set(['head']), search.next())
916
 
        self.assertEqual(set(['present']), search.next())
917
 
        self.assertEqual(set(['child', 'ghost']),
918
 
            search.next())
919
 
        self.assertRaises(StopIteration, search.next)
920
 
 
921
 
    def test_breadth_first_search_change_next_to_next_with_ghosts(self):
922
 
        # To make the API robust, we allow calling both next() and
923
 
        # next_with_ghosts() on the same searcher.
924
 
        graph = self.make_graph({
925
 
            'head':['present'],
926
 
            'present':['child', 'ghost'],
927
 
            'child':[],
928
 
            })
929
 
        # start with next_with_ghosts
930
 
        search = graph._make_breadth_first_searcher(['head'])
931
 
        self.assertEqual((set(['head']), set()), search.next_with_ghosts())
932
 
        self.assertEqual(set(['present']), search.next())
933
 
        self.assertEqual((set(['child']), set(['ghost'])),
934
 
            search.next_with_ghosts())
935
 
        self.assertRaises(StopIteration, search.next)
936
 
        # start with next
937
 
        search = graph._make_breadth_first_searcher(['head'])
938
 
        self.assertEqual(set(['head']), search.next())
939
 
        self.assertEqual((set(['present']), set()), search.next_with_ghosts())
940
 
        self.assertEqual(set(['child', 'ghost']),
941
 
            search.next())
942
 
        self.assertRaises(StopIteration, search.next_with_ghosts)
943
 
 
944
 
    def test_breadth_first_change_search(self):
945
 
        # Changing the search should work with both next and next_with_ghosts.
946
 
        graph = self.make_graph({
947
 
            'head':['present'],
948
 
            'present':['stopped'],
949
 
            'other':['other_2'],
950
 
            'other_2':[],
951
 
            })
952
 
        search = graph._make_breadth_first_searcher(['head'])
953
 
        self.assertEqual((set(['head']), set()), search.next_with_ghosts())
954
 
        self.assertEqual((set(['present']), set()), search.next_with_ghosts())
955
 
        self.assertEqual(set(['present']),
956
 
            search.stop_searching_any(['present']))
957
 
        self.assertEqual((set(['other']), set(['other_ghost'])),
958
 
            search.start_searching(['other', 'other_ghost']))
959
 
        self.assertEqual((set(['other_2']), set()), search.next_with_ghosts())
960
 
        self.assertRaises(StopIteration, search.next_with_ghosts)
961
 
        # next includes them
962
 
        search = graph._make_breadth_first_searcher(['head'])
963
 
        self.assertEqual(set(['head']), search.next())
964
 
        self.assertEqual(set(['present']), search.next())
965
 
        self.assertEqual(set(['present']),
966
 
            search.stop_searching_any(['present']))
967
 
        search.start_searching(['other', 'other_ghost'])
968
 
        self.assertEqual(set(['other_2']), search.next())
969
 
        self.assertRaises(StopIteration, search.next)
970
 
 
971
 
    def assertSeenAndResult(self, instructions, search, next):
972
 
        """Check the results of .seen and get_result() for a seach.
973
 
 
974
 
        :param instructions: A list of tuples:
975
 
            (seen, recipe, included_keys, starts, stops).
976
 
            seen, recipe and included_keys are results to check on the search
977
 
            and the searches get_result(). starts and stops are parameters to
978
 
            pass to start_searching and stop_searching_any during each
979
 
            iteration, if they are not None.
980
 
        :param search: The search to use.
981
 
        :param next: A callable to advance the search.
982
 
        """
983
 
        for seen, recipe, included_keys, starts, stops in instructions:
984
 
            next()
985
 
            if starts is not None:
986
 
                search.start_searching(starts)
987
 
            if stops is not None:
988
 
                search.stop_searching_any(stops)
989
 
            result = search.get_result()
990
 
            self.assertEqual(recipe, result.get_recipe())
991
 
            self.assertEqual(set(included_keys), result.get_keys())
992
 
            self.assertEqual(seen, search.seen)
993
 
 
994
 
    def test_breadth_first_get_result_excludes_current_pending(self):
995
 
        graph = self.make_graph({
996
 
            'head':['child'],
997
 
            'child':[NULL_REVISION],
998
 
            NULL_REVISION:[],
999
 
            })
1000
 
        search = graph._make_breadth_first_searcher(['head'])
1001
 
        # At the start, nothing has been seen, to its all excluded:
1002
 
        result = search.get_result()
1003
 
        self.assertEqual((set(['head']), set(['head']), 0),
1004
 
            result.get_recipe())
1005
 
        self.assertEqual(set(), result.get_keys())
1006
 
        self.assertEqual(set(), search.seen)
1007
 
        # using next:
1008
 
        expected = [
1009
 
            (set(['head']), (set(['head']), set(['child']), 1),
1010
 
             ['head'], None, None),
1011
 
            (set(['head', 'child']), (set(['head']), set([NULL_REVISION]), 2),
1012
 
             ['head', 'child'], None, None),
1013
 
            (set(['head', 'child', NULL_REVISION]), (set(['head']), set(), 3),
1014
 
             ['head', 'child', NULL_REVISION], None, None),
1015
 
            ]
1016
 
        self.assertSeenAndResult(expected, search, search.next)
1017
 
        # using next_with_ghosts:
1018
 
        search = graph._make_breadth_first_searcher(['head'])
1019
 
        self.assertSeenAndResult(expected, search, search.next_with_ghosts)
1020
 
 
1021
 
    def test_breadth_first_get_result_starts_stops(self):
1022
 
        graph = self.make_graph({
1023
 
            'head':['child'],
1024
 
            'child':[NULL_REVISION],
1025
 
            'otherhead':['otherchild'],
1026
 
            'otherchild':['excluded'],
1027
 
            'excluded':[NULL_REVISION],
1028
 
            NULL_REVISION:[]
1029
 
            })
1030
 
        search = graph._make_breadth_first_searcher([])
1031
 
        # Starting with nothing and adding a search works:
1032
 
        search.start_searching(['head'])
1033
 
        # head has been seen:
1034
 
        result = search.get_result()
1035
 
        self.assertEqual((set(['head']), set(['child']), 1),
1036
 
            result.get_recipe())
1037
 
        self.assertEqual(set(['head']), result.get_keys())
1038
 
        self.assertEqual(set(['head']), search.seen)
1039
 
        # using next:
1040
 
        expected = [
1041
 
            # stop at child, and start a new search at otherhead:
1042
 
            # - otherhead counts as seen immediately when start_searching is
1043
 
            # called.
1044
 
            (set(['head', 'child', 'otherhead']),
1045
 
             (set(['head', 'otherhead']), set(['child', 'otherchild']), 2),
1046
 
             ['head', 'otherhead'], ['otherhead'], ['child']),
1047
 
            (set(['head', 'child', 'otherhead', 'otherchild']),
1048
 
             (set(['head', 'otherhead']), set(['child', 'excluded']), 3),
1049
 
             ['head', 'otherhead', 'otherchild'], None, None),
1050
 
            # stop searching excluded now
1051
 
            (set(['head', 'child', 'otherhead', 'otherchild', 'excluded']),
1052
 
             (set(['head', 'otherhead']), set(['child', 'excluded']), 3),
1053
 
             ['head', 'otherhead', 'otherchild'], None, ['excluded']),
1054
 
            ]
1055
 
        self.assertSeenAndResult(expected, search, search.next)
1056
 
        # using next_with_ghosts:
1057
 
        search = graph._make_breadth_first_searcher([])
1058
 
        search.start_searching(['head'])
1059
 
        self.assertSeenAndResult(expected, search, search.next_with_ghosts)
1060
 
 
1061
 
    def test_breadth_first_stop_searching_not_queried(self):
1062
 
        # A client should be able to say 'stop node X' even if X has not been
1063
 
        # returned to the client.
1064
 
        graph = self.make_graph({
1065
 
            'head':['child', 'ghost1'],
1066
 
            'child':[NULL_REVISION],
1067
 
            NULL_REVISION:[],
1068
 
            })
1069
 
        search = graph._make_breadth_first_searcher(['head'])
1070
 
        expected = [
1071
 
            # NULL_REVISION and ghost1 have not been returned
1072
 
            (set(['head']), (set(['head']), set(['child', 'ghost1']), 1),
1073
 
             ['head'], None, [NULL_REVISION, 'ghost1']),
1074
 
            # ghost1 has been returned, NULL_REVISION is to be returned in the
1075
 
            # next iteration.
1076
 
            (set(['head', 'child', 'ghost1']),
1077
 
             (set(['head']), set(['ghost1', NULL_REVISION]), 2),
1078
 
             ['head', 'child'], None, [NULL_REVISION, 'ghost1']),
1079
 
            ]
1080
 
        self.assertSeenAndResult(expected, search, search.next)
1081
 
        # using next_with_ghosts:
1082
 
        search = graph._make_breadth_first_searcher(['head'])
1083
 
        self.assertSeenAndResult(expected, search, search.next_with_ghosts)
1084
 
 
1085
 
    def test_breadth_first_get_result_ghosts_are_excluded(self):
1086
 
        graph = self.make_graph({
1087
 
            'head':['child', 'ghost'],
1088
 
            'child':[NULL_REVISION],
1089
 
            NULL_REVISION:[],
1090
 
            })
1091
 
        search = graph._make_breadth_first_searcher(['head'])
1092
 
        # using next:
1093
 
        expected = [
1094
 
            (set(['head']),
1095
 
             (set(['head']), set(['ghost', 'child']), 1),
1096
 
             ['head'], None, None),
1097
 
            (set(['head', 'child', 'ghost']),
1098
 
             (set(['head']), set([NULL_REVISION, 'ghost']), 2),
1099
 
             ['head', 'child'], None, None),
1100
 
            ]
1101
 
        self.assertSeenAndResult(expected, search, search.next)
1102
 
        # using next_with_ghosts:
1103
 
        search = graph._make_breadth_first_searcher(['head'])
1104
 
        self.assertSeenAndResult(expected, search, search.next_with_ghosts)
1105
 
 
1106
 
    def test_breadth_first_get_result_starting_a_ghost_ghost_is_excluded(self):
1107
 
        graph = self.make_graph({
1108
 
            'head':['child'],
1109
 
            'child':[NULL_REVISION],
1110
 
            NULL_REVISION:[],
1111
 
            })
1112
 
        search = graph._make_breadth_first_searcher(['head'])
1113
 
        # using next:
1114
 
        expected = [
1115
 
            (set(['head', 'ghost']),
1116
 
             (set(['head', 'ghost']), set(['child', 'ghost']), 1),
1117
 
             ['head'], ['ghost'], None),
1118
 
            (set(['head', 'child', 'ghost']),
1119
 
             (set(['head', 'ghost']), set([NULL_REVISION, 'ghost']), 2),
1120
 
             ['head', 'child'], None, None),
1121
 
            ]
1122
 
        self.assertSeenAndResult(expected, search, search.next)
1123
 
        # using next_with_ghosts:
1124
 
        search = graph._make_breadth_first_searcher(['head'])
1125
 
        self.assertSeenAndResult(expected, search, search.next_with_ghosts)
1126
 
 
1127
 
    def test_breadth_first_revision_count_includes_NULL_REVISION(self):
1128
 
        graph = self.make_graph({
1129
 
            'head':[NULL_REVISION],
1130
 
            NULL_REVISION:[],
1131
 
            })
1132
 
        search = graph._make_breadth_first_searcher(['head'])
1133
 
        # using next:
1134
 
        expected = [
1135
 
            (set(['head']),
1136
 
             (set(['head']), set([NULL_REVISION]), 1),
1137
 
             ['head'], None, None),
1138
 
            (set(['head', NULL_REVISION]),
1139
 
             (set(['head']), set([]), 2),
1140
 
             ['head', NULL_REVISION], None, None),
1141
 
            ]
1142
 
        self.assertSeenAndResult(expected, search, search.next)
1143
 
        # using next_with_ghosts:
1144
 
        search = graph._make_breadth_first_searcher(['head'])
1145
 
        self.assertSeenAndResult(expected, search, search.next_with_ghosts)
1146
 
 
1147
 
    def test_breadth_first_search_get_result_after_StopIteration(self):
1148
 
        # StopIteration should not invalid anything..
1149
 
        graph = self.make_graph({
1150
 
            'head':[NULL_REVISION],
1151
 
            NULL_REVISION:[],
1152
 
            })
1153
 
        search = graph._make_breadth_first_searcher(['head'])
1154
 
        # using next:
1155
 
        expected = [
1156
 
            (set(['head']),
1157
 
             (set(['head']), set([NULL_REVISION]), 1),
1158
 
             ['head'], None, None),
1159
 
            (set(['head', 'ghost', NULL_REVISION]),
1160
 
             (set(['head', 'ghost']), set(['ghost']), 2),
1161
 
             ['head', NULL_REVISION], ['ghost'], None),
1162
 
            ]
1163
 
        self.assertSeenAndResult(expected, search, search.next)
1164
 
        self.assertRaises(StopIteration, search.next)
1165
 
        self.assertEqual(set(['head', 'ghost', NULL_REVISION]), search.seen)
1166
 
        result = search.get_result()
1167
 
        self.assertEqual((set(['ghost', 'head']), set(['ghost']), 2),
1168
 
            result.get_recipe())
1169
 
        self.assertEqual(set(['head', NULL_REVISION]), result.get_keys())
1170
 
        # using next_with_ghosts:
1171
 
        search = graph._make_breadth_first_searcher(['head'])
1172
 
        self.assertSeenAndResult(expected, search, search.next_with_ghosts)
1173
 
        self.assertRaises(StopIteration, search.next)
1174
 
        self.assertEqual(set(['head', 'ghost', NULL_REVISION]), search.seen)
1175
 
        result = search.get_result()
1176
 
        self.assertEqual((set(['ghost', 'head']), set(['ghost']), 2),
1177
 
            result.get_recipe())
1178
 
        self.assertEqual(set(['head', NULL_REVISION]), result.get_keys())
1179
 
 
1180
 
 
1181
 
class TestFindUniqueAncestors(TestGraphBase):
1182
 
 
1183
 
    def assertFindUniqueAncestors(self, graph, expected, node, common):
1184
 
        actual = graph.find_unique_ancestors(node, common)
1185
 
        self.assertEqual(expected, sorted(actual))
1186
 
 
1187
 
    def test_empty_set(self):
1188
 
        graph = self.make_graph(ancestry_1)
1189
 
        self.assertFindUniqueAncestors(graph, [], 'rev1', ['rev1'])
1190
 
        self.assertFindUniqueAncestors(graph, [], 'rev2b', ['rev2b'])
1191
 
        self.assertFindUniqueAncestors(graph, [], 'rev3', ['rev1', 'rev3'])
1192
 
 
1193
 
    def test_single_node(self):
1194
 
        graph = self.make_graph(ancestry_1)
1195
 
        self.assertFindUniqueAncestors(graph, ['rev2a'], 'rev2a', ['rev1'])
1196
 
        self.assertFindUniqueAncestors(graph, ['rev2b'], 'rev2b', ['rev1'])
1197
 
        self.assertFindUniqueAncestors(graph, ['rev3'], 'rev3', ['rev2a'])
1198
 
 
1199
 
    def test_minimal_ancestry(self):
1200
 
        graph = self.make_breaking_graph(extended_history_shortcut,
1201
 
                                         [NULL_REVISION, 'a', 'b'])
1202
 
        self.assertFindUniqueAncestors(graph, ['e'], 'e', ['d'])
1203
 
 
1204
 
        graph = self.make_breaking_graph(extended_history_shortcut,
1205
 
                                         ['b'])
1206
 
        self.assertFindUniqueAncestors(graph, ['f'], 'f', ['a', 'd'])
1207
 
 
1208
 
        graph = self.make_breaking_graph(complex_shortcut,
1209
 
                                         ['a', 'b'])
1210
 
        self.assertFindUniqueAncestors(graph, ['h'], 'h', ['i'])
1211
 
        self.assertFindUniqueAncestors(graph, ['e', 'g', 'i'], 'i', ['h'])
1212
 
        self.assertFindUniqueAncestors(graph, ['h'], 'h', ['g'])
1213
 
        self.assertFindUniqueAncestors(graph, ['h'], 'h', ['j'])
1214
 
 
1215
 
    def test_in_ancestry(self):
1216
 
        graph = self.make_graph(ancestry_1)
1217
 
        self.assertFindUniqueAncestors(graph, [], 'rev1', ['rev3'])
1218
 
        self.assertFindUniqueAncestors(graph, [], 'rev2b', ['rev4'])
1219
 
 
1220
 
    def test_multiple_revisions(self):
1221
 
        graph = self.make_graph(ancestry_1)
1222
 
        self.assertFindUniqueAncestors(graph,
1223
 
            ['rev4'], 'rev4', ['rev3', 'rev2b'])
1224
 
        self.assertFindUniqueAncestors(graph,
1225
 
            ['rev2a', 'rev3', 'rev4'], 'rev4', ['rev2b'])
1226
 
 
1227
 
    def test_complex_shortcut(self):
1228
 
        graph = self.make_graph(complex_shortcut)
1229
 
        self.assertFindUniqueAncestors(graph,
1230
 
            ['h', 'n'], 'n', ['m'])
1231
 
        self.assertFindUniqueAncestors(graph,
1232
 
            ['e', 'i', 'm'], 'm', ['n'])
1233
 
 
1234
 
    def test_complex_shortcut2(self):
1235
 
        graph = self.make_graph(complex_shortcut2)
1236
 
        self.assertFindUniqueAncestors(graph,
1237
 
            ['j', 'u'], 'u', ['t'])
1238
 
        self.assertFindUniqueAncestors(graph,
1239
 
            ['t'], 't', ['u'])
1240
 
 
1241
 
    def test_multiple_interesting_unique(self):
1242
 
        graph = self.make_graph(multiple_interesting_unique)
1243
 
        self.assertFindUniqueAncestors(graph,
1244
 
            ['j', 'y'], 'y', ['z'])
1245
 
        self.assertFindUniqueAncestors(graph,
1246
 
            ['p', 'z'], 'z', ['y'])
1247
 
 
1248
 
    def test_racing_shortcuts(self):
1249
 
        graph = self.make_graph(racing_shortcuts)
1250
 
        self.assertFindUniqueAncestors(graph,
1251
 
            ['p', 'q', 'z'], 'z', ['y'])
1252
 
        self.assertFindUniqueAncestors(graph,
1253
 
            ['h', 'i', 'j', 'y'], 'j', ['z'])
1254
 
 
1255
 
 
1256
 
class TestGraphFindDistanceToNull(TestGraphBase):
1257
 
    """Test an api that should be able to compute a revno"""
1258
 
 
1259
 
    def assertFindDistance(self, revno, graph, target_id, known_ids):
1260
 
        """Assert the output of Graph.find_distance_to_null()"""
1261
 
        actual = graph.find_distance_to_null(target_id, known_ids)
1262
 
        self.assertEqual(revno, actual)
1263
 
 
1264
 
    def test_nothing_known(self):
1265
 
        graph = self.make_graph(ancestry_1)
1266
 
        self.assertFindDistance(0, graph, NULL_REVISION, [])
1267
 
        self.assertFindDistance(1, graph, 'rev1', [])
1268
 
        self.assertFindDistance(2, graph, 'rev2a', [])
1269
 
        self.assertFindDistance(2, graph, 'rev2b', [])
1270
 
        self.assertFindDistance(3, graph, 'rev3', [])
1271
 
        self.assertFindDistance(4, graph, 'rev4', [])
1272
 
 
1273
 
    def test_rev_is_ghost(self):
1274
 
        graph = self.make_graph(ancestry_1)
1275
 
        e = self.assertRaises(errors.GhostRevisionsHaveNoRevno,
1276
 
                              graph.find_distance_to_null, 'rev_missing', [])
1277
 
        self.assertEqual('rev_missing', e.revision_id)
1278
 
        self.assertEqual('rev_missing', e.ghost_revision_id)
1279
 
 
1280
 
    def test_ancestor_is_ghost(self):
1281
 
        graph = self.make_graph({'rev':['parent']})
1282
 
        e = self.assertRaises(errors.GhostRevisionsHaveNoRevno,
1283
 
                              graph.find_distance_to_null, 'rev', [])
1284
 
        self.assertEqual('rev', e.revision_id)
1285
 
        self.assertEqual('parent', e.ghost_revision_id)
1286
 
 
1287
 
    def test_known_in_ancestry(self):
1288
 
        graph = self.make_graph(ancestry_1)
1289
 
        self.assertFindDistance(2, graph, 'rev2a', [('rev1', 1)])
1290
 
        self.assertFindDistance(3, graph, 'rev3', [('rev2a', 2)])
1291
 
 
1292
 
    def test_known_in_ancestry_limits(self):
1293
 
        graph = self.make_breaking_graph(ancestry_1, ['rev1'])
1294
 
        self.assertFindDistance(4, graph, 'rev4', [('rev3', 3)])
1295
 
 
1296
 
    def test_target_is_ancestor(self):
1297
 
        graph = self.make_graph(ancestry_1)
1298
 
        self.assertFindDistance(2, graph, 'rev2a', [('rev3', 3)])
1299
 
 
1300
 
    def test_target_is_ancestor_limits(self):
1301
 
        """We shouldn't search all history if we run into ourselves"""
1302
 
        graph = self.make_breaking_graph(ancestry_1, ['rev1'])
1303
 
        self.assertFindDistance(3, graph, 'rev3', [('rev4', 4)])
1304
 
 
1305
 
    def test_target_parallel_to_known_limits(self):
1306
 
        # Even though the known revision isn't part of the other ancestry, they
1307
 
        # eventually converge
1308
 
        graph = self.make_breaking_graph(with_tail, ['a'])
1309
 
        self.assertFindDistance(6, graph, 'f', [('g', 6)])
1310
 
        self.assertFindDistance(7, graph, 'h', [('g', 6)])
1311
 
        self.assertFindDistance(8, graph, 'i', [('g', 6)])
1312
 
        self.assertFindDistance(6, graph, 'g', [('i', 8)])
1313
 
 
1314
 
 
1315
 
class TestFindMergeOrder(TestGraphBase):
1316
 
 
1317
 
    def assertMergeOrder(self, expected, graph, tip, base_revisions):
1318
 
        self.assertEqual(expected, graph.find_merge_order(tip, base_revisions))
1319
 
 
1320
 
    def test_parents(self):
1321
 
        graph = self.make_graph(ancestry_1)
1322
 
        self.assertMergeOrder(['rev3', 'rev2b'], graph, 'rev4',
1323
 
                                                        ['rev3', 'rev2b'])
1324
 
        self.assertMergeOrder(['rev3', 'rev2b'], graph, 'rev4',
1325
 
                                                        ['rev2b', 'rev3'])
1326
 
 
1327
 
    def test_ancestors(self):
1328
 
        graph = self.make_graph(ancestry_1)
1329
 
        self.assertMergeOrder(['rev1', 'rev2b'], graph, 'rev4',
1330
 
                                                        ['rev1', 'rev2b'])
1331
 
        self.assertMergeOrder(['rev1', 'rev2b'], graph, 'rev4',
1332
 
                                                        ['rev2b', 'rev1'])
1333
 
 
1334
 
    def test_shortcut_one_ancestor(self):
1335
 
        # When we have enough info, we can stop searching
1336
 
        graph = self.make_breaking_graph(ancestry_1, ['rev3', 'rev2b', 'rev4'])
1337
 
        # Single ancestors shortcut right away
1338
 
        self.assertMergeOrder(['rev3'], graph, 'rev4', ['rev3'])
1339
 
 
1340
 
    def test_shortcut_after_one_ancestor(self):
1341
 
        graph = self.make_breaking_graph(ancestry_1, ['rev2a', 'rev2b'])
1342
 
        self.assertMergeOrder(['rev3', 'rev1'], graph, 'rev4', ['rev1', 'rev3'])
1343
 
 
1344
684
 
1345
685
class TestCachingParentsProvider(tests.TestCase):
1346
686
 
1350
690
        self.inst_pp = InstrumentedParentsProvider(dict_pp)
1351
691
        self.caching_pp = _mod_graph.CachingParentsProvider(self.inst_pp)
1352
692
 
 
693
    def test_get_parents(self):
 
694
        """Requesting the same revision should be returned from cache"""
 
695
        self.assertEqual({}, self.caching_pp._cache)
 
696
        self.assertEqual([('b',)],
 
697
            self.applyDeprecated(symbol_versioning.one_one,
 
698
            self.caching_pp.get_parents, ['a']))
 
699
        self.assertEqual(['a'], self.inst_pp.calls)
 
700
        self.assertEqual([('b',)],
 
701
            self.applyDeprecated(symbol_versioning.one_one,
 
702
            self.caching_pp.get_parents, ['a']))
 
703
        # No new call, as it should have been returned from the cache
 
704
        self.assertEqual(['a'], self.inst_pp.calls)
 
705
        self.assertEqual({'a':('b',)}, self.caching_pp._cache)
 
706
 
1353
707
    def test_get_parent_map(self):
1354
708
        """Requesting the same revision should be returned from cache"""
1355
709
        self.assertEqual({}, self.caching_pp._cache)
1384
738
        # Use sorted because we don't care about the order, just that each is
1385
739
        # only present 1 time.
1386
740
        self.assertEqual(['a', 'b'], sorted(self.inst_pp.calls))
1387
 
 
1388
 
 
1389
 
class TestCollapseLinearRegions(tests.TestCase):
1390
 
 
1391
 
    def assertCollapsed(self, collapsed, original):
1392
 
        self.assertEqual(collapsed,
1393
 
                         _mod_graph.collapse_linear_regions(original))
1394
 
 
1395
 
    def test_collapse_nothing(self):
1396
 
        d = {1:[2, 3], 2:[], 3:[]}
1397
 
        self.assertCollapsed(d, d)
1398
 
        d = {1:[2], 2:[3, 4], 3:[5], 4:[5], 5:[]}
1399
 
        self.assertCollapsed(d, d)
1400
 
 
1401
 
    def test_collapse_chain(self):
1402
 
        # Any time we have a linear chain, we should be able to collapse
1403
 
        d = {1:[2], 2:[3], 3:[4], 4:[5], 5:[]}
1404
 
        self.assertCollapsed({1:[5], 5:[]}, d)
1405
 
        d = {5:[4], 4:[3], 3:[2], 2:[1], 1:[]}
1406
 
        self.assertCollapsed({5:[1], 1:[]}, d)
1407
 
        d = {5:[3], 3:[4], 4:[1], 1:[2], 2:[]}
1408
 
        self.assertCollapsed({5:[2], 2:[]}, d)
1409
 
 
1410
 
    def test_collapse_with_multiple_children(self):
1411
 
        #    7
1412
 
        #    |
1413
 
        #    6
1414
 
        #   / \
1415
 
        #  4   5
1416
 
        #  |   |
1417
 
        #  2   3
1418
 
        #   \ /
1419
 
        #    1
1420
 
        #
1421
 
        # 4 and 5 cannot be removed because 6 has 2 children
1422
 
        # 2 and 3 cannot be removed because 1 has 2 parents
1423
 
        d = {1:[2, 3], 2:[4], 4:[6], 3:[5], 5:[6], 6:[7], 7:[]}
1424
 
        self.assertCollapsed(d, d)