/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
4183.6.2 by Martin Pool
Add better message and test for 251352
1
# Copyright (C) 2005, 2006, 2007, 2009 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
3
# This program is free software; you can redistribute it and/or modify
4
# it under the terms of the GNU General Public License as published by
5
# the Free Software Foundation; either version 2 of the License, or
6
# (at your option) any later version.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
7
#
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
8
# This program is distributed in the hope that it will be useful,
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
# GNU General Public License for more details.
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
12
#
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
13
# You should have received a copy of the GNU General Public License
14
# along with this program; if not, write to the Free Software
4183.7.1 by Sabin Iacob
update FSF mailing address
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
16
17
1624.1.3 by Robert Collins
Convert log to use the new tsort.merge_sort routine.
18
"""Black-box tests for bzr log."""
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
19
3940.1.2 by Ian Clatworthy
add test
20
import os, re
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
21
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
22
from bzrlib import osutils
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
23
from bzrlib.tests.blackbox import ExternalBase
3936.3.12 by Ian Clatworthy
more single revision & sequence tuning
24
from bzrlib.tests import KnownFailure, TestCaseInTempDir, TestCaseWithTransport
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
25
from bzrlib.tests.test_log import (
26
    normalize_log,
27
    )
3144.7.9 by Guillermo Gonzalez
* bzrlib.log.show_roperties don't hide handler errors
28
from bzrlib.tests import test_log
29
30
3842.2.5 by Vincent Ladeuil
Better fix for bug #300055.
31
class TestCaseWithoutPropsHandler(ExternalBase,
32
                                  test_log.TestCaseWithoutPropsHandler):
3144.7.9 by Guillermo Gonzalez
* bzrlib.log.show_roperties don't hide handler errors
33
    pass
1540.2.6 by Robey Pointer
make 'log' and 'status' treat '-r N..' as implicitly '-r N..-1'
34
35
36
class TestLog(ExternalBase):
37
2664.14.1 by Daniel Watkins
Fixed tests.blackbox.test_log to use internals where appropriate.
38
    def _prepare(self, path='.', format=None):
2809.1.2 by Daniel Watkins
Removed unnecessary check as per abentley's on-list comments.
39
        tree = self.make_branch_and_tree(path, format=format)
2664.14.1 by Daniel Watkins
Fixed tests.blackbox.test_log to use internals where appropriate.
40
        self.build_tree(
41
            [path + '/hello.txt', path + '/goodbye.txt', path + '/meep.txt'])
42
        tree.add('hello.txt')
43
        tree.commit(message='message1')
44
        tree.add('goodbye.txt')
45
        tree.commit(message='message2')
46
        tree.add('meep.txt')
47
        tree.commit(message='message3')
48
        self.full_log = self.run_bzr(["log", path])[0]
49
        return tree
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
50
51
    def test_log_null_end_revspec(self):
52
        self._prepare()
53
        self.assertTrue('revno: 1\n' in self.full_log)
54
        self.assertTrue('revno: 2\n' in self.full_log)
55
        self.assertTrue('revno: 3\n' in self.full_log)
56
        self.assertTrue('message:\n  message1\n' in self.full_log)
57
        self.assertTrue('message:\n  message2\n' in self.full_log)
58
        self.assertTrue('message:\n  message3\n' in self.full_log)
59
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
60
        log = self.run_bzr("log -r 1..")[0]
2466.11.2 by Kent Gibson
Add tests for deltas in merge revisions
61
        self.assertEqualDiff(log, self.full_log)
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
62
63
    def test_log_null_begin_revspec(self):
64
        self._prepare()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
65
        log = self.run_bzr("log -r ..3")[0]
2466.11.2 by Kent Gibson
Add tests for deltas in merge revisions
66
        self.assertEqualDiff(self.full_log, log)
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
67
68
    def test_log_null_both_revspecs(self):
69
        self._prepare()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
70
        log = self.run_bzr("log -r ..")[0]
2466.11.2 by Kent Gibson
Add tests for deltas in merge revisions
71
        self.assertEqualDiff(self.full_log, log)
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
72
2978.4.1 by Kent Gibson
Logging revision 0 returns error.
73
    def test_log_zero_revspec(self):
74
        self._prepare()
75
        self.run_bzr_error('bzr: ERROR: Logging revision 0 is invalid.',
76
                           ['log', '-r0'])
77
78
    def test_log_zero_begin_revspec(self):
79
        self._prepare()
80
        self.run_bzr_error('bzr: ERROR: Logging revision 0 is invalid.',
81
                           ['log', '-r0..2'])
82
83
    def test_log_zero_end_revspec(self):
84
        self._prepare()
85
        self.run_bzr_error('bzr: ERROR: Logging revision 0 is invalid.',
86
                           ['log', '-r-2..0'])
87
3144.1.1 by Lukáš Lalinský
Fixed error reporting of unsupported timezone format.
88
    def test_log_unsupported_timezone(self):
89
        self._prepare()
90
        self.run_bzr_error('bzr: ERROR: Unsupported timezone format "foo", '
91
                           'options are "utc", "original", "local".',
92
                           ['log', '--timezone', 'foo'])
93
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
94
    def test_log_negative_begin_revspec_full_log(self):
95
        self._prepare()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
96
        log = self.run_bzr("log -r -3..")[0]
2466.11.2 by Kent Gibson
Add tests for deltas in merge revisions
97
        self.assertEqualDiff(self.full_log, log)
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
98
99
    def test_log_negative_both_revspec_full_log(self):
100
        self._prepare()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
101
        log = self.run_bzr("log -r -3..-1")[0]
2466.11.2 by Kent Gibson
Add tests for deltas in merge revisions
102
        self.assertEqualDiff(self.full_log, log)
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
103
104
    def test_log_negative_both_revspec_partial(self):
105
        self._prepare()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
106
        log = self.run_bzr("log -r -3..-2")[0]
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
107
        self.assertTrue('revno: 1\n' in log)
108
        self.assertTrue('revno: 2\n' in log)
109
        self.assertTrue('revno: 3\n' not in log)
110
111
    def test_log_negative_begin_revspec(self):
112
        self._prepare()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
113
        log = self.run_bzr("log -r -2..")[0]
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
114
        self.assertTrue('revno: 1\n' not in log)
115
        self.assertTrue('revno: 2\n' in log)
116
        self.assertTrue('revno: 3\n' in log)
117
2978.4.1 by Kent Gibson
Logging revision 0 returns error.
118
    def test_log_positive_revspecs(self):
1553.4.2 by Michael Ellerman
Make bzr log -r .. work, fixes bug #4609. Add a bunch of tests to make sure
119
        self._prepare()
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
120
        log = self.run_bzr("log -r 1..3")[0]
2466.11.2 by Kent Gibson
Add tests for deltas in merge revisions
121
        self.assertEqualDiff(self.full_log, log)
1624.1.3 by Robert Collins
Convert log to use the new tsort.merge_sort routine.
122
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
123
    def test_log_reversed_revspecs(self):
124
        self._prepare()
125
        self.run_bzr_error(('bzr: ERROR: Start revision must be older than '
126
                            'the end revision.\n',),
2581.1.6 by Martin Pool
fix up more run_bzr callers
127
                           ['log', '-r3..1'])
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
128
1907.4.2 by Matthieu Moy
Make log work nicely with revno:N:path too.
129
    def test_log_revno_n_path(self):
2664.14.1 by Daniel Watkins
Fixed tests.blackbox.test_log to use internals where appropriate.
130
        self._prepare(path='branch1')
131
        self._prepare(path='branch2')
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
132
        log = self.run_bzr("log -r revno:2:branch1..revno:3:branch2",
1907.4.2 by Matthieu Moy
Make log work nicely with revno:N:path too.
133
                          retcode=3)[0]
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
134
        log = self.run_bzr("log -r revno:1:branch2..revno:3:branch2")[0]
2466.11.2 by Kent Gibson
Add tests for deltas in merge revisions
135
        self.assertEqualDiff(self.full_log, log)
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
136
        log = self.run_bzr("log -r revno:1:branch2")[0]
1907.4.2 by Matthieu Moy
Make log work nicely with revno:N:path too.
137
        self.assertTrue('revno: 1\n' in log)
138
        self.assertTrue('revno: 2\n' not in log)
139
        self.assertTrue('branch nick: branch2\n' in log)
140
        self.assertTrue('branch nick: branch1\n' not in log)
3734.1.1 by Vincent Ladeuil
Fix bug #248427 by adding a --change option to log.
141
3878.3.3 by Marius Kruger
Add tests for log -r with non-exising revno's
142
    def test_log_nonexistent_revno(self):
143
        self._prepare()
144
        (out, err) = self.run_bzr_error(args="log -r 1234",
145
            error_regexes=["bzr: ERROR: Requested revision: '1234' "
146
                "does not exist in branch:"])
147
148
    def test_log_nonexistent_dotted_revno(self):
149
        self._prepare()
150
        (out, err) = self.run_bzr_error(args="log -r 123.123",
151
            error_regexes=["bzr: ERROR: Requested revision: '123.123' "
152
                "does not exist in branch:"])
153
3734.1.1 by Vincent Ladeuil
Fix bug #248427 by adding a --change option to log.
154
    def test_log_change_revno(self):
155
        self._prepare()
156
        expected_log = self.run_bzr("log -r 1")[0]
157
        log = self.run_bzr("log -c 1")[0]
158
        self.assertEqualDiff(expected_log, log)
159
3878.3.2 by Marius Kruger
Add tests for log -c with non-exising revno's
160
    def test_log_change_nonexistent_revno(self):
161
        self._prepare()
162
        (out, err) = self.run_bzr_error(args="log -c 1234",
163
            error_regexes=["bzr: ERROR: Requested revision: '1234' "
164
                "does not exist in branch:"])
165
166
    def test_log_change_nonexistent_dotted_revno(self):
167
        self._prepare()
168
        (out, err) = self.run_bzr_error(args="log -c 123.123",
169
            error_regexes=["bzr: ERROR: Requested revision: '123.123' "
170
                "does not exist in branch:"])
171
3734.1.1 by Vincent Ladeuil
Fix bug #248427 by adding a --change option to log.
172
    def test_log_change_single_revno(self):
173
        self._prepare()
174
        self.run_bzr_error('bzr: ERROR: Option --change does not'
175
                           ' accept revision ranges',
176
                           ['log', '--change', '2..3'])
177
178
    def test_log_change_incompatible_with_revision(self):
179
        self._prepare()
180
        self.run_bzr_error('bzr: ERROR: --revision and --change'
181
                           ' are mutually exclusive',
182
                           ['log', '--change', '2', '--revision', '3'])
183
2100.1.1 by wang
Running ``bzr log`` on nonexistent file gives an error instead of the
184
    def test_log_nonexistent_file(self):
185
        # files that don't exist in either the basis tree or working tree
186
        # should give an error
187
        wt = self.make_branch_and_tree('.')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
188
        out, err = self.run_bzr('log does-not-exist', retcode=3)
2100.1.1 by wang
Running ``bzr log`` on nonexistent file gives an error instead of the
189
        self.assertContainsRe(
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
190
            err, 'Path unknown at end or start of revision range: does-not-exist')
2388.1.11 by Alexander Belchenko
changes after John's review
191
2388.1.3 by Erik Bagfors
tests for tags in log output
192
    def test_log_with_tags(self):
2664.14.1 by Daniel Watkins
Fixed tests.blackbox.test_log to use internals where appropriate.
193
        tree = self._prepare(format='dirstate-tags')
194
        branch = tree.branch
195
        branch.tags.set_tag('tag1', branch.get_rev_id(1))
196
        branch.tags.set_tag('tag1.1', branch.get_rev_id(1))
3842.2.5 by Vincent Ladeuil
Better fix for bug #300055.
197
        branch.tags.set_tag('tag3', branch.last_revision())
198
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
199
        log = self.run_bzr("log -r-1")[0]
2388.1.3 by Erik Bagfors
tests for tags in log output
200
        self.assertTrue('tags: tag3' in log)
201
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
202
        log = self.run_bzr("log -r1")[0]
2388.1.3 by Erik Bagfors
tests for tags in log output
203
        # I guess that we can't know the order of tags in the output
204
        # since dicts are unordered, need to check both possibilities
2388.1.11 by Alexander Belchenko
changes after John's review
205
        self.assertContainsRe(log, r'tags: (tag1, tag1\.1|tag1\.1, tag1)')
206
2388.1.9 by Erik Bagfors
test for merges with tags in log
207
    def test_merged_log_with_tags(self):
2664.14.1 by Daniel Watkins
Fixed tests.blackbox.test_log to use internals where appropriate.
208
        branch1_tree = self._prepare(path='branch1', format='dirstate-tags')
209
        branch1 = branch1_tree.branch
210
        branch2_tree = branch1_tree.bzrdir.sprout('branch2').open_workingtree()
211
        branch1_tree.commit(message='foobar', allow_pointless=True)
212
        branch1.tags.set_tag('tag1', branch1.last_revision())
213
        os.chdir('branch2')
214
        self.run_bzr('merge ../branch1') # tags don't propagate otherwise
215
        branch2_tree.commit(message='merge branch 1')
4206.1.1 by Ian Clatworthy
log mainline by default
216
        log = self.run_bzr("log -n0 -r-1")[0]
2388.1.11 by Alexander Belchenko
changes after John's review
217
        self.assertContainsRe(log, r'    tags: tag1')
4206.1.1 by Ian Clatworthy
log mainline by default
218
        log = self.run_bzr("log -n0 -r3.1.1")[0]
2466.12.2 by Kent Gibson
shift log output with only merge revisions to the left margin
219
        self.assertContainsRe(log, r'tags: tag1')
2388.1.3 by Erik Bagfors
tests for tags in log output
220
2466.9.1 by Kent Gibson
add bzr log --limit
221
    def test_log_limit(self):
3660.1.1 by Robert Collins
Fix log --limit (broken by log filtering patch).
222
        tree = self.make_branch_and_tree('.')
223
        # We want more commits than our batch size starts at
224
        for pos in range(10):
225
            tree.commit("%s" % pos)
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
226
        log = self.run_bzr("log --limit 2")[0]
3108.1.3 by Matt Nordhoff
Use assertContainsRe/assertNotContainsRe in tests.
227
        self.assertNotContainsRe(log, r'revno: 1\n')
3660.1.1 by Robert Collins
Fix log --limit (broken by log filtering patch).
228
        self.assertNotContainsRe(log, r'revno: 2\n')
229
        self.assertNotContainsRe(log, r'revno: 3\n')
230
        self.assertNotContainsRe(log, r'revno: 4\n')
231
        self.assertNotContainsRe(log, r'revno: 5\n')
232
        self.assertNotContainsRe(log, r'revno: 6\n')
233
        self.assertNotContainsRe(log, r'revno: 7\n')
234
        self.assertNotContainsRe(log, r'revno: 8\n')
235
        self.assertContainsRe(log, r'revno: 9\n')
236
        self.assertContainsRe(log, r'revno: 10\n')
2466.9.1 by Kent Gibson
add bzr log --limit
237
3108.1.2 by Matt Nordhoff
Simple copied unit test.
238
    def test_log_limit_short(self):
239
        self._prepare()
240
        log = self.run_bzr("log -l 2")[0]
3108.1.3 by Matt Nordhoff
Use assertContainsRe/assertNotContainsRe in tests.
241
        self.assertNotContainsRe(log, r'revno: 1\n')
242
        self.assertContainsRe(log, r'revno: 2\n')
243
        self.assertContainsRe(log, r'revno: 3\n')
3144.7.9 by Guillermo Gonzalez
* bzrlib.log.show_roperties don't hide handler errors
244
4183.6.2 by Martin Pool
Add better message and test for 251352
245
    def test_log_bad_message_re(self):
246
        """Bad --message argument gives a sensible message
247
        
248
        See https://bugs.launchpad.net/bzr/+bug/251352
249
        """
250
        self._prepare()
251
        out, err = self.run_bzr(['log', '-m', '*'], retcode=3)
4183.6.4 by Martin Pool
Separate out re_compile_checked
252
        self.assertEqual("bzr: ERROR: Invalid regular expression"
253
            " in log message filter"
254
            ": '*'"
255
            ": nothing to repeat\n", err)
4183.6.2 by Martin Pool
Add better message and test for 251352
256
        self.assertEqual('', out)
3874.1.8 by Vincent Ladeuil
Fixed as ber Robert's review.
257
4202.2.1 by Ian Clatworthy
get directory logging working again
258
3874.1.8 by Vincent Ladeuil
Fixed as ber Robert's review.
259
class TestLogVerbose(TestCaseWithTransport):
260
261
    def setUp(self):
262
        super(TestLogVerbose, self).setUp()
263
        tree = self.make_branch_and_tree('.')
264
        self.build_tree(['hello.txt'])
265
        tree.add('hello.txt')
266
        tree.commit(message='message1')
267
268
    def assertUseShortDeltaFormat(self, cmd):
269
        log = self.run_bzr(cmd)[0]
270
        # Check that we use the short status format
3947.1.7 by Ian Clatworthy
tweak indenting/offsetting for --short given dotted revno lengths
271
        self.assertContainsRe(log, '(?m)^\s*A  hello.txt$')
272
        self.assertNotContainsRe(log, '(?m)^\s*added:$')
3874.1.4 by Vincent Ladeuil
Fixed as per Aarons' comment.
273
3874.1.8 by Vincent Ladeuil
Fixed as ber Robert's review.
274
    def assertUseLongDeltaFormat(self, cmd):
275
        log = self.run_bzr(cmd)[0]
276
        # Check that we use the long status format
3947.1.7 by Ian Clatworthy
tweak indenting/offsetting for --short given dotted revno lengths
277
        self.assertNotContainsRe(log, '(?m)^\s*A  hello.txt$')
278
        self.assertContainsRe(log, '(?m)^\s*added:$')
3874.1.8 by Vincent Ladeuil
Fixed as ber Robert's review.
279
280
    def test_log_short_verbose(self):
281
        self.assertUseShortDeltaFormat(['log', '--short', '-v'])
282
3874.1.4 by Vincent Ladeuil
Fixed as per Aarons' comment.
283
    def test_log_short_verbose_verbose(self):
3874.1.8 by Vincent Ladeuil
Fixed as ber Robert's review.
284
        self.assertUseLongDeltaFormat(['log', '--short', '-vv'])
3874.1.4 by Vincent Ladeuil
Fixed as per Aarons' comment.
285
286
    def test_log_long_verbose(self):
3874.1.7 by Vincent Ladeuil
Restrict '-v' change to log --short only.
287
        # Check that we use the long status format, ignoring the verbosity
288
        # level
3874.1.8 by Vincent Ladeuil
Fixed as ber Robert's review.
289
        self.assertUseLongDeltaFormat(['log', '--long', '-v'])
3874.1.4 by Vincent Ladeuil
Fixed as per Aarons' comment.
290
291
    def test_log_long_verbose_verbose(self):
3874.1.7 by Vincent Ladeuil
Restrict '-v' change to log --short only.
292
        # Check that we use the long status format, ignoring the verbosity
293
        # level
3874.1.8 by Vincent Ladeuil
Fixed as ber Robert's review.
294
        self.assertUseLongDeltaFormat(['log', '--long', '-vv'])
3874.1.1 by Vincent Ladeuil
Fix #87179 by using the short status format when the short format is used for log.
295
3144.7.9 by Guillermo Gonzalez
* bzrlib.log.show_roperties don't hide handler errors
296
297
class TestLogMerges(TestCaseWithoutPropsHandler):
1624.1.3 by Robert Collins
Convert log to use the new tsort.merge_sort routine.
298
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
299
    def _prepare(self):
2664.14.1 by Daniel Watkins
Fixed tests.blackbox.test_log to use internals where appropriate.
300
        parent_tree = self.make_branch_and_tree('parent')
301
        parent_tree.commit(message='first post', allow_pointless=True)
302
        child_tree = parent_tree.bzrdir.sprout('child').open_workingtree()
303
        child_tree.commit(message='branch 1', allow_pointless=True)
304
        smaller_tree = \
305
                child_tree.bzrdir.sprout('smallerchild').open_workingtree()
306
        smaller_tree.commit(message='branch 2', allow_pointless=True)
307
        child_tree.merge_from_branch(smaller_tree.branch)
308
        child_tree.commit(message='merge branch 2')
309
        parent_tree.merge_from_branch(child_tree.branch)
310
        parent_tree.commit(message='merge branch 1')
311
        os.chdir('parent')
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
312
3947.1.3 by Ian Clatworthy
blackbox tests
313
    def _prepare_short(self):
314
        parent_tree = self.make_branch_and_tree('parent')
315
        parent_tree.commit(message='first post',
316
            timestamp=1132586700, timezone=36000,
317
            committer='Joe Foo <joe@foo.com>')
318
        child_tree = parent_tree.bzrdir.sprout('child').open_workingtree()
319
        child_tree.commit(message='branch 1',
320
            timestamp=1132586800, timezone=36000,
321
            committer='Joe Foo <joe@foo.com>')
322
        smaller_tree = \
323
                child_tree.bzrdir.sprout('smallerchild').open_workingtree()
324
        smaller_tree.commit(message='branch 2',
325
            timestamp=1132586900, timezone=36000,
326
            committer='Joe Foo <joe@foo.com>')
327
        child_tree.merge_from_branch(smaller_tree.branch)
328
        child_tree.commit(message='merge branch 2',
329
            timestamp=1132587000, timezone=36000,
330
            committer='Joe Foo <joe@foo.com>')
331
        parent_tree.merge_from_branch(child_tree.branch)
332
        parent_tree.commit(message='merge branch 1',
333
            timestamp=1132587100, timezone=36000,
334
            committer='Joe Foo <joe@foo.com>')
335
        os.chdir('parent')
336
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
337
    def test_merges_are_indented_by_level(self):
338
        self._prepare()
4206.1.1 by Ian Clatworthy
log mainline by default
339
        out,err = self.run_bzr('log -n0')
1624.1.3 by Robert Collins
Convert log to use the new tsort.merge_sort routine.
340
        self.assertEqual('', err)
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
341
        log = normalize_log(out)
342
        self.assertEqualDiff(log, """\
343
------------------------------------------------------------
4208.2.1 by Ian Clatworthy
merge indicators in log --long
344
revno: 2 [merge]
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
345
committer: Lorem Ipsum <test@example.com>
346
branch nick: parent
347
timestamp: Just now
348
message:
349
  merge branch 1
350
    ------------------------------------------------------------
4208.2.1 by Ian Clatworthy
merge indicators in log --long
351
    revno: 1.1.2 [merge]
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
352
    committer: Lorem Ipsum <test@example.com>
353
    branch nick: child
354
    timestamp: Just now
355
    message:
356
      merge branch 2
357
        ------------------------------------------------------------
3170.3.4 by John Arbash Meinel
Update the tests for the new revision numbering.
358
        revno: 1.2.1
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
359
        committer: Lorem Ipsum <test@example.com>
360
        branch nick: smallerchild
361
        timestamp: Just now
362
        message:
363
          branch 2
364
    ------------------------------------------------------------
365
    revno: 1.1.1
366
    committer: Lorem Ipsum <test@example.com>
367
    branch nick: child
368
    timestamp: Just now
369
    message:
370
      branch 1
371
------------------------------------------------------------
372
revno: 1
373
committer: Lorem Ipsum <test@example.com>
374
branch nick: parent
375
timestamp: Just now
376
message:
377
  first post
378
""")
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
379
3947.1.3 by Ian Clatworthy
blackbox tests
380
    def test_force_merge_revisions_off(self):
381
        self._prepare()
3947.1.6 by Ian Clatworthy
log -n/--level-count N option
382
        out,err = self.run_bzr('log --long -n1')
3947.1.3 by Ian Clatworthy
blackbox tests
383
        self.assertEqual('', err)
384
        log = normalize_log(out)
385
        self.assertEqualDiff(log, """\
386
------------------------------------------------------------
4208.2.1 by Ian Clatworthy
merge indicators in log --long
387
revno: 2 [merge]
3947.1.3 by Ian Clatworthy
blackbox tests
388
committer: Lorem Ipsum <test@example.com>
389
branch nick: parent
390
timestamp: Just now
391
message:
392
  merge branch 1
393
------------------------------------------------------------
394
revno: 1
395
committer: Lorem Ipsum <test@example.com>
396
branch nick: parent
397
timestamp: Just now
398
message:
399
  first post
400
""")
401
402
    def test_force_merge_revisions_on(self):
403
        self._prepare_short()
3947.1.6 by Ian Clatworthy
log -n/--level-count N option
404
        out,err = self.run_bzr('log --short -n0')
3947.1.3 by Ian Clatworthy
blackbox tests
405
        self.assertEqual('', err)
406
        log = normalize_log(out)
407
        self.assertEqualDiff(log, """\
408
    2 Joe Foo\t2005-11-22 [merge]
409
      merge branch 1
410
3947.1.10 by Ian Clatworthy
review feedback from vila
411
          1.1.2 Joe Foo\t2005-11-22 [merge]
412
                merge branch 2
413
414
              1.2.1 Joe Foo\t2005-11-22
415
                    branch 2
416
417
          1.1.1 Joe Foo\t2005-11-22
418
                branch 1
3947.1.7 by Ian Clatworthy
tweak indenting/offsetting for --short given dotted revno lengths
419
420
    1 Joe Foo\t2005-11-22
421
      first post
422
423
""")
424
4221.2.1 by Ian Clatworthy
--include-merges as an alias for --levels 0 in log
425
    def test_include_merges(self):
426
        # Confirm --include-merges gives the same output as -n0
427
        self._prepare_short()
428
        out_im, err_im = self.run_bzr('log --include-merges')
429
        out_n0, err_n0 = self.run_bzr('log -n0')
430
        self.assertEqual(err_im, err_n0)
431
        self.assertEqual(out_im, out_n0)
432
3947.1.7 by Ian Clatworthy
tweak indenting/offsetting for --short given dotted revno lengths
433
    def test_force_merge_revisions_N(self):
434
        self._prepare_short()
435
        out,err = self.run_bzr('log --short -n2')
436
        self.assertEqual('', err)
437
        log = normalize_log(out)
438
        self.assertEqualDiff(log, """\
439
    2 Joe Foo\t2005-11-22 [merge]
440
      merge branch 1
441
3947.1.10 by Ian Clatworthy
review feedback from vila
442
          1.1.2 Joe Foo\t2005-11-22 [merge]
443
                merge branch 2
3947.1.7 by Ian Clatworthy
tweak indenting/offsetting for --short given dotted revno lengths
444
3947.1.10 by Ian Clatworthy
review feedback from vila
445
          1.1.1 Joe Foo\t2005-11-22
446
                branch 1
3947.1.3 by Ian Clatworthy
blackbox tests
447
448
    1 Joe Foo\t2005-11-22
449
      first post
450
451
""")
452
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
453
    def test_merges_single_merge_rev(self):
454
        self._prepare()
4206.1.1 by Ian Clatworthy
log mainline by default
455
        out,err = self.run_bzr('log -n0 -r1.1.2')
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
456
        self.assertEqual('', err)
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
457
        log = normalize_log(out)
458
        self.assertEqualDiff(log, """\
459
------------------------------------------------------------
4208.2.1 by Ian Clatworthy
merge indicators in log --long
460
revno: 1.1.2 [merge]
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
461
committer: Lorem Ipsum <test@example.com>
462
branch nick: child
463
timestamp: Just now
464
message:
465
  merge branch 2
466
    ------------------------------------------------------------
3170.3.4 by John Arbash Meinel
Update the tests for the new revision numbering.
467
    revno: 1.2.1
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
468
    committer: Lorem Ipsum <test@example.com>
469
    branch nick: smallerchild
470
    timestamp: Just now
471
    message:
472
      branch 2
473
""")
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
474
475
    def test_merges_partial_range(self):
476
        self._prepare()
4206.1.1 by Ian Clatworthy
log mainline by default
477
        out, err = self.run_bzr('log -n0 -r1.1.1..1.1.2')
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
478
        self.assertEqual('', err)
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
479
        log = normalize_log(out)
480
        self.assertEqualDiff(log, """\
481
------------------------------------------------------------
4208.2.1 by Ian Clatworthy
merge indicators in log --long
482
revno: 1.1.2 [merge]
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
483
committer: Lorem Ipsum <test@example.com>
484
branch nick: child
485
timestamp: Just now
486
message:
487
  merge branch 2
488
    ------------------------------------------------------------
3170.3.4 by John Arbash Meinel
Update the tests for the new revision numbering.
489
    revno: 1.2.1
2978.6.1 by Kent Gibson
Use normalize_log to more accurately test blackbox log output.
490
    committer: Lorem Ipsum <test@example.com>
491
    branch nick: smallerchild
492
    timestamp: Just now
493
    message:
494
      branch 2
495
------------------------------------------------------------
496
revno: 1.1.1
497
committer: Lorem Ipsum <test@example.com>
498
branch nick: child
499
timestamp: Just now
500
message:
501
  branch 1
502
""")
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
503
3842.2.5 by Vincent Ladeuil
Better fix for bug #300055.
504
3943.5.3 by Ian Clatworthy
add tests
505
def subst_dates(string):
506
    """Replace date strings with constant values."""
507
    return re.sub(r'\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2} [-\+]\d{4}',
508
                  'YYYY-MM-DD HH:MM:SS +ZZZZ', string)
509
510
511
class TestLogDiff(TestCaseWithoutPropsHandler):
512
513
    def _prepare(self):
514
        parent_tree = self.make_branch_and_tree('parent')
515
        self.build_tree(['parent/file1', 'parent/file2'])
516
        parent_tree.add('file1')
517
        parent_tree.add('file2')
518
        parent_tree.commit(message='first post',
519
            timestamp=1132586655, timezone=36000,
520
            committer='Lorem Ipsum <test@example.com>')
521
        child_tree = parent_tree.bzrdir.sprout('child').open_workingtree()
522
        self.build_tree_contents([('child/file2', 'hello\n')])
523
        child_tree.commit(message='branch 1',
524
            timestamp=1132586700, timezone=36000,
525
            committer='Lorem Ipsum <test@example.com>')
526
        parent_tree.merge_from_branch(child_tree.branch)
527
        parent_tree.commit(message='merge branch 1',
528
            timestamp=1132586800, timezone=36000,
529
            committer='Lorem Ipsum <test@example.com>')
530
        os.chdir('parent')
531
4206.1.1 by Ian Clatworthy
log mainline by default
532
    def test_log_show_diff_long_with_merges(self):
3943.5.3 by Ian Clatworthy
add tests
533
        self._prepare()
4206.1.1 by Ian Clatworthy
log mainline by default
534
        out,err = self.run_bzr('log -p -n0')
3943.5.3 by Ian Clatworthy
add tests
535
        self.assertEqual('', err)
536
        log = normalize_log(out)
537
        self.assertEqualDiff(subst_dates(log), """\
538
------------------------------------------------------------
4208.2.1 by Ian Clatworthy
merge indicators in log --long
539
revno: 2 [merge]
3943.5.3 by Ian Clatworthy
add tests
540
committer: Lorem Ipsum <test@example.com>
541
branch nick: parent
542
timestamp: Just now
543
message:
544
  merge branch 1
545
diff:
3943.5.6 by Ian Clatworthy
feedback from jam's review
546
=== modified file 'file2'
547
--- file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
548
+++ file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
549
@@ -1,1 +1,1 @@
550
-contents of parent/file2
551
+hello
3943.5.3 by Ian Clatworthy
add tests
552
    ------------------------------------------------------------
553
    revno: 1.1.1
554
    committer: Lorem Ipsum <test@example.com>
555
    branch nick: child
556
    timestamp: Just now
557
    message:
558
      branch 1
559
    diff:
3943.5.6 by Ian Clatworthy
feedback from jam's review
560
    === modified file 'file2'
561
    --- file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
562
    +++ file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
563
    @@ -1,1 +1,1 @@
564
    -contents of parent/file2
565
    +hello
3943.5.3 by Ian Clatworthy
add tests
566
------------------------------------------------------------
567
revno: 1
568
committer: Lorem Ipsum <test@example.com>
569
branch nick: parent
570
timestamp: Just now
571
message:
572
  first post
573
diff:
3943.5.6 by Ian Clatworthy
feedback from jam's review
574
=== added file 'file1'
575
--- file1\tYYYY-MM-DD HH:MM:SS +ZZZZ
576
+++ file1\tYYYY-MM-DD HH:MM:SS +ZZZZ
577
@@ -0,0 +1,1 @@
578
+contents of parent/file1
579
580
=== added file 'file2'
581
--- file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
582
+++ file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
583
@@ -0,0 +1,1 @@
584
+contents of parent/file2
3943.5.3 by Ian Clatworthy
add tests
585
""")
586
587
    def test_log_show_diff_short(self):
588
        self._prepare()
3943.5.5 by Ian Clatworthy
tweak option name as requested in bug report
589
        out,err = self.run_bzr('log -p --short')
3943.5.3 by Ian Clatworthy
add tests
590
        self.assertEqual('', err)
591
        log = normalize_log(out)
592
        self.assertEqualDiff(subst_dates(log), """\
593
    2 Lorem Ipsum\t2005-11-22 [merge]
594
      merge branch 1
595
      === modified file 'file2'
596
      --- file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
597
      +++ file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
598
      @@ -1,1 +1,1 @@
599
      -contents of parent/file2
600
      +hello
601
602
    1 Lorem Ipsum\t2005-11-22
603
      first post
604
      === added file 'file1'
605
      --- file1\tYYYY-MM-DD HH:MM:SS +ZZZZ
606
      +++ file1\tYYYY-MM-DD HH:MM:SS +ZZZZ
607
      @@ -0,0 +1,1 @@
608
      +contents of parent/file1
4032.1.2 by John Arbash Meinel
Track down a few more files that have trailing whitespace.
609
\x20\x20\x20\x20\x20\x20
3943.5.3 by Ian Clatworthy
add tests
610
      === added file 'file2'
611
      --- file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
612
      +++ file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
613
      @@ -0,0 +1,1 @@
614
      +contents of parent/file2
615
4221.2.1 by Ian Clatworthy
--include-merges as an alias for --levels 0 in log
616
Use --include-merges or -n0 to see merged revisions.
3943.5.3 by Ian Clatworthy
add tests
617
""")
618
619
    def test_log_show_diff_line(self):
620
        self._prepare()
3943.5.5 by Ian Clatworthy
tweak option name as requested in bug report
621
        out,err = self.run_bzr('log -p --line')
3943.5.3 by Ian Clatworthy
add tests
622
        self.assertEqual('', err)
623
        log = normalize_log(out)
624
        # Not supported by this formatter so expect plain output
625
        self.assertEqualDiff(subst_dates(log), """\
3983.2.1 by Neil Martinsen-Burrell
add merge indication to the line format
626
2: Lorem Ipsum 2005-11-22 [merge] merge branch 1
3943.5.3 by Ian Clatworthy
add tests
627
1: Lorem Ipsum 2005-11-22 first post
628
""")
629
3943.5.4 by Ian Clatworthy
filter diff by file
630
    def test_log_show_diff_file(self):
631
        """Only the diffs for the given file are to be shown"""
632
        self._prepare()
3943.5.5 by Ian Clatworthy
tweak option name as requested in bug report
633
        out,err = self.run_bzr('log -p --short file2')
3943.5.4 by Ian Clatworthy
filter diff by file
634
        self.assertEqual('', err)
635
        log = normalize_log(out)
636
        self.assertEqualDiff(subst_dates(log), """\
637
    2 Lorem Ipsum\t2005-11-22 [merge]
638
      merge branch 1
639
      === modified file 'file2'
640
      --- file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
641
      +++ file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
642
      @@ -1,1 +1,1 @@
643
      -contents of parent/file2
644
      +hello
645
646
    1 Lorem Ipsum\t2005-11-22
647
      first post
648
      === added file 'file2'
649
      --- file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
650
      +++ file2\tYYYY-MM-DD HH:MM:SS +ZZZZ
651
      @@ -0,0 +1,1 @@
652
      +contents of parent/file2
653
4221.2.1 by Ian Clatworthy
--include-merges as an alias for --levels 0 in log
654
Use --include-merges or -n0 to see merged revisions.
3943.5.4 by Ian Clatworthy
filter diff by file
655
""")
3943.5.5 by Ian Clatworthy
tweak option name as requested in bug report
656
        out,err = self.run_bzr('log -p --short file1')
3943.5.4 by Ian Clatworthy
filter diff by file
657
        self.assertEqual('', err)
658
        log = normalize_log(out)
659
        self.assertEqualDiff(subst_dates(log), """\
660
    1 Lorem Ipsum\t2005-11-22
661
      first post
662
      === added file 'file1'
663
      --- file1\tYYYY-MM-DD HH:MM:SS +ZZZZ
664
      +++ file1\tYYYY-MM-DD HH:MM:SS +ZZZZ
665
      @@ -0,0 +1,1 @@
666
      +contents of parent/file1
667
668
""")
669
4110.1.1 by Alexander Belchenko
Fixed problem with `log -p` and non-ascii content of files: show_diff should write the diff to exact [stdout] stream.
670
    def test_log_show_diff_non_ascii(self):
671
        # Smoke test for bug #328007 UnicodeDecodeError on 'log -p'
672
        message = u'Message with \xb5'
673
        body = 'Body with \xb5\n'
674
        wt = self.make_branch_and_tree('.')
675
        self.build_tree_contents([('foo', body)])
676
        wt.add('foo')
677
        wt.commit(message=message)
678
        # check that command won't fail with unicode error
679
        # don't care about exact output because we have other tests for this
680
        out,err = self.run_bzr('log -p --long')
681
        self.assertNotEqual('', out)
682
        self.assertEqual('', err)
683
        out,err = self.run_bzr('log -p --short')
684
        self.assertNotEqual('', out)
685
        self.assertEqual('', err)
686
        out,err = self.run_bzr('log -p --line')
687
        self.assertNotEqual('', out)
688
        self.assertEqual('', err)
689
3943.5.3 by Ian Clatworthy
add tests
690
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
691
class TestLogEncodings(TestCaseInTempDir):
692
693
    _mu = u'\xb5'
694
    _message = u'Message with \xb5'
695
696
    # Encodings which can encode mu
697
    good_encodings = [
698
        'utf-8',
699
        'latin-1',
700
        'iso-8859-1',
701
        'cp437', # Common windows encoding
4110.1.1 by Alexander Belchenko
Fixed problem with `log -p` and non-ascii content of files: show_diff should write the diff to exact [stdout] stream.
702
        'cp1251', # Russian windows encoding
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
703
        'cp1258', # Common windows encoding
704
    ]
705
    # Encodings which cannot encode mu
706
    bad_encodings = [
707
        'ascii',
708
        'iso-8859-2',
709
        'koi8_r',
710
    ]
711
712
    def setUp(self):
713
        TestCaseInTempDir.setUp(self)
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
714
        self.user_encoding = osutils._cached_user_encoding
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
715
716
    def tearDown(self):
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
717
        osutils._cached_user_encoding = self.user_encoding
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
718
        TestCaseInTempDir.tearDown(self)
719
720
    def create_branch(self):
721
        bzr = self.run_bzr
722
        bzr('init')
723
        open('a', 'wb').write('some stuff\n')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
724
        bzr('add a')
725
        bzr(['commit', '-m', self._message])
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
726
727
    def try_encoding(self, encoding, fail=False):
728
        bzr = self.run_bzr
729
        if fail:
730
            self.assertRaises(UnicodeEncodeError,
731
                self._mu.encode, encoding)
732
            encoded_msg = self._message.encode(encoding, 'replace')
733
        else:
734
            encoded_msg = self._message.encode(encoding)
735
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
736
        old_encoding = osutils._cached_user_encoding
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
737
        # This test requires that 'run_bzr' uses the current
738
        # bzrlib, because we override user_encoding, and expect
739
        # it to be used
740
        try:
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
741
            osutils._cached_user_encoding = 'ascii'
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
742
            # We should be able to handle any encoding
743
            out, err = bzr('log', encoding=encoding)
744
            if not fail:
745
                # Make sure we wrote mu as we expected it to exist
746
                self.assertNotEqual(-1, out.find(encoded_msg))
747
                out_unicode = out.decode(encoding)
748
                self.assertNotEqual(-1, out_unicode.find(self._message))
749
            else:
750
                self.assertNotEqual(-1, out.find('Message with ?'))
751
        finally:
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
752
            osutils._cached_user_encoding = old_encoding
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
753
754
    def test_log_handles_encoding(self):
755
        self.create_branch()
756
757
        for encoding in self.good_encodings:
758
            self.try_encoding(encoding)
759
760
    def test_log_handles_bad_encoding(self):
761
        self.create_branch()
762
763
        for encoding in self.bad_encodings:
764
            self.try_encoding(encoding, fail=True)
765
766
    def test_stdout_encoding(self):
767
        bzr = self.run_bzr
3224.5.4 by Andrew Bennetts
Fix test suite, mainly weeding out uses of bzrlib.user_encoding.
768
        osutils._cached_user_encoding = "cp1251"
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
769
770
        bzr('init')
771
        self.build_tree(['a'])
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
772
        bzr('add a')
773
        bzr(['commit', '-m', u'\u0422\u0435\u0441\u0442'])
1685.1.5 by John Arbash Meinel
Merged test_log.py.moved into test_log.py
774
        stdout, stderr = self.run_bzr('log', encoding='cp866')
775
776
        message = stdout.splitlines()[-1]
777
778
        # explanation of the check:
779
        # u'\u0422\u0435\u0441\u0442' is word 'Test' in russian
780
        # in cp866  encoding this is string '\x92\xa5\xe1\xe2'
781
        # in cp1251 encoding this is string '\xd2\xe5\xf1\xf2'
782
        # This test should check that output of log command
783
        # encoded to sys.stdout.encoding
784
        test_in_cp866 = '\x92\xa5\xe1\xe2'
785
        test_in_cp1251 = '\xd2\xe5\xf1\xf2'
786
        # Make sure the log string is encoded in cp866
787
        self.assertEquals(test_in_cp866, message[2:])
788
        # Make sure the cp1251 string is not found anywhere
789
        self.assertEquals(-1, stdout.find(test_in_cp1251))
790
1551.10.18 by Aaron Bentley
Log works in local treeless branches (#84247)
791
792
class TestLogFile(TestCaseWithTransport):
793
794
    def test_log_local_branch_file(self):
795
        """We should be able to log files in local treeless branches"""
796
        tree = self.make_branch_and_tree('tree')
797
        self.build_tree(['tree/file'])
798
        tree.add('file')
799
        tree.commit('revision 1')
800
        tree.bzrdir.destroy_workingtree()
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
801
        self.run_bzr('log tree/file')
2359.1.1 by Kent Gibson
Fix ``bzr log <file>`` so it only logs the revisions that changed the file, and does it faster.
802
3943.6.1 by Ian Clatworthy
find file using the end revision
803
    def prepare_tree(self, complex=False):
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
804
        # The complex configuration includes deletes and renames
2359.1.1 by Kent Gibson
Fix ``bzr log <file>`` so it only logs the revisions that changed the file, and does it faster.
805
        tree = self.make_branch_and_tree('parent')
806
        self.build_tree(['parent/file1', 'parent/file2', 'parent/file3'])
807
        tree.add('file1')
808
        tree.commit('add file1')
809
        tree.add('file2')
810
        tree.commit('add file2')
811
        tree.add('file3')
812
        tree.commit('add file3')
2664.14.1 by Daniel Watkins
Fixed tests.blackbox.test_log to use internals where appropriate.
813
        child_tree = tree.bzrdir.sprout('child').open_workingtree()
814
        self.build_tree_contents([('child/file2', 'hello')])
815
        child_tree.commit(message='branch 1')
816
        tree.merge_from_branch(child_tree.branch)
817
        tree.commit(message='merge child branch')
3943.6.1 by Ian Clatworthy
find file using the end revision
818
        if complex:
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
819
            tree.remove('file2')
820
            tree.commit('remove file2')
821
            tree.rename_one('file3', 'file4')
822
            tree.commit('file3 is now called file4')
3943.6.1 by Ian Clatworthy
find file using the end revision
823
            tree.remove('file1')
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
824
            tree.commit('remove file1')
2359.1.1 by Kent Gibson
Fix ``bzr log <file>`` so it only logs the revisions that changed the file, and does it faster.
825
        os.chdir('parent')
3940.1.2 by Ian Clatworthy
add test
826
827
    def test_log_file(self):
828
        """The log for a particular file should only list revs for that file"""
829
        self.prepare_tree()
4206.1.1 by Ian Clatworthy
log mainline by default
830
        log = self.run_bzr('log -n0 file1')[0]
2359.1.1 by Kent Gibson
Fix ``bzr log <file>`` so it only logs the revisions that changed the file, and does it faster.
831
        self.assertContainsRe(log, 'revno: 1\n')
832
        self.assertNotContainsRe(log, 'revno: 2\n')
833
        self.assertNotContainsRe(log, 'revno: 3\n')
834
        self.assertNotContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
835
        self.assertNotContainsRe(log, 'revno: 4 ')
4206.1.1 by Ian Clatworthy
log mainline by default
836
        log = self.run_bzr('log -n0 file2')[0]
2359.1.1 by Kent Gibson
Fix ``bzr log <file>`` so it only logs the revisions that changed the file, and does it faster.
837
        self.assertNotContainsRe(log, 'revno: 1\n')
838
        self.assertContainsRe(log, 'revno: 2\n')
839
        self.assertNotContainsRe(log, 'revno: 3\n')
840
        self.assertContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
841
        self.assertContainsRe(log, 'revno: 4 ')
4206.1.1 by Ian Clatworthy
log mainline by default
842
        log = self.run_bzr('log -n0 file3')[0]
2359.1.1 by Kent Gibson
Fix ``bzr log <file>`` so it only logs the revisions that changed the file, and does it faster.
843
        self.assertNotContainsRe(log, 'revno: 1\n')
844
        self.assertNotContainsRe(log, 'revno: 2\n')
845
        self.assertContainsRe(log, 'revno: 3\n')
846
        self.assertNotContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
847
        self.assertNotContainsRe(log, 'revno: 4 ')
4206.1.1 by Ian Clatworthy
log mainline by default
848
        log = self.run_bzr('log -n0 -r3.1.1 file2')[0]
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
849
        self.assertNotContainsRe(log, 'revno: 1\n')
850
        self.assertNotContainsRe(log, 'revno: 2\n')
851
        self.assertNotContainsRe(log, 'revno: 3\n')
852
        self.assertContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
853
        self.assertNotContainsRe(log, 'revno: 4 ')
4206.1.1 by Ian Clatworthy
log mainline by default
854
        log = self.run_bzr('log -n0 -r4 file2')[0]
855
        self.assertNotContainsRe(log, 'revno: 1\n')
856
        self.assertNotContainsRe(log, 'revno: 2\n')
857
        self.assertNotContainsRe(log, 'revno: 3\n')
858
        self.assertContainsRe(log, 'revno: 3.1.1\n')
4214.1.1 by Ian Clatworthy
log mainline only by default (Ian Clatworthy)
859
        self.assertContainsRe(log, 'revno: 4 ')
4206.1.1 by Ian Clatworthy
log mainline by default
860
        log = self.run_bzr('log -n0 -r3.. file2')[0]
861
        self.assertNotContainsRe(log, 'revno: 1\n')
862
        self.assertNotContainsRe(log, 'revno: 2\n')
863
        self.assertNotContainsRe(log, 'revno: 3\n')
864
        self.assertContainsRe(log, 'revno: 3.1.1\n')
4214.1.1 by Ian Clatworthy
log mainline only by default (Ian Clatworthy)
865
        self.assertContainsRe(log, 'revno: 4 ')
4206.1.1 by Ian Clatworthy
log mainline by default
866
        log = self.run_bzr('log -n0 -r..3 file2')[0]
2466.12.1 by Kent Gibson
Fix ``bzr log -r`` to support selecting merge revisions.
867
        self.assertNotContainsRe(log, 'revno: 1\n')
868
        self.assertContainsRe(log, 'revno: 2\n')
869
        self.assertNotContainsRe(log, 'revno: 3\n')
870
        self.assertNotContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
871
        self.assertNotContainsRe(log, 'revno: 4 ')
3940.1.2 by Ian Clatworthy
add test
872
3943.6.4 by Ian Clatworthy
review feedback from vila
873
    def test_log_file_historical_missing(self):
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
874
        # Check logging a deleted file gives an error if the
875
        # file isn't found at the end or start of the revision range
3943.6.4 by Ian Clatworthy
review feedback from vila
876
        self.prepare_tree(complex=True)
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
877
        err_msg = "Path unknown at end or start of revision range: file2"
878
        err = self.run_bzr('log file2', retcode=3)[1]
3943.6.1 by Ian Clatworthy
find file using the end revision
879
        self.assertContainsRe(err, err_msg)
880
3943.6.4 by Ian Clatworthy
review feedback from vila
881
    def test_log_file_historical_end(self):
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
882
        # Check logging a deleted file is ok if the file existed
883
        # at the end the revision range
3943.6.4 by Ian Clatworthy
review feedback from vila
884
        self.prepare_tree(complex=True)
4206.1.1 by Ian Clatworthy
log mainline by default
885
        log, err = self.run_bzr('log -n0 -r..4 file2')
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
886
        self.assertEquals('', err)
887
        self.assertNotContainsRe(log, 'revno: 1\n')
888
        self.assertContainsRe(log, 'revno: 2\n')
889
        self.assertNotContainsRe(log, 'revno: 3\n')
890
        self.assertContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
891
        self.assertContainsRe(log, 'revno: 4 ')
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
892
3943.6.4 by Ian Clatworthy
review feedback from vila
893
    def test_log_file_historical_start(self):
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
894
        # Check logging a deleted file is ok if the file existed
895
        # at the start of the revision range
3943.6.4 by Ian Clatworthy
review feedback from vila
896
        self.prepare_tree(complex=True)
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
897
        log, err = self.run_bzr('log file1')
898
        self.assertEquals('', err)
3943.6.1 by Ian Clatworthy
find file using the end revision
899
        self.assertContainsRe(log, 'revno: 1\n')
900
        self.assertNotContainsRe(log, 'revno: 2\n')
901
        self.assertNotContainsRe(log, 'revno: 3\n')
902
        self.assertNotContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
903
        self.assertNotContainsRe(log, 'revno: 4 ')
3943.6.1 by Ian Clatworthy
find file using the end revision
904
905
    def test_log_file_renamed(self):
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
906
        """File matched against revision range, not current tree."""
3943.6.1 by Ian Clatworthy
find file using the end revision
907
        self.prepare_tree(complex=True)
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
908
3943.6.1 by Ian Clatworthy
find file using the end revision
909
        # Check logging a renamed file gives an error by default
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
910
        err_msg = "Path unknown at end or start of revision range: file3"
3943.6.1 by Ian Clatworthy
find file using the end revision
911
        err = self.run_bzr('log file3', retcode=3)[1]
912
        self.assertContainsRe(err, err_msg)
913
914
        # Check we can see a renamed file if we give the right end revision
3943.6.3 by Ian Clatworthy
search the start tree if the end tree doesn't have a file
915
        log, err = self.run_bzr('log -r..4 file3')
916
        self.assertEquals('', err)
3943.6.1 by Ian Clatworthy
find file using the end revision
917
        self.assertNotContainsRe(log, 'revno: 1\n')
918
        self.assertNotContainsRe(log, 'revno: 2\n')
919
        self.assertContainsRe(log, 'revno: 3\n')
920
        self.assertNotContainsRe(log, 'revno: 3.1.1\n')
4208.2.1 by Ian Clatworthy
merge indicators in log --long
921
        self.assertNotContainsRe(log, 'revno: 4 ')
3943.6.1 by Ian Clatworthy
find file using the end revision
922
3940.1.2 by Ian Clatworthy
add test
923
    def test_line_log_file(self):
924
        """The line log for a file should only list relevant mainline revs"""
925
        # Note: this also implicitly  covers the short logging case.
926
        # We test using --line in preference to --short because matching
927
        # revnos in the output of --line is more reliable.
928
        self.prepare_tree()
3940.1.5 by Ian Clatworthy
feedback from vila
929
930
        # full history of file1
3940.1.2 by Ian Clatworthy
add test
931
        log = self.run_bzr('log --line file1')[0]
932
        self.assertContainsRe(log, '^1:', re.MULTILINE)
933
        self.assertNotContainsRe(log, '^2:', re.MULTILINE)
934
        self.assertNotContainsRe(log, '^3:', re.MULTILINE)
935
        self.assertNotContainsRe(log, '^3.1.1:', re.MULTILINE)
936
        self.assertNotContainsRe(log, '^4:', re.MULTILINE)
3940.1.5 by Ian Clatworthy
feedback from vila
937
938
        # full history of file2
3940.1.2 by Ian Clatworthy
add test
939
        log = self.run_bzr('log --line file2')[0]
940
        self.assertNotContainsRe(log, '^1:', re.MULTILINE)
941
        self.assertContainsRe(log, '^2:', re.MULTILINE)
942
        self.assertNotContainsRe(log, '^3:', re.MULTILINE)
943
        self.assertNotContainsRe(log, '^3.1.1:', re.MULTILINE)
944
        self.assertContainsRe(log, '^4:', re.MULTILINE)
3940.1.5 by Ian Clatworthy
feedback from vila
945
946
        # full history of file3
3940.1.2 by Ian Clatworthy
add test
947
        log = self.run_bzr('log --line file3')[0]
948
        self.assertNotContainsRe(log, '^1:', re.MULTILINE)
949
        self.assertNotContainsRe(log, '^2:', re.MULTILINE)
950
        self.assertContainsRe(log, '^3:', re.MULTILINE)
951
        self.assertNotContainsRe(log, '^3.1.1:', re.MULTILINE)
952
        self.assertNotContainsRe(log, '^4:', re.MULTILINE)
3940.1.5 by Ian Clatworthy
feedback from vila
953
954
        # file in a merge revision
3940.1.2 by Ian Clatworthy
add test
955
        log = self.run_bzr('log --line -r3.1.1 file2')[0]
956
        self.assertNotContainsRe(log, '^1:', re.MULTILINE)
957
        self.assertNotContainsRe(log, '^2:', re.MULTILINE)
958
        self.assertNotContainsRe(log, '^3:', re.MULTILINE)
959
        self.assertContainsRe(log, '^3.1.1:', re.MULTILINE)
960
        self.assertNotContainsRe(log, '^4:', re.MULTILINE)
3940.1.5 by Ian Clatworthy
feedback from vila
961
962
        # file in a mainline revision
3940.1.2 by Ian Clatworthy
add test
963
        log = self.run_bzr('log --line -r4 file2')[0]
964
        self.assertNotContainsRe(log, '^1:', re.MULTILINE)
965
        self.assertNotContainsRe(log, '^2:', re.MULTILINE)
966
        self.assertNotContainsRe(log, '^3:', re.MULTILINE)
967
        self.assertNotContainsRe(log, '^3.1.1:', re.MULTILINE)
968
        self.assertContainsRe(log, '^4:', re.MULTILINE)
3940.1.5 by Ian Clatworthy
feedback from vila
969
970
        # file since a revision
3940.1.2 by Ian Clatworthy
add test
971
        log = self.run_bzr('log --line -r3.. file2')[0]
972
        self.assertNotContainsRe(log, '^1:', re.MULTILINE)
973
        self.assertNotContainsRe(log, '^2:', re.MULTILINE)
974
        self.assertNotContainsRe(log, '^3:', re.MULTILINE)
975
        self.assertNotContainsRe(log, '^3.1.1:', re.MULTILINE)
976
        self.assertContainsRe(log, '^4:', re.MULTILINE)
3940.1.5 by Ian Clatworthy
feedback from vila
977
978
        # file up to a revision
3940.1.2 by Ian Clatworthy
add test
979
        log = self.run_bzr('log --line -r..3 file2')[0]
980
        self.assertNotContainsRe(log, '^1:', re.MULTILINE)
981
        self.assertContainsRe(log, '^2:', re.MULTILINE)
982
        self.assertNotContainsRe(log, '^3:', re.MULTILINE)
983
        self.assertNotContainsRe(log, '^3.1.1:', re.MULTILINE)
984
        self.assertNotContainsRe(log, '^4:', re.MULTILINE)
4202.2.1 by Ian Clatworthy
get directory logging working again
985
986
987
class TestLogMultiple(TestCaseWithTransport):
988
989
    def prepare_tree(self):
990
        tree = self.make_branch_and_tree('parent')
991
        self.build_tree([
992
            'parent/file1',
993
            'parent/file2',
994
            'parent/dir1/',
995
            'parent/dir1/file5',
996
            'parent/dir1/dir2/',
997
            'parent/dir1/dir2/file3',
998
            'parent/file4'])
999
        tree.add('file1')
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1000
        tree.commit('add file1')
4202.2.1 by Ian Clatworthy
get directory logging working again
1001
        tree.add('file2')
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1002
        tree.commit('add file2')
4202.2.1 by Ian Clatworthy
get directory logging working again
1003
        tree.add(['dir1', 'dir1/dir2', 'dir1/dir2/file3'])
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1004
        tree.commit('add file3')
4202.2.1 by Ian Clatworthy
get directory logging working again
1005
        tree.add('file4')
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1006
        tree.commit('add file4')
4202.2.1 by Ian Clatworthy
get directory logging working again
1007
        tree.add('dir1/file5')
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1008
        tree.commit('add file5')
4202.2.1 by Ian Clatworthy
get directory logging working again
1009
        child_tree = tree.bzrdir.sprout('child').open_workingtree()
1010
        self.build_tree_contents([('child/file2', 'hello')])
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1011
        child_tree.commit(message='branch 1')
4202.2.1 by Ian Clatworthy
get directory logging working again
1012
        tree.merge_from_branch(child_tree.branch)
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1013
        tree.commit(message='merge child branch')
4202.2.1 by Ian Clatworthy
get directory logging working again
1014
        os.chdir('parent')
1015
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1016
    def assertRevnos(self, paths_str, expected_revnos):
1017
        # confirm the revision numbers in log --line output are those expected
1018
        out, err = self.run_bzr('log --line -n0 %s' % (paths_str,))
1019
        self.assertEqual('', err)
1020
        revnos = [s.split(':', 1)[0].lstrip() for s in out.splitlines()]
4202.2.5 by Ian Clatworthy
apply review tweaks & update help
1021
        self.assertEqual(expected_revnos, revnos)
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1022
4202.2.1 by Ian Clatworthy
get directory logging working again
1023
    def test_log_files(self):
1024
        """The log for multiple file should only list revs for those files"""
1025
        self.prepare_tree()
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1026
        self.assertRevnos('file1 file2 dir1/dir2/file3',
1027
            ['6', '5.1.1', '3', '2', '1'])
4202.2.1 by Ian Clatworthy
get directory logging working again
1028
1029
    def test_log_directory(self):
1030
        """The log for a directory should show all nested files."""
1031
        self.prepare_tree()
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1032
        self.assertRevnos('dir1', ['5', '3'])
4202.2.1 by Ian Clatworthy
get directory logging working again
1033
1034
    def test_log_nested_directory(self):
1035
        """The log for a directory should show all nested files."""
1036
        self.prepare_tree()
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1037
        self.assertRevnos('dir1/dir2', ['3'])
4202.2.1 by Ian Clatworthy
get directory logging working again
1038
1039
    def test_log_in_nested_directory(self):
1040
        """The log for a directory should show all nested files."""
1041
        self.prepare_tree()
1042
        os.chdir("dir1")
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1043
        self.assertRevnos('.', ['5', '3'])
4202.2.1 by Ian Clatworthy
get directory logging working again
1044
1045
    def test_log_files_and_directories(self):
1046
        """Logging files and directories together should be fine."""
1047
        self.prepare_tree()
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1048
        self.assertRevnos('file4 dir1/dir2', ['4', '3'])
4202.2.1 by Ian Clatworthy
get directory logging working again
1049
1050
    def test_log_files_and_dirs_in_nested_directory(self):
1051
        """The log for a directory should show all nested files."""
1052
        self.prepare_tree()
1053
        os.chdir("dir1")
4202.2.2 by Ian Clatworthy
improve signal-to-noise ratio in tests
1054
        self.assertRevnos('dir2 file5', ['5', '3'])