~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_log.py

  • Committer: Jelmer Vernooij
  • Date: 2010-01-29 17:54:08 UTC
  • mto: This revision was merged to the branch mainline in revision 5040.
  • Revision ID: jelmer@samba.org-20100129175408-rn80rnkg0qplyni9
RemoveĀ unusedĀ imports.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005-2010 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
18
18
from cStringIO import StringIO
19
19
 
20
20
from bzrlib import (
21
 
    branchbuilder,
22
21
    errors,
23
22
    log,
24
23
    registry,
117
116
            branch.tags.set_tag('v1.0', 'rev-3')
118
117
        return wt
119
118
 
120
 
 
121
119
class LogCatcher(log.LogFormatter):
122
120
    """Pull log messages into a list rather than displaying them.
123
121
 
372
370
            wt.branch, log.ShortLogFormatter,
373
371
            show_log_kwargs=dict(start_revision=rev, end_revision=rev))
374
372
 
375
 
    def test_show_ids(self):
376
 
        wt = self.make_branch_and_tree('parent')
377
 
        self.build_tree(['parent/f1', 'parent/f2'])
378
 
        wt.add(['f1','f2'])
379
 
        self.wt_commit(wt, 'first post', rev_id='a')
380
 
        child_wt = wt.bzrdir.sprout('child').open_workingtree()
381
 
        self.wt_commit(child_wt, 'branch 1 changes', rev_id='b')
382
 
        wt.merge_from_branch(child_wt.branch)
383
 
        self.wt_commit(wt, 'merge branch 1', rev_id='c')
384
 
        self.assertFormatterResult("""\
385
 
    2 Joe Foo\t2005-11-22 [merge]
386
 
      revision-id:c
387
 
      merge branch 1
388
 
 
389
 
          1.1.1 Joe Foo\t2005-11-22
390
 
                revision-id:b
391
 
                branch 1 changes
392
 
 
393
 
    1 Joe Foo\t2005-11-22
394
 
      revision-id:a
395
 
      first post
396
 
 
397
 
""",
398
 
            wt.branch, log.ShortLogFormatter,
399
 
            formatter_kwargs=dict(levels=0,show_ids=True))
400
 
 
401
373
 
402
374
class TestShortLogFormatterWithMergeRevisions(TestCaseForLogFormatter):
403
375
 
686
658
        self.assertEqualDiff('''custom_prop_name: test_value\n''',
687
659
                             sio.getvalue())
688
660
 
689
 
    def test_show_ids(self):
690
 
        wt = self.make_branch_and_tree('parent')
691
 
        self.build_tree(['parent/f1', 'parent/f2'])
692
 
        wt.add(['f1','f2'])
693
 
        self.wt_commit(wt, 'first post', rev_id='a')
694
 
        child_wt = wt.bzrdir.sprout('child').open_workingtree()
695
 
        self.wt_commit(child_wt, 'branch 1 changes', rev_id='b')
696
 
        wt.merge_from_branch(child_wt.branch)
697
 
        self.wt_commit(wt, 'merge branch 1', rev_id='c')
698
 
        self.assertFormatterResult("""\
699
 
------------------------------------------------------------
700
 
revno: 2 [merge]
701
 
revision-id: c
702
 
parent: a
703
 
parent: b
704
 
committer: Joe Foo <joe@foo.com>
705
 
branch nick: parent
706
 
timestamp: Tue 2005-11-22 00:00:02 +0000
707
 
message:
708
 
  merge branch 1
709
 
    ------------------------------------------------------------
710
 
    revno: 1.1.1
711
 
    revision-id: b
712
 
    parent: a
713
 
    committer: Joe Foo <joe@foo.com>
714
 
    branch nick: child
715
 
    timestamp: Tue 2005-11-22 00:00:01 +0000
716
 
    message:
717
 
      branch 1 changes
718
 
------------------------------------------------------------
719
 
revno: 1
720
 
revision-id: a
721
 
committer: Joe Foo <joe@foo.com>
722
 
branch nick: parent
723
 
timestamp: Tue 2005-11-22 00:00:00 +0000
724
 
message:
725
 
  first post
726
 
""",
727
 
            wt.branch, log.LongLogFormatter,
728
 
            formatter_kwargs=dict(levels=0,show_ids=True))
729
 
 
730
661
 
731
662
class TestLongLogFormatterWithoutMergeRevisions(TestCaseForLogFormatter):
732
663
 
946
877
            formatter_kwargs=dict(levels=0))
947
878
 
948
879
 
949
 
class TestGnuChangelogFormatter(TestCaseForLogFormatter):
950
 
 
951
 
    def test_gnu_changelog(self):
952
 
        wt = self.make_standard_commit('nicky', authors=[])
953
 
        self.assertFormatterResult('''\
954
 
2005-11-22  Lorem Ipsum  <test@example.com>
955
 
 
956
 
\tadd a
957
 
 
958
 
''',
959
 
            wt.branch, log.GnuChangelogLogFormatter)
960
 
 
961
 
    def test_with_authors(self):
962
 
        wt = self.make_standard_commit('nicky',
963
 
            authors=['Fooa Fooz <foo@example.com>',
964
 
                     'Bari Baro <bar@example.com>'])
965
 
        self.assertFormatterResult('''\
966
 
2005-11-22  Fooa Fooz  <foo@example.com>
967
 
 
968
 
\tadd a
969
 
 
970
 
''',
971
 
            wt.branch, log.GnuChangelogLogFormatter)
972
 
 
973
 
    def test_verbose(self):
974
 
        wt = self.make_standard_commit('nicky')
975
 
        self.assertFormatterResult('''\
976
 
2005-11-22  John Doe  <jdoe@example.com>
977
 
 
978
 
\t* a:
979
 
 
980
 
\tadd a
981
 
 
982
 
''',
983
 
            wt.branch, log.GnuChangelogLogFormatter,
984
 
            show_log_kwargs=dict(verbose=True))
 
880
class TestGetViewRevisions(tests.TestCaseWithTransport, TestLogMixin):
 
881
 
 
882
    def _get_view_revisions(self, *args, **kwargs):
 
883
        return self.applyDeprecated(symbol_versioning.deprecated_in((2, 2, 0)),
 
884
                                    log.get_view_revisions, *args, **kwargs)
 
885
 
 
886
    def make_tree_with_commits(self):
 
887
        """Create a tree with well-known revision ids"""
 
888
        wt = self.make_branch_and_tree('tree1')
 
889
        self.wt_commit(wt, 'commit one', rev_id='1')
 
890
        self.wt_commit(wt, 'commit two', rev_id='2')
 
891
        self.wt_commit(wt, 'commit three', rev_id='3')
 
892
        mainline_revs = [None, '1', '2', '3']
 
893
        rev_nos = {'1': 1, '2': 2, '3': 3}
 
894
        return mainline_revs, rev_nos, wt
 
895
 
 
896
    def make_tree_with_merges(self):
 
897
        """Create a tree with well-known revision ids and a merge"""
 
898
        mainline_revs, rev_nos, wt = self.make_tree_with_commits()
 
899
        tree2 = wt.bzrdir.sprout('tree2').open_workingtree()
 
900
        self.wt_commit(tree2, 'four-a', rev_id='4a')
 
901
        wt.merge_from_branch(tree2.branch)
 
902
        self.wt_commit(wt, 'four-b', rev_id='4b')
 
903
        mainline_revs.append('4b')
 
904
        rev_nos['4b'] = 4
 
905
        # 4a: 3.1.1
 
906
        return mainline_revs, rev_nos, wt
 
907
 
 
908
    def make_branch_with_many_merges(self):
 
909
        """Create a tree with well-known revision ids"""
 
910
        builder = self.make_branch_builder('tree1')
 
911
        builder.start_series()
 
912
        builder.build_snapshot('1', None, [
 
913
            ('add', ('', 'TREE_ROOT', 'directory', '')),
 
914
            ('add', ('f', 'f-id', 'file', '1\n'))])
 
915
        builder.build_snapshot('2', ['1'], [])
 
916
        builder.build_snapshot('3a', ['2'], [
 
917
            ('modify', ('f-id', '1\n2\n3a\n'))])
 
918
        builder.build_snapshot('3b', ['2', '3a'], [
 
919
            ('modify', ('f-id', '1\n2\n3a\n'))])
 
920
        builder.build_snapshot('3c', ['2', '3b'], [
 
921
            ('modify', ('f-id', '1\n2\n3a\n'))])
 
922
        builder.build_snapshot('4a', ['3b'], [])
 
923
        builder.build_snapshot('4b', ['3c', '4a'], [])
 
924
        builder.finish_series()
 
925
 
 
926
        # 1
 
927
        # |
 
928
        # 2-.
 
929
        # |\ \
 
930
        # | | 3a
 
931
        # | |/
 
932
        # | 3b
 
933
        # |/|
 
934
        # 3c4a
 
935
        # |/
 
936
        # 4b
 
937
 
 
938
        mainline_revs = [None, '1', '2', '3c', '4b']
 
939
        rev_nos = {'1':1, '2':2, '3c': 3, '4b':4}
 
940
        full_rev_nos_for_reference = {
 
941
            '1': '1',
 
942
            '2': '2',
 
943
            '3a': '2.1.1', #first commit tree 3
 
944
            '3b': '2.2.1', # first commit tree 2
 
945
            '3c': '3', #merges 3b to main
 
946
            '4a': '2.2.2', # second commit tree 2
 
947
            '4b': '4', # merges 4a to main
 
948
            }
 
949
        return mainline_revs, rev_nos, builder.get_branch()
 
950
 
 
951
    def test_get_view_revisions_forward(self):
 
952
        """Test the get_view_revisions method"""
 
953
        mainline_revs, rev_nos, wt = self.make_tree_with_commits()
 
954
        wt.lock_read()
 
955
        self.addCleanup(wt.unlock)
 
956
        revisions = list(self._get_view_revisions(
 
957
                mainline_revs, rev_nos, wt.branch, 'forward'))
 
958
        self.assertEqual([('1', '1', 0), ('2', '2', 0), ('3', '3', 0)],
 
959
                         revisions)
 
960
        revisions2 = list(self._get_view_revisions(
 
961
                mainline_revs, rev_nos, wt.branch, 'forward',
 
962
                include_merges=False))
 
963
        self.assertEqual(revisions, revisions2)
 
964
 
 
965
    def test_get_view_revisions_reverse(self):
 
966
        """Test the get_view_revisions with reverse"""
 
967
        mainline_revs, rev_nos, wt = self.make_tree_with_commits()
 
968
        wt.lock_read()
 
969
        self.addCleanup(wt.unlock)
 
970
        revisions = list(self._get_view_revisions(
 
971
                mainline_revs, rev_nos, wt.branch, 'reverse'))
 
972
        self.assertEqual([('3', '3', 0), ('2', '2', 0), ('1', '1', 0), ],
 
973
                         revisions)
 
974
        revisions2 = list(self._get_view_revisions(
 
975
                mainline_revs, rev_nos, wt.branch, 'reverse',
 
976
                include_merges=False))
 
977
        self.assertEqual(revisions, revisions2)
 
978
 
 
979
    def test_get_view_revisions_merge(self):
 
980
        """Test get_view_revisions when there are merges"""
 
981
        mainline_revs, rev_nos, wt = self.make_tree_with_merges()
 
982
        wt.lock_read()
 
983
        self.addCleanup(wt.unlock)
 
984
        revisions = list(self._get_view_revisions(
 
985
                mainline_revs, rev_nos, wt.branch, 'forward'))
 
986
        self.assertEqual([('1', '1', 0), ('2', '2', 0), ('3', '3', 0),
 
987
                          ('4b', '4', 0), ('4a', '3.1.1', 1)],
 
988
                         revisions)
 
989
        revisions = list(self._get_view_revisions(
 
990
                mainline_revs, rev_nos, wt.branch, 'forward',
 
991
                include_merges=False))
 
992
        self.assertEqual([('1', '1', 0), ('2', '2', 0), ('3', '3', 0),
 
993
                          ('4b', '4', 0)],
 
994
                         revisions)
 
995
 
 
996
    def test_get_view_revisions_merge_reverse(self):
 
997
        """Test get_view_revisions in reverse when there are merges"""
 
998
        mainline_revs, rev_nos, wt = self.make_tree_with_merges()
 
999
        wt.lock_read()
 
1000
        self.addCleanup(wt.unlock)
 
1001
        revisions = list(self._get_view_revisions(
 
1002
                mainline_revs, rev_nos, wt.branch, 'reverse'))
 
1003
        self.assertEqual([('4b', '4', 0), ('4a', '3.1.1', 1),
 
1004
                          ('3', '3', 0), ('2', '2', 0), ('1', '1', 0)],
 
1005
                         revisions)
 
1006
        revisions = list(self._get_view_revisions(
 
1007
                mainline_revs, rev_nos, wt.branch, 'reverse',
 
1008
                include_merges=False))
 
1009
        self.assertEqual([('4b', '4', 0), ('3', '3', 0), ('2', '2', 0),
 
1010
                          ('1', '1', 0)],
 
1011
                         revisions)
 
1012
 
 
1013
    def test_get_view_revisions_merge2(self):
 
1014
        """Test get_view_revisions when there are merges"""
 
1015
        mainline_revs, rev_nos, b = self.make_branch_with_many_merges()
 
1016
        b.lock_read()
 
1017
        self.addCleanup(b.unlock)
 
1018
        revisions = list(self._get_view_revisions(
 
1019
                mainline_revs, rev_nos, b, 'forward'))
 
1020
        expected = [('1', '1', 0), ('2', '2', 0), ('3c', '3', 0),
 
1021
                    ('3b', '2.2.1', 1), ('3a', '2.1.1', 2), ('4b', '4', 0),
 
1022
                    ('4a', '2.2.2', 1)]
 
1023
        self.assertEqual(expected, revisions)
 
1024
        revisions = list(self._get_view_revisions(
 
1025
                mainline_revs, rev_nos, b, 'forward',
 
1026
                include_merges=False))
 
1027
        self.assertEqual([('1', '1', 0), ('2', '2', 0), ('3c', '3', 0),
 
1028
                          ('4b', '4', 0)],
 
1029
                         revisions)
 
1030
 
 
1031
    def test_file_id_for_range(self):
 
1032
        mainline_revs, rev_nos, b = self.make_branch_with_many_merges()
 
1033
        b.lock_read()
 
1034
        self.addCleanup(b.unlock)
 
1035
 
 
1036
        def rev_from_rev_id(revid, branch):
 
1037
            revspec = revisionspec.RevisionSpec.from_string('revid:%s' % revid)
 
1038
            return revspec.in_history(branch)
 
1039
 
 
1040
        def view_revs(start_rev, end_rev, file_id, direction):
 
1041
            revs = self.applyDeprecated(
 
1042
                symbol_versioning.deprecated_in((2, 2, 0)),
 
1043
                log.calculate_view_revisions,
 
1044
                b,
 
1045
                start_rev, # start_revision
 
1046
                end_rev, # end_revision
 
1047
                direction, # direction
 
1048
                file_id, # specific_fileid
 
1049
                True, # generate_merge_revisions
 
1050
                )
 
1051
            return revs
 
1052
 
 
1053
        rev_3a = rev_from_rev_id('3a', b)
 
1054
        rev_4b = rev_from_rev_id('4b', b)
 
1055
        self.assertEqual([('3c', '3', 0), ('3b', '2.2.1', 1),
 
1056
                          ('3a', '2.1.1', 2)],
 
1057
                          view_revs(rev_3a, rev_4b, 'f-id', 'reverse'))
 
1058
        # Note: 3c still appears before 3a here because of depth-based sorting
 
1059
        self.assertEqual([('3c', '3', 0), ('3b', '2.2.1', 1),
 
1060
                          ('3a', '2.1.1', 2)],
 
1061
                          view_revs(rev_3a, rev_4b, 'f-id', 'forward'))
 
1062
 
 
1063
 
 
1064
class TestGetRevisionsTouchingFileID(tests.TestCaseWithTransport):
 
1065
 
 
1066
    def get_view_revisions(self, *args):
 
1067
        return self.applyDeprecated(symbol_versioning.deprecated_in((2, 2, 0)),
 
1068
                                    log.get_view_revisions, *args)
 
1069
 
 
1070
    def create_tree_with_single_merge(self):
 
1071
        """Create a branch with a moderate layout.
 
1072
 
 
1073
        The revision graph looks like:
 
1074
 
 
1075
           A
 
1076
           |\
 
1077
           B C
 
1078
           |/
 
1079
           D
 
1080
 
 
1081
        In this graph, A introduced files f1 and f2 and f3.
 
1082
        B modifies f1 and f3, and C modifies f2 and f3.
 
1083
        D merges the changes from B and C and resolves the conflict for f3.
 
1084
        """
 
1085
        # TODO: jam 20070218 This seems like it could really be done
 
1086
        #       with make_branch_and_memory_tree() if we could just
 
1087
        #       create the content of those files.
 
1088
        # TODO: jam 20070218 Another alternative is that we would really
 
1089
        #       like to only create this tree 1 time for all tests that
 
1090
        #       use it. Since 'log' only uses the tree in a readonly
 
1091
        #       fashion, it seems a shame to regenerate an identical
 
1092
        #       tree for each test.
 
1093
        # TODO: vila 20100122 One way to address the shame above will be to
 
1094
        #       create a memory tree during test parametrization and give a
 
1095
        #       *copy* of this tree to each test. Copying a memory tree ought
 
1096
        #       to be cheap, at least cheaper than creating them with such
 
1097
        #       complex setups.
 
1098
        tree = self.make_branch_and_tree('tree')
 
1099
        tree.lock_write()
 
1100
        self.addCleanup(tree.unlock)
 
1101
 
 
1102
        self.build_tree_contents([('tree/f1', 'A\n'),
 
1103
                                  ('tree/f2', 'A\n'),
 
1104
                                  ('tree/f3', 'A\n'),
 
1105
                                 ])
 
1106
        tree.add(['f1', 'f2', 'f3'], ['f1-id', 'f2-id', 'f3-id'])
 
1107
        tree.commit('A', rev_id='A')
 
1108
 
 
1109
        self.build_tree_contents([('tree/f2', 'A\nC\n'),
 
1110
                                  ('tree/f3', 'A\nC\n'),
 
1111
                                 ])
 
1112
        tree.commit('C', rev_id='C')
 
1113
        # Revert back to A to build the other history.
 
1114
        tree.set_last_revision('A')
 
1115
        tree.branch.set_last_revision_info(1, 'A')
 
1116
        self.build_tree_contents([('tree/f1', 'A\nB\n'),
 
1117
                                  ('tree/f2', 'A\n'),
 
1118
                                  ('tree/f3', 'A\nB\n'),
 
1119
                                 ])
 
1120
        tree.commit('B', rev_id='B')
 
1121
        tree.set_parent_ids(['B', 'C'])
 
1122
        self.build_tree_contents([('tree/f1', 'A\nB\n'),
 
1123
                                  ('tree/f2', 'A\nC\n'),
 
1124
                                  ('tree/f3', 'A\nB\nC\n'),
 
1125
                                 ])
 
1126
        tree.commit('D', rev_id='D')
 
1127
 
 
1128
        # Switch to a read lock for this tree.
 
1129
        # We still have an addCleanup(tree.unlock) pending
 
1130
        tree.unlock()
 
1131
        tree.lock_read()
 
1132
        return tree
 
1133
 
 
1134
    def check_delta(self, delta, **kw):
 
1135
        """Check the filenames touched by a delta are as expected.
 
1136
 
 
1137
        Caller only have to pass in the list of files for each part, all
 
1138
        unspecified parts are considered empty (and checked as such).
 
1139
        """
 
1140
        for n in 'added', 'removed', 'renamed', 'modified', 'unchanged':
 
1141
            # By default we expect an empty list
 
1142
            expected = kw.get(n, [])
 
1143
            # strip out only the path components
 
1144
            got = [x[0] for x in getattr(delta, n)]
 
1145
            self.assertEqual(expected, got)
 
1146
 
 
1147
    def test_tree_with_single_merge(self):
 
1148
        """Make sure the tree layout is correct."""
 
1149
        tree = self.create_tree_with_single_merge()
 
1150
        rev_A_tree = tree.branch.repository.revision_tree('A')
 
1151
        rev_B_tree = tree.branch.repository.revision_tree('B')
 
1152
        rev_C_tree = tree.branch.repository.revision_tree('C')
 
1153
        rev_D_tree = tree.branch.repository.revision_tree('D')
 
1154
 
 
1155
        self.check_delta(rev_B_tree.changes_from(rev_A_tree),
 
1156
                         modified=['f1', 'f3'])
 
1157
 
 
1158
        self.check_delta(rev_C_tree.changes_from(rev_A_tree),
 
1159
                         modified=['f2', 'f3'])
 
1160
 
 
1161
        self.check_delta(rev_D_tree.changes_from(rev_B_tree),
 
1162
                         modified=['f2', 'f3'])
 
1163
 
 
1164
        self.check_delta(rev_D_tree.changes_from(rev_C_tree),
 
1165
                         modified=['f1', 'f3'])
 
1166
 
 
1167
    def assertAllRevisionsForFileID(self, tree, file_id, revisions):
 
1168
        """Ensure _filter_revisions_touching_file_id returns the right values.
 
1169
 
 
1170
        Get the return value from _filter_revisions_touching_file_id and make
 
1171
        sure they are correct.
 
1172
        """
 
1173
        # The api for _filter_revisions_touching_file_id is a little crazy.
 
1174
        # So we do the setup here.
 
1175
        mainline = tree.branch.revision_history()
 
1176
        mainline.insert(0, None)
 
1177
        revnos = dict((rev, idx+1) for idx, rev in enumerate(mainline))
 
1178
        view_revs_iter = self.get_view_revisions(
 
1179
            mainline, revnos, tree.branch, 'reverse', True)
 
1180
        actual_revs = log._filter_revisions_touching_file_id(
 
1181
            tree.branch, file_id, list(view_revs_iter))
 
1182
        self.assertEqual(revisions, [r for r, revno, depth in actual_revs])
 
1183
 
 
1184
    def test_file_id_f1(self):
 
1185
        tree = self.create_tree_with_single_merge()
 
1186
        # f1 should be marked as modified by revisions A and B
 
1187
        self.assertAllRevisionsForFileID(tree, 'f1-id', ['B', 'A'])
 
1188
 
 
1189
    def test_file_id_f2(self):
 
1190
        tree = self.create_tree_with_single_merge()
 
1191
        # f2 should be marked as modified by revisions A, C, and D
 
1192
        # because D merged the changes from C.
 
1193
        self.assertAllRevisionsForFileID(tree, 'f2-id', ['D', 'C', 'A'])
 
1194
 
 
1195
    def test_file_id_f3(self):
 
1196
        tree = self.create_tree_with_single_merge()
 
1197
        # f3 should be marked as modified by revisions A, B, C, and D
 
1198
        self.assertAllRevisionsForFileID(tree, 'f3-id', ['D', 'C', 'B', 'A'])
 
1199
 
 
1200
    def test_file_id_with_ghosts(self):
 
1201
        # This is testing bug #209948, where having a ghost would cause
 
1202
        # _filter_revisions_touching_file_id() to fail.
 
1203
        tree = self.create_tree_with_single_merge()
 
1204
        # We need to add a revision, so switch back to a write-locked tree
 
1205
        # (still a single addCleanup(tree.unlock) pending).
 
1206
        tree.unlock()
 
1207
        tree.lock_write()
 
1208
        first_parent = tree.last_revision()
 
1209
        tree.set_parent_ids([first_parent, 'ghost-revision-id'])
 
1210
        self.build_tree_contents([('tree/f1', 'A\nB\nXX\n')])
 
1211
        tree.commit('commit with a ghost', rev_id='XX')
 
1212
        self.assertAllRevisionsForFileID(tree, 'f1-id', ['XX', 'B', 'A'])
 
1213
        self.assertAllRevisionsForFileID(tree, 'f2-id', ['D', 'C', 'A'])
 
1214
 
 
1215
    def test_unknown_file_id(self):
 
1216
        tree = self.create_tree_with_single_merge()
 
1217
        self.assertAllRevisionsForFileID(tree, 'unknown', [])
 
1218
 
 
1219
    def test_empty_branch_unknown_file_id(self):
 
1220
        tree = self.make_branch_and_tree('tree')
 
1221
        self.assertAllRevisionsForFileID(tree, 'unknown', [])
985
1222
 
986
1223
 
987
1224
class TestShowChangedRevisions(tests.TestCaseWithTransport):
1188
1425
        self.assertNotContainsRe(s.getvalue(), 'Added Revisions:')
1189
1426
 
1190
1427
 
1191
 
class TestRevisionNotInBranch(TestCaseForLogFormatter):
1192
 
 
1193
 
    def setup_a_tree(self):
1194
 
        tree = self.make_branch_and_tree('tree')
1195
 
        tree.lock_write()
1196
 
        self.addCleanup(tree.unlock)
1197
 
        kwargs = {
1198
 
            'committer': 'Joe Foo <joe@foo.com>',
1199
 
            'timestamp': 1132617600, # Mon 2005-11-22 00:00:00 +0000
1200
 
            'timezone': 0, # UTC
1201
 
        }
1202
 
        tree.commit('commit 1a', rev_id='1a', **kwargs)
1203
 
        tree.commit('commit 2a', rev_id='2a', **kwargs)
1204
 
        tree.commit('commit 3a', rev_id='3a', **kwargs)
1205
 
        return tree
1206
 
 
1207
 
    def setup_ab_tree(self):
1208
 
        tree = self.setup_a_tree()
1209
 
        tree.set_last_revision('1a')
1210
 
        tree.branch.set_last_revision_info(1, '1a')
1211
 
        kwargs = {
1212
 
            'committer': 'Joe Foo <joe@foo.com>',
1213
 
            'timestamp': 1132617600, # Mon 2005-11-22 00:00:00 +0000
1214
 
            'timezone': 0, # UTC
1215
 
        }
1216
 
        tree.commit('commit 2b', rev_id='2b', **kwargs)
1217
 
        tree.commit('commit 3b', rev_id='3b', **kwargs)
1218
 
        return tree
1219
 
 
1220
 
    def test_one_revision(self):
1221
 
        tree = self.setup_ab_tree()
1222
 
        lf = LogCatcher()
1223
 
        rev = revisionspec.RevisionInfo(tree.branch, None, '3a')
1224
 
        log.show_log(tree.branch, lf, verbose=True, start_revision=rev,
1225
 
                     end_revision=rev)
1226
 
        self.assertEqual(1, len(lf.revisions))
1227
 
        self.assertEqual(None, lf.revisions[0].revno)   # Out-of-branch
1228
 
        self.assertEqual('3a', lf.revisions[0].rev.revision_id)
1229
 
 
1230
 
    def test_many_revisions(self):
1231
 
        tree = self.setup_ab_tree()
1232
 
        lf = LogCatcher()
1233
 
        start_rev = revisionspec.RevisionInfo(tree.branch, None, '1a')
1234
 
        end_rev = revisionspec.RevisionInfo(tree.branch, None, '3a')
1235
 
        log.show_log(tree.branch, lf, verbose=True, start_revision=start_rev,
1236
 
                     end_revision=end_rev)
1237
 
        self.assertEqual(3, len(lf.revisions))
1238
 
        self.assertEqual(None, lf.revisions[0].revno)   # Out-of-branch
1239
 
        self.assertEqual('3a', lf.revisions[0].rev.revision_id)
1240
 
        self.assertEqual(None, lf.revisions[1].revno)   # Out-of-branch
1241
 
        self.assertEqual('2a', lf.revisions[1].rev.revision_id)
1242
 
        self.assertEqual('1', lf.revisions[2].revno)    # In-branch
1243
 
 
1244
 
    def test_long_format(self):
1245
 
        tree = self.setup_ab_tree()
1246
 
        start_rev = revisionspec.RevisionInfo(tree.branch, None, '1a')
1247
 
        end_rev = revisionspec.RevisionInfo(tree.branch, None, '3a')
1248
 
        self.assertFormatterResult("""\
1249
 
------------------------------------------------------------
1250
 
revision-id: 3a
1251
 
committer: Joe Foo <joe@foo.com>
1252
 
branch nick: tree
1253
 
timestamp: Tue 2005-11-22 00:00:00 +0000
1254
 
message:
1255
 
  commit 3a
1256
 
------------------------------------------------------------
1257
 
revision-id: 2a
1258
 
committer: Joe Foo <joe@foo.com>
1259
 
branch nick: tree
1260
 
timestamp: Tue 2005-11-22 00:00:00 +0000
1261
 
message:
1262
 
  commit 2a
1263
 
------------------------------------------------------------
1264
 
revno: 1
1265
 
committer: Joe Foo <joe@foo.com>
1266
 
branch nick: tree
1267
 
timestamp: Tue 2005-11-22 00:00:00 +0000
1268
 
message:
1269
 
  commit 1a
1270
 
""",
1271
 
            tree.branch, log.LongLogFormatter, show_log_kwargs={
1272
 
                'start_revision': start_rev, 'end_revision': end_rev
1273
 
            })
1274
 
 
1275
 
    def test_short_format(self):
1276
 
        tree = self.setup_ab_tree()
1277
 
        start_rev = revisionspec.RevisionInfo(tree.branch, None, '1a')
1278
 
        end_rev = revisionspec.RevisionInfo(tree.branch, None, '3a')
1279
 
        self.assertFormatterResult("""\
1280
 
      Joe Foo\t2005-11-22
1281
 
      revision-id:3a
1282
 
      commit 3a
1283
 
 
1284
 
      Joe Foo\t2005-11-22
1285
 
      revision-id:2a
1286
 
      commit 2a
1287
 
 
1288
 
    1 Joe Foo\t2005-11-22
1289
 
      commit 1a
1290
 
 
1291
 
""",
1292
 
            tree.branch, log.ShortLogFormatter, show_log_kwargs={
1293
 
                'start_revision': start_rev, 'end_revision': end_rev
1294
 
            })
1295
 
 
1296
 
    def test_line_format(self):
1297
 
        tree = self.setup_ab_tree()
1298
 
        start_rev = revisionspec.RevisionInfo(tree.branch, None, '1a')
1299
 
        end_rev = revisionspec.RevisionInfo(tree.branch, None, '3a')
1300
 
        self.assertFormatterResult("""\
1301
 
Joe Foo 2005-11-22 commit 3a
1302
 
Joe Foo 2005-11-22 commit 2a
1303
 
1: Joe Foo 2005-11-22 commit 1a
1304
 
""",
1305
 
            tree.branch, log.LineLogFormatter, show_log_kwargs={
1306
 
                'start_revision': start_rev, 'end_revision': end_rev
1307
 
            })
1308
 
 
1309
1428
 
1310
1429
class TestLogWithBugs(TestCaseForLogFormatter, TestLogMixin):
1311
1430
 
1385
1504
 
1386
1505
    def test_bugs_handler_present(self):
1387
1506
        self.properties_handler_registry.get('bugs_properties_handler')
1388
 
 
1389
 
 
1390
 
class TestLogForAuthors(TestCaseForLogFormatter):
1391
 
 
1392
 
    def setUp(self):
1393
 
        TestCaseForLogFormatter.setUp(self)
1394
 
        self.wt = self.make_standard_commit('nicky',
1395
 
            authors=['John Doe <jdoe@example.com>',
1396
 
                     'Jane Rey <jrey@example.com>'])
1397
 
 
1398
 
    def assertFormatterResult(self, formatter, who, result):
1399
 
        formatter_kwargs = dict()
1400
 
        if who is not None:
1401
 
            author_list_handler = log.author_list_registry.get(who)
1402
 
            formatter_kwargs['author_list_handler'] = author_list_handler
1403
 
        TestCaseForLogFormatter.assertFormatterResult(self, result,
1404
 
            self.wt.branch, formatter, formatter_kwargs=formatter_kwargs)
1405
 
 
1406
 
    def test_line_default(self):
1407
 
        self.assertFormatterResult(log.LineLogFormatter, None, """\
1408
 
1: John Doe 2005-11-22 add a
1409
 
""")
1410
 
 
1411
 
    def test_line_committer(self):
1412
 
        self.assertFormatterResult(log.LineLogFormatter, 'committer', """\
1413
 
1: Lorem Ipsum 2005-11-22 add a
1414
 
""")
1415
 
 
1416
 
    def test_line_first(self):
1417
 
        self.assertFormatterResult(log.LineLogFormatter, 'first', """\
1418
 
1: John Doe 2005-11-22 add a
1419
 
""")
1420
 
 
1421
 
    def test_line_all(self):
1422
 
        self.assertFormatterResult(log.LineLogFormatter, 'all', """\
1423
 
1: John Doe, Jane Rey 2005-11-22 add a
1424
 
""")
1425
 
 
1426
 
 
1427
 
    def test_short_default(self):
1428
 
        self.assertFormatterResult(log.ShortLogFormatter, None, """\
1429
 
    1 John Doe\t2005-11-22
1430
 
      add a
1431
 
 
1432
 
""")
1433
 
 
1434
 
    def test_short_committer(self):
1435
 
        self.assertFormatterResult(log.ShortLogFormatter, 'committer', """\
1436
 
    1 Lorem Ipsum\t2005-11-22
1437
 
      add a
1438
 
 
1439
 
""")
1440
 
 
1441
 
    def test_short_first(self):
1442
 
        self.assertFormatterResult(log.ShortLogFormatter, 'first', """\
1443
 
    1 John Doe\t2005-11-22
1444
 
      add a
1445
 
 
1446
 
""")
1447
 
 
1448
 
    def test_short_all(self):
1449
 
        self.assertFormatterResult(log.ShortLogFormatter, 'all', """\
1450
 
    1 John Doe, Jane Rey\t2005-11-22
1451
 
      add a
1452
 
 
1453
 
""")
1454
 
 
1455
 
    def test_long_default(self):
1456
 
        self.assertFormatterResult(log.LongLogFormatter, None, """\
1457
 
------------------------------------------------------------
1458
 
revno: 1
1459
 
author: John Doe <jdoe@example.com>, Jane Rey <jrey@example.com>
1460
 
committer: Lorem Ipsum <test@example.com>
1461
 
branch nick: nicky
1462
 
timestamp: Tue 2005-11-22 00:00:00 +0000
1463
 
message:
1464
 
  add a
1465
 
""")
1466
 
 
1467
 
    def test_long_committer(self):
1468
 
        self.assertFormatterResult(log.LongLogFormatter, 'committer', """\
1469
 
------------------------------------------------------------
1470
 
revno: 1
1471
 
committer: Lorem Ipsum <test@example.com>
1472
 
branch nick: nicky
1473
 
timestamp: Tue 2005-11-22 00:00:00 +0000
1474
 
message:
1475
 
  add a
1476
 
""")
1477
 
 
1478
 
    def test_long_first(self):
1479
 
        self.assertFormatterResult(log.LongLogFormatter, 'first', """\
1480
 
------------------------------------------------------------
1481
 
revno: 1
1482
 
author: John Doe <jdoe@example.com>
1483
 
committer: Lorem Ipsum <test@example.com>
1484
 
branch nick: nicky
1485
 
timestamp: Tue 2005-11-22 00:00:00 +0000
1486
 
message:
1487
 
  add a
1488
 
""")
1489
 
 
1490
 
    def test_long_all(self):
1491
 
        self.assertFormatterResult(log.LongLogFormatter, 'all', """\
1492
 
------------------------------------------------------------
1493
 
revno: 1
1494
 
author: John Doe <jdoe@example.com>, Jane Rey <jrey@example.com>
1495
 
committer: Lorem Ipsum <test@example.com>
1496
 
branch nick: nicky
1497
 
timestamp: Tue 2005-11-22 00:00:00 +0000
1498
 
message:
1499
 
  add a
1500
 
""")
1501
 
 
1502
 
    def test_gnu_changelog_default(self):
1503
 
        self.assertFormatterResult(log.GnuChangelogLogFormatter, None, """\
1504
 
2005-11-22  John Doe  <jdoe@example.com>
1505
 
 
1506
 
\tadd a
1507
 
 
1508
 
""")
1509
 
 
1510
 
    def test_gnu_changelog_committer(self):
1511
 
        self.assertFormatterResult(log.GnuChangelogLogFormatter, 'committer', """\
1512
 
2005-11-22  Lorem Ipsum  <test@example.com>
1513
 
 
1514
 
\tadd a
1515
 
 
1516
 
""")
1517
 
 
1518
 
    def test_gnu_changelog_first(self):
1519
 
        self.assertFormatterResult(log.GnuChangelogLogFormatter, 'first', """\
1520
 
2005-11-22  John Doe  <jdoe@example.com>
1521
 
 
1522
 
\tadd a
1523
 
 
1524
 
""")
1525
 
 
1526
 
    def test_gnu_changelog_all(self):
1527
 
        self.assertFormatterResult(log.GnuChangelogLogFormatter, 'all', """\
1528
 
2005-11-22  John Doe  <jdoe@example.com>, Jane Rey  <jrey@example.com>
1529
 
 
1530
 
\tadd a
1531
 
 
1532
 
""")
1533
 
 
1534
 
 
1535
 
class TestLogExcludeAncestry(tests.TestCaseWithTransport):
1536
 
 
1537
 
    def make_branch_with_alternate_ancestries(self, relpath='.'):
1538
 
        # See test_merge_sorted_exclude_ancestry below for the difference with
1539
 
        # bt.per_branch.test_iter_merge_sorted_revision.
1540
 
        # TestIterMergeSortedRevisionsBushyGraph.
1541
 
        # make_branch_with_alternate_ancestries
1542
 
        # and test_merge_sorted_exclude_ancestry
1543
 
        # See the FIXME in assertLogRevnos too.
1544
 
        builder = branchbuilder.BranchBuilder(self.get_transport(relpath))
1545
 
        # 1
1546
 
        # |\
1547
 
        # 2 \
1548
 
        # |  |
1549
 
        # |  1.1.1
1550
 
        # |  | \
1551
 
        # |  |  1.2.1
1552
 
        # |  | /
1553
 
        # |  1.1.2
1554
 
        # | /
1555
 
        # 3
1556
 
        builder.start_series()
1557
 
        builder.build_snapshot('1', None, [
1558
 
            ('add', ('', 'TREE_ROOT', 'directory', '')),])
1559
 
        builder.build_snapshot('1.1.1', ['1'], [])
1560
 
        builder.build_snapshot('2', ['1'], [])
1561
 
        builder.build_snapshot('1.2.1', ['1.1.1'], [])
1562
 
        builder.build_snapshot('1.1.2', ['1.1.1', '1.2.1'], [])
1563
 
        builder.build_snapshot('3', ['2', '1.1.2'], [])
1564
 
        builder.finish_series()
1565
 
        br = builder.get_branch()
1566
 
        br.lock_read()
1567
 
        self.addCleanup(br.unlock)
1568
 
        return br
1569
 
 
1570
 
    def assertLogRevnos(self, expected_revnos, b, start, end,
1571
 
                        exclude_common_ancestry, generate_merge_revisions=True):
1572
 
        # FIXME: the layering in log makes it hard to test intermediate levels,
1573
 
        # I wish adding filters with their parameters were easier...
1574
 
        # -- vila 20100413
1575
 
        iter_revs = log._calc_view_revisions(
1576
 
            b, start, end, direction='reverse',
1577
 
            generate_merge_revisions=generate_merge_revisions,
1578
 
            exclude_common_ancestry=exclude_common_ancestry)
1579
 
        self.assertEqual(expected_revnos,
1580
 
                         [revid for revid, revno, depth in iter_revs])
1581
 
 
1582
 
    def test_merge_sorted_exclude_ancestry(self):
1583
 
        b = self.make_branch_with_alternate_ancestries()
1584
 
        self.assertLogRevnos(['3', '1.1.2', '1.2.1', '1.1.1', '2', '1'],
1585
 
                             b, '1', '3', exclude_common_ancestry=False)
1586
 
        # '2' is part of the '3' ancestry but not part of '1.1.1' ancestry so
1587
 
        # it should be mentioned even if merge_sort order will make it appear
1588
 
        # after 1.1.1
1589
 
        self.assertLogRevnos(['3', '1.1.2', '1.2.1', '2'],
1590
 
                             b, '1.1.1', '3', exclude_common_ancestry=True)
1591
 
 
1592
 
    def test_merge_sorted_simple_revnos_exclude_ancestry(self):
1593
 
        b = self.make_branch_with_alternate_ancestries()
1594
 
        self.assertLogRevnos(['3', '2'],
1595
 
                             b, '1', '3', exclude_common_ancestry=True,
1596
 
                             generate_merge_revisions=False)
1597
 
        self.assertLogRevnos(['3', '1.1.2', '1.2.1', '1.1.1', '2'],
1598
 
                             b, '1', '3', exclude_common_ancestry=True,
1599
 
                             generate_merge_revisions=True)
1600
 
 
1601
 
 
1602
 
class TestLogDefaults(TestCaseForLogFormatter):
1603
 
    def test_default_log_level(self):
1604
 
        """
1605
 
        Test to ensure that specifying 'levels=1' to make_log_request_dict
1606
 
        doesn't get overwritten when using a LogFormatter that supports more
1607
 
        detail.
1608
 
        Fixes bug #747958.
1609
 
        """
1610
 
        wt = self._prepare_tree_with_merges()
1611
 
        b = wt.branch
1612
 
 
1613
 
        class CustomLogFormatter(log.LogFormatter):
1614
 
            def __init__(self, *args, **kwargs):
1615
 
                super(CustomLogFormatter, self).__init__(*args, **kwargs)
1616
 
                self.revisions = []
1617
 
            def get_levels(self):
1618
 
                # log formatter supports all levels:
1619
 
                return 0
1620
 
            def log_revision(self, revision):
1621
 
                self.revisions.append(revision)
1622
 
 
1623
 
        log_formatter = LogCatcher()
1624
 
        # First request we don't specify number of levels, we should get a
1625
 
        # sensible default (whatever the LogFormatter handles - which in this
1626
 
        # case is 0/everything):
1627
 
        request = log.make_log_request_dict(limit=10)
1628
 
        log.Logger(b, request).show(log_formatter)
1629
 
        # should have all three revisions:
1630
 
        self.assertEquals(len(log_formatter.revisions), 3)
1631
 
 
1632
 
        del log_formatter
1633
 
        log_formatter = LogCatcher()
1634
 
        # now explicitly request mainline revisions only:
1635
 
        request = log.make_log_request_dict(limit=10, levels=1)
1636
 
        log.Logger(b, request).show(log_formatter)
1637
 
        # should now only have 2 revisions:
1638
 
        self.assertEquals(len(log_formatter.revisions), 2)