~bzr-pqm/bzr/bzr.dev

5557.1.7 by John Arbash Meinel
Merge in the bzr.dev 5582
1
# Copyright (C) 2006-2011 Canonical Ltd
1887.1.1 by Adeodato Simó
Do not separate paragraphs in the copyright statement with blank lines,
2
#
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
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
#
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
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
#
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
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
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
16
17
18
"""Tests for the commit CLI of bzr."""
19
5765.1.3 by John Arbash Meinel
We missed a test case that was asserting the old string.
20
import doctest
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
21
import os
5167.1.1 by Parth Malwankar
commit command can now accept message (-m) same as a unicode filename
22
import re
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
23
import sys
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
24
5765.1.3 by John Arbash Meinel
We missed a test case that was asserting the old string.
25
from testtools.matchers import DocTestMatches
26
1551.9.5 by Aaron Bentley
Revert broken save-commit-message code
27
from bzrlib import (
5609.31.1 by mbp at sourcefrog
Blackbox tests for no identity set must disable whoami inference
28
    config,
2846.2.1 by Alexander Belchenko
merge approved chunks
29
    osutils,
1551.9.5 by Aaron Bentley
Revert broken save-commit-message code
30
    ignores,
3825.2.2 by Jelmer Vernooij
Add blackbox test for commit hook templates.
31
    msgeditor,
4789.6.1 by John Arbash Meinel
test_unsupported_encoding_commit_message no longer applies for Windows.
32
    tests,
1551.9.5 by Aaron Bentley
Revert broken save-commit-message code
33
    )
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
34
from bzrlib.bzrdir import BzrDir
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
35
from bzrlib.tests import (
2839.6.2 by Alexander Belchenko
changes after Martin's review
36
    probe_bad_non_ascii,
5777.6.5 by Jelmer Vernooij
Add tests for lossy commit.
37
    test_foreign,
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
38
    TestSkipped,
5050.37.1 by Andrew Bennetts
Some fixes for tests that did not cope with LANG=C.
39
    UnicodeFilenameFeature,
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
40
    )
5283.4.5 by Martin Pool
Update remaining subclasses of ExternalBase
41
from bzrlib.tests import TestCaseWithTransport
42
43
44
class TestCommit(TestCaseWithTransport):
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
45
1616.1.3 by Martin Pool
Clean up cut&pasted test for verbose commit
46
    def test_05_empty_commit(self):
47
        """Commit of tree with no versioned files should fail"""
48
        # If forced, it should succeed, but this is not tested here.
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
49
        self.make_branch_and_tree('.')
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
50
        self.build_tree(['hello.txt'])
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
51
        out,err = self.run_bzr('commit -m empty', retcode=3)
2089.1.1 by wang
If a commit fails, the commit message is stored in a file at the root of
52
        self.assertEqual('', out)
5765.1.3 by John Arbash Meinel
We missed a test case that was asserting the old string.
53
        # Two ugly bits here.
54
        # 1) We really don't want 'aborting commit write group' anymore.
55
        # 2) bzr: ERROR: is a really long line, so we wrap it with '\'
56
        self.assertThat(
57
            err,
58
            DocTestMatches("""\
59
Committing to: ...
60
bzr: ERROR: No changes to commit.\
61
 Please 'bzr add' the files you want to commit,\
62
 or use --unchanged to force an empty commit.
63
""", flags=doctest.ELLIPSIS|doctest.REPORT_UDIFF))
2089.1.1 by wang
If a commit fails, the commit message is stored in a file at the root of
64
65
    def test_commit_success(self):
66
        """Successful commit should not leave behind a bzr-commit-* file"""
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
67
        self.make_branch_and_tree('.')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
68
        self.run_bzr('commit --unchanged -m message')
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
69
        self.assertEqual('', self.run_bzr('unknowns')[0])
2089.1.1 by wang
If a commit fails, the commit message is stored in a file at the root of
70
71
        # same for unicode messages
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
72
        self.run_bzr(["commit", "--unchanged", "-m", u'foo\xb5'])
2552.2.2 by Vincent Ladeuil
Enforce run_bzr(string) where possible.
73
        self.assertEqual('', self.run_bzr('unknowns')[0])
1616.1.3 by Martin Pool
Clean up cut&pasted test for verbose commit
74
5777.6.4 by Jelmer Vernooij
Add test for lossy commit to native branch.
75
    def test_commit_lossy_native(self):
76
        """A --lossy option to commit is supported."""
77
        self.make_branch_and_tree('.')
78
        self.run_bzr('commit --lossy --unchanged -m message')
79
        self.assertEqual('', self.run_bzr('unknowns')[0])
80
5777.6.5 by Jelmer Vernooij
Add tests for lossy commit.
81
    def test_commit_lossy_foreign(self):
5777.6.6 by Jelmer Vernooij
Add lossy tests.
82
        test_foreign.register_dummy_foreign_for_test(self)
83
        self.make_branch_and_tree('.',
84
            format=test_foreign.DummyForeignVcsDirFormat())
5777.6.5 by Jelmer Vernooij
Add tests for lossy commit.
85
        self.run_bzr('commit --lossy --unchanged -m message')
5777.6.6 by Jelmer Vernooij
Add lossy tests.
86
        output = self.run_bzr('revision-info')[0]
87
        self.assertTrue(output.startswith('1 dummy-'))
5777.6.5 by Jelmer Vernooij
Add tests for lossy commit.
88
1704.2.11 by Martin Pool
Handle 'bzr commit DIR' when dir contains pending merges.
89
    def test_commit_with_path(self):
90
        """Commit tree with path of root specified"""
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
91
        a_tree = self.make_branch_and_tree('a')
1704.2.11 by Martin Pool
Handle 'bzr commit DIR' when dir contains pending merges.
92
        self.build_tree(['a/a_file'])
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
93
        a_tree.add('a_file')
2552.2.5 by Vincent Ladeuil
Revert the intrusive run_bzr('commit') rewritings.
94
        self.run_bzr(['commit', '-m', 'first commit', 'a'])
1704.2.11 by Martin Pool
Handle 'bzr commit DIR' when dir contains pending merges.
95
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
96
        b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
1704.2.11 by Martin Pool
Handle 'bzr commit DIR' when dir contains pending merges.
97
        self.build_tree_contents([('b/a_file', 'changes in b')])
2552.2.5 by Vincent Ladeuil
Revert the intrusive run_bzr('commit') rewritings.
98
        self.run_bzr(['commit', '-m', 'first commit in b', 'b'])
1704.2.11 by Martin Pool
Handle 'bzr commit DIR' when dir contains pending merges.
99
100
        self.build_tree_contents([('a/a_file', 'new contents')])
2552.2.5 by Vincent Ladeuil
Revert the intrusive run_bzr('commit') rewritings.
101
        self.run_bzr(['commit', '-m', 'change in a', 'a'])
1704.2.11 by Martin Pool
Handle 'bzr commit DIR' when dir contains pending merges.
102
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
103
        b_tree.merge_from_branch(a_tree.branch)
2738.4.2 by Daniel Watkins
Now test for conflicts where appropriate.
104
        self.assertEqual(len(b_tree.conflicts()), 1)
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
105
        self.run_bzr('resolved b/a_file')
2552.2.5 by Vincent Ladeuil
Revert the intrusive run_bzr('commit') rewritings.
106
        self.run_bzr(['commit', '-m', 'merge into b', 'b'])
1704.2.11 by Martin Pool
Handle 'bzr commit DIR' when dir contains pending merges.
107
1616.1.3 by Martin Pool
Clean up cut&pasted test for verbose commit
108
    def test_10_verbose_commit(self):
109
        """Add one file and examine verbose commit output"""
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
110
        tree = self.make_branch_and_tree('.')
1616.1.3 by Martin Pool
Clean up cut&pasted test for verbose commit
111
        self.build_tree(['hello.txt'])
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
112
        tree.add("hello.txt")
2789.2.1 by Ian Clatworthy
Make commit less verbose by default
113
        out,err = self.run_bzr('commit -m added')
114
        self.assertEqual('', out)
3052.4.1 by Matt Nordhoff
bzr commit: don't print the revision number twice. (Bug #172612)
115
        self.assertContainsRe(err, '^Committing to: .*\n'
2789.2.11 by Ian Clatworthy
remove more reporting stuff
116
                              'added hello.txt\n'
117
                              'Committed revision 1.\n$',)
2789.2.1 by Ian Clatworthy
Make commit less verbose by default
118
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
119
    def prepare_simple_history(self):
120
        """Prepare and return a working tree with one commit of one file"""
121
        # Commit with modified file should say so
122
        wt = BzrDir.create_standalone_workingtree('.')
123
        self.build_tree(['hello.txt', 'extra.txt'])
124
        wt.add(['hello.txt'])
125
        wt.commit(message='added')
126
        return wt
127
128
    def test_verbose_commit_modified(self):
129
        # Verbose commit of modified file should say so
130
        wt = self.prepare_simple_history()
131
        self.build_tree_contents([('hello.txt', 'new contents')])
2789.2.11 by Ian Clatworthy
remove more reporting stuff
132
        out, err = self.run_bzr('commit -m modified')
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
133
        self.assertEqual('', out)
3052.4.1 by Matt Nordhoff
bzr commit: don't print the revision number twice. (Bug #172612)
134
        self.assertContainsRe(err, '^Committing to: .*\n'
2747.6.7 by Daniel Watkins
Modify tests to reflect change in commit output.
135
                              'modified hello\.txt\n'
2789.2.11 by Ian Clatworthy
remove more reporting stuff
136
                              'Committed revision 2\.\n$')
2789.2.1 by Ian Clatworthy
Make commit less verbose by default
137
5167.1.4 by Parth Malwankar
show_warning now uses 'replace' option for encoding the message.
138
    def test_unicode_commit_message_is_filename(self):
5167.1.1 by Parth Malwankar
commit command can now accept message (-m) same as a unicode filename
139
        """Unicode commit message same as a filename (Bug #563646).
140
        """
5050.37.1 by Andrew Bennetts
Some fixes for tests that did not cope with LANG=C.
141
        self.requireFeature(UnicodeFilenameFeature)
5167.1.1 by Parth Malwankar
commit command can now accept message (-m) same as a unicode filename
142
        file_name = u'\N{euro sign}'
143
        self.run_bzr(['init'])
144
        open(file_name, 'w').write('hello world')
145
        self.run_bzr(['add'])
146
        out, err = self.run_bzr(['commit', '-m', file_name])
147
        reflags = re.MULTILINE|re.DOTALL|re.UNICODE
5167.1.4 by Parth Malwankar
show_warning now uses 'replace' option for encoding the message.
148
        te = osutils.get_terminal_encoding()
149
        self.assertContainsRe(err.decode(te),
150
            u'The commit message is a file name:',
5167.1.1 by Parth Malwankar
commit command can now accept message (-m) same as a unicode filename
151
            flags=reflags)
152
5167.1.6 by Parth Malwankar
fixed comment.
153
        # Run same test with a filename that causes encode
5167.1.5 by Parth Malwankar
added test to handle case if filename cannot be shown in terminal encoding
154
        # error for the terminal encoding. We do this
155
        # by forcing terminal encoding of ascii for
156
        # osutils.get_terminal_encoding which is used
157
        # by ui.text.show_warning
158
        default_get_terminal_enc = osutils.get_terminal_encoding
159
        try:
5320.2.7 by Robert Collins
Sanity check that new_trace_file in pop_log_file is valid, and also fix a test that monkey patched get_terminal_encoding.
160
            osutils.get_terminal_encoding = lambda trace=None: 'ascii'
5167.1.5 by Parth Malwankar
added test to handle case if filename cannot be shown in terminal encoding
161
            file_name = u'foo\u1234'
162
            open(file_name, 'w').write('hello world')
163
            self.run_bzr(['add'])
164
            out, err = self.run_bzr(['commit', '-m', file_name])
165
            reflags = re.MULTILINE|re.DOTALL|re.UNICODE
166
            te = osutils.get_terminal_encoding()
167
            self.assertContainsRe(err.decode(te, 'replace'),
168
                u'The commit message is a file name:',
169
                flags=reflags)
170
        finally:
171
            osutils.get_terminal_encoding = default_get_terminal_enc
172
4795.5.12 by Gioele Barabucci
Non-interactive warning for forgotten -m parameter
173
    def test_warn_about_forgotten_commit_message(self):
4795.5.8 by Gioele Barabucci
Test commit cancellation in presence of a suspect -m parameter
174
        """Test that the lack of -m parameter is caught"""
175
        wt = self.make_branch_and_tree('.')
176
        self.build_tree(['one', 'two'])
177
        wt.add(['two'])
4795.5.12 by Gioele Barabucci
Non-interactive warning for forgotten -m parameter
178
        out, err = self.run_bzr('commit -m one two')
179
        self.assertContainsRe(err, "The commit message is a file name")
4795.5.8 by Gioele Barabucci
Test commit cancellation in presence of a suspect -m parameter
180
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
181
    def test_verbose_commit_renamed(self):
182
        # Verbose commit of renamed file should say so
183
        wt = self.prepare_simple_history()
184
        wt.rename_one('hello.txt', 'gutentag.txt')
2789.2.11 by Ian Clatworthy
remove more reporting stuff
185
        out, err = self.run_bzr('commit -m renamed')
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
186
        self.assertEqual('', out)
3052.4.1 by Matt Nordhoff
bzr commit: don't print the revision number twice. (Bug #172612)
187
        self.assertContainsRe(err, '^Committing to: .*\n'
2747.6.7 by Daniel Watkins
Modify tests to reflect change in commit output.
188
                              'renamed hello\.txt => gutentag\.txt\n'
2789.2.11 by Ian Clatworthy
remove more reporting stuff
189
                              'Committed revision 2\.$\n')
2789.2.1 by Ian Clatworthy
Make commit less verbose by default
190
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
191
    def test_verbose_commit_moved(self):
192
        # Verbose commit of file moved to new directory should say so
193
        wt = self.prepare_simple_history()
194
        os.mkdir('subdir')
195
        wt.add(['subdir'])
196
        wt.rename_one('hello.txt', 'subdir/hello.txt')
2789.2.11 by Ian Clatworthy
remove more reporting stuff
197
        out, err = self.run_bzr('commit -m renamed')
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
198
        self.assertEqual('', out)
4183.5.5 by Robert Collins
Enable record_iter_changes for cases where it can work.
199
        self.assertEqual(set([
200
            'Committing to: %s/' % osutils.getcwd(),
201
            'added subdir',
202
            'renamed hello.txt => subdir/hello.txt',
203
            'Committed revision 2.',
204
            '',
205
            ]), set(err.split('\n')))
2789.2.1 by Ian Clatworthy
Make commit less verbose by default
206
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
207
    def test_verbose_commit_with_unknown(self):
1616.1.3 by Martin Pool
Clean up cut&pasted test for verbose commit
208
        """Unknown files should not be listed by default in verbose output"""
209
        # Is that really the best policy?
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
210
        wt = BzrDir.create_standalone_workingtree('.')
1616.1.3 by Martin Pool
Clean up cut&pasted test for verbose commit
211
        self.build_tree(['hello.txt', 'extra.txt'])
1669.2.1 by Martin Pool
verbose commit now specifically identifies modified/renamed/reparented files
212
        wt.add(['hello.txt'])
2789.2.11 by Ian Clatworthy
remove more reporting stuff
213
        out,err = self.run_bzr('commit -m added')
1616.1.3 by Martin Pool
Clean up cut&pasted test for verbose commit
214
        self.assertEqual('', out)
3052.4.1 by Matt Nordhoff
bzr commit: don't print the revision number twice. (Bug #172612)
215
        self.assertContainsRe(err, '^Committing to: .*\n'
2747.6.7 by Daniel Watkins
Modify tests to reflect change in commit output.
216
                              'added hello\.txt\n'
2789.2.11 by Ian Clatworthy
remove more reporting stuff
217
                              'Committed revision 1\.\n$')
2789.2.1 by Ian Clatworthy
Make commit less verbose by default
218
1668.1.5 by Martin Pool
[broken] fix up display of files changed by a commit
219
    def test_verbose_commit_with_unchanged(self):
1616.1.4 by Martin Pool
Verbose commit shouldn't talk about every unchanged file.
220
        """Unchanged files should not be listed by default in verbose output"""
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
221
        tree = self.make_branch_and_tree('.')
1616.1.4 by Martin Pool
Verbose commit shouldn't talk about every unchanged file.
222
        self.build_tree(['hello.txt', 'unchanged.txt'])
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
223
        tree.add('unchanged.txt')
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
224
        self.run_bzr('commit -m unchanged unchanged.txt')
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
225
        tree.add("hello.txt")
2789.2.11 by Ian Clatworthy
remove more reporting stuff
226
        out,err = self.run_bzr('commit -m added')
1616.1.4 by Martin Pool
Verbose commit shouldn't talk about every unchanged file.
227
        self.assertEqual('', out)
3052.4.1 by Matt Nordhoff
bzr commit: don't print the revision number twice. (Bug #172612)
228
        self.assertContainsRe(err, '^Committing to: .*\n'
2747.6.7 by Daniel Watkins
Modify tests to reflect change in commit output.
229
                              'added hello\.txt\n'
2789.2.11 by Ian Clatworthy
remove more reporting stuff
230
                              'Committed revision 2\.$\n')
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
231
2747.6.13 by Daniel Watkins
Renamed test to reflect what it is actually doing.
232
    def test_verbose_commit_includes_master_location(self):
2747.6.4 by Daniel Watkins
Modified test as suggested on-list.
233
        """Location of master is displayed when committing to bound branch"""
2747.6.2 by Daniel Watkins
Added test for behaviour.
234
        a_tree = self.make_branch_and_tree('a')
235
        self.build_tree(['a/b'])
236
        a_tree.add('b')
237
        a_tree.commit(message='Initial message')
238
239
        b_tree = a_tree.branch.create_checkout('b')
2804.4.1 by Alexander Belchenko
some win32-specific fixes for selftest
240
        expected = "%s/" % (osutils.abspath('a'), )
2747.6.4 by Daniel Watkins
Modified test as suggested on-list.
241
        out, err = self.run_bzr('commit -m blah --unchanged', working_dir='b')
3052.4.1 by Matt Nordhoff
bzr commit: don't print the revision number twice. (Bug #172612)
242
        self.assertEqual(err, 'Committing to: %s\n'
2747.6.7 by Daniel Watkins
Modify tests to reflect change in commit output.
243
                         'Committed revision 2.\n' % expected)
2747.6.2 by Daniel Watkins
Added test for behaviour.
244
4634.94.4 by John Arbash Meinel
Fix bug #433779, sanitize '\r' characters in commit.
245
    def test_commit_sanitizes_CR_in_message(self):
246
        # See bug #433779, basically Emacs likes to pass '\r\n' style line
247
        # endings to 'bzr commit -m ""' which breaks because we don't allow
248
        # '\r' in commit messages. (Mostly because of issues where XML style
249
        # formats arbitrarily strip it out of the data while parsing.)
250
        # To make life easier for users, we just always translate '\r\n' =>
251
        # '\n'. And '\r' => '\n'.
252
        a_tree = self.make_branch_and_tree('a')
253
        self.build_tree(['a/b'])
254
        a_tree.add('b')
255
        self.run_bzr(['commit',
256
                      '-m', 'a string\r\n\r\nwith mixed\r\rendings\n'],
257
                     working_dir='a')
258
        rev_id = a_tree.branch.last_revision()
259
        rev = a_tree.branch.repository.get_revision(rev_id)
260
        self.assertEqualDiff('a string\n\nwith mixed\n\nendings\n',
261
                             rev.message)
262
1668.1.5 by Martin Pool
[broken] fix up display of files changed by a commit
263
    def test_commit_merge_reports_all_modified_files(self):
264
        # the commit command should show all the files that are shown by
265
        # bzr diff or bzr status when committing, even when they were not
266
        # changed by the user but rather through doing a merge.
267
        this_tree = self.make_branch_and_tree('this')
268
        # we need a bunch of files and dirs, to perform one action on each.
269
        self.build_tree([
270
            'this/dirtorename/',
271
            'this/dirtoreparent/',
272
            'this/dirtoleave/',
273
            'this/dirtoremove/',
274
            'this/filetoreparent',
275
            'this/filetorename',
276
            'this/filetomodify',
277
            'this/filetoremove',
278
            'this/filetoleave']
279
            )
280
        this_tree.add([
281
            'dirtorename',
282
            'dirtoreparent',
283
            'dirtoleave',
284
            'dirtoremove',
285
            'filetoreparent',
286
            'filetorename',
287
            'filetomodify',
288
            'filetoremove',
289
            'filetoleave']
290
            )
291
        this_tree.commit('create_files')
292
        other_dir = this_tree.bzrdir.sprout('other')
293
        other_tree = other_dir.open_workingtree()
294
        other_tree.lock_write()
295
        # perform the needed actions on the files and dirs.
296
        try:
297
            other_tree.rename_one('dirtorename', 'renameddir')
298
            other_tree.rename_one('dirtoreparent', 'renameddir/reparenteddir')
299
            other_tree.rename_one('filetorename', 'renamedfile')
2738.4.6 by Daniel Watkins
Rewrapped lines longer than 79 characters.
300
            other_tree.rename_one('filetoreparent',
301
                                  'renameddir/reparentedfile')
1668.1.5 by Martin Pool
[broken] fix up display of files changed by a commit
302
            other_tree.remove(['dirtoremove', 'filetoremove'])
303
            self.build_tree_contents([
2738.4.5 by Daniel Watkins
Fixed whitespace issues.
304
                ('other/newdir/',),
1668.1.5 by Martin Pool
[broken] fix up display of files changed by a commit
305
                ('other/filetomodify', 'new content'),
306
                ('other/newfile', 'new file content')])
307
            other_tree.add('newfile')
308
            other_tree.add('newdir/')
309
            other_tree.commit('modify all sample files and dirs.')
310
        finally:
311
            other_tree.unlock()
1979.2.1 by Robert Collins
(robertc) adds a convenience method "merge_from_branch" to WorkingTree.
312
        this_tree.merge_from_branch(other_tree.branch)
1668.1.5 by Martin Pool
[broken] fix up display of files changed by a commit
313
        os.chdir('this')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
314
        out,err = self.run_bzr('commit -m added')
1668.1.5 by Martin Pool
[broken] fix up display of files changed by a commit
315
        self.assertEqual('', out)
4183.5.5 by Robert Collins
Enable record_iter_changes for cases where it can work.
316
        self.assertEqual(set([
317
            'Committing to: %s/' % osutils.getcwd(),
318
            'modified filetomodify',
319
            'added newdir',
320
            'added newfile',
321
            'renamed dirtorename => renameddir',
322
            'renamed filetorename => renamedfile',
323
            'renamed dirtoreparent => renameddir/reparenteddir',
324
            'renamed filetoreparent => renameddir/reparentedfile',
325
            'deleted dirtoremove',
326
            'deleted filetoremove',
327
            'Committed revision 2.',
328
            ''
329
            ]), set(err.split('\n')))
1668.1.5 by Martin Pool
[broken] fix up display of files changed by a commit
330
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
331
    def test_empty_commit_message(self):
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
332
        tree = self.make_branch_and_tree('.')
333
        self.build_tree_contents([('foo.c', 'int main() {}')])
334
        tree.add('foo.c')
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
335
        self.run_bzr('commit -m ""', retcode=3)
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
336
337
    def test_other_branch_commit(self):
338
        # this branch is to ensure consistent behaviour, whether we're run
339
        # inside a branch, or not.
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
340
        outer_tree = self.make_branch_and_tree('.')
341
        inner_tree = self.make_branch_and_tree('branch')
342
        self.build_tree_contents([
343
            ('branch/foo.c', 'int main() {}'),
344
            ('branch/bar.c', 'int main() {}')])
4570.4.3 by Robert Collins
Fix a couple of small bugs in the patch - use specific files with record_iter_changs, and the CLI shouldn't generate a filter of [] for commit.
345
        inner_tree.add(['foo.c', 'bar.c'])
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
346
        # can't commit files in different trees; sane error
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
347
        self.run_bzr('commit -m newstuff branch/foo.c .', retcode=3)
4570.4.3 by Robert Collins
Fix a couple of small bugs in the patch - use specific files with record_iter_changs, and the CLI shouldn't generate a filter of [] for commit.
348
        # can commit to branch - records foo.c only
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
349
        self.run_bzr('commit -m newstuff branch/foo.c')
4570.4.3 by Robert Collins
Fix a couple of small bugs in the patch - use specific files with record_iter_changs, and the CLI shouldn't generate a filter of [] for commit.
350
        # can commit to branch - records bar.c
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
351
        self.run_bzr('commit -m newstuff branch')
4570.4.3 by Robert Collins
Fix a couple of small bugs in the patch - use specific files with record_iter_changs, and the CLI shouldn't generate a filter of [] for commit.
352
        # No changes left
353
        self.run_bzr_error(["No changes to commit"], 'commit -m newstuff branch')
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
354
355
    def test_out_of_date_tree_commit(self):
356
        # check we get an error code and a clear message committing with an out
357
        # of date checkout
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
358
        tree = self.make_branch_and_tree('branch')
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
359
        # make a checkout
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
360
        checkout = tree.branch.create_checkout('checkout', lightweight=True)
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
361
        # commit to the original branch to make the checkout out of date
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
362
        tree.commit('message branch', allow_pointless=True)
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
363
        # now commit to the checkout should emit
364
        # ERROR: Out of date with the branch, 'bzr update' is suggested
2530.3.1 by Martin Pool
Cleanup old variations on run_bzr in the test suite
365
        output = self.run_bzr('commit --unchanged -m checkout_message '
1508.1.22 by Robert Collins
implement out of date working tree checks in commit.
366
                             'checkout', retcode=3)
367
        self.assertEqual(output,
368
                         ('',
2738.4.6 by Daniel Watkins
Rewrapped lines longer than 79 characters.
369
                          "bzr: ERROR: Working tree is out of date, please "
370
                          "run 'bzr update'.\n"))
1587.1.8 by Robert Collins
Local commits on unbound branches fail.
371
372
    def test_local_commit_unbound(self):
373
        # a --local commit on an unbound branch is an error
374
        self.make_branch_and_tree('.')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
375
        out, err = self.run_bzr('commit --local', retcode=3)
1587.1.8 by Robert Collins
Local commits on unbound branches fail.
376
        self.assertEqualDiff('', out)
377
        self.assertEqualDiff('bzr: ERROR: Cannot perform local-only commits '
378
                             'on unbound branches.\n', err)
1668.1.3 by Martin Pool
[patch] use the correct transaction when committing snapshot (Malone: #43959)
379
380
    def test_commit_a_text_merge_in_a_checkout(self):
381
        # checkouts perform multiple actions in a transaction across bond
382
        # branches and their master, and have been observed to fail in the
3943.8.1 by Marius Kruger
remove all trailing whitespace from bzr source
383
        # past. This is a user story reported to fail in bug #43959 where
1668.1.3 by Martin Pool
[patch] use the correct transaction when committing snapshot (Malone: #43959)
384
        # a merge done in a checkout (using the update command) failed to
385
        # commit correctly.
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
386
        trunk = self.make_branch_and_tree('trunk')
1668.1.3 by Martin Pool
[patch] use the correct transaction when committing snapshot (Malone: #43959)
387
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
388
        u1 = trunk.branch.create_checkout('u1')
4985.3.17 by Vincent Ladeuil
Some cleanup.
389
        self.build_tree_contents([('u1/hosts', 'initial contents\n')])
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
390
        u1.add('hosts')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
391
        self.run_bzr('commit -m add-hosts u1')
1668.1.3 by Martin Pool
[patch] use the correct transaction when committing snapshot (Malone: #43959)
392
2664.13.2 by Daniel Watkins
tests.blackbox.test_commit now uses internals where appropriate.
393
        u2 = trunk.branch.create_checkout('u2')
4985.3.17 by Vincent Ladeuil
Some cleanup.
394
        self.build_tree_contents([('u2/hosts', 'altered in u2\n')])
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
395
        self.run_bzr('commit -m checkin-from-u2 u2')
1668.1.3 by Martin Pool
[patch] use the correct transaction when committing snapshot (Malone: #43959)
396
397
        # make an offline commits
4985.3.17 by Vincent Ladeuil
Some cleanup.
398
        self.build_tree_contents([('u1/hosts', 'first offline change in u1\n')])
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
399
        self.run_bzr('commit -m checkin-offline --local u1')
1668.1.3 by Martin Pool
[patch] use the correct transaction when committing snapshot (Malone: #43959)
400
401
        # now try to pull in online work from u2, and then commit our offline
402
        # work as a merge
403
        # retcode 1 as we expect a text conflict
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
404
        self.run_bzr('update u1', retcode=1)
4985.3.17 by Vincent Ladeuil
Some cleanup.
405
        self.assertFileEqual('''\
406
<<<<<<< TREE
407
first offline change in u1
408
=======
409
altered in u2
410
>>>>>>> MERGE-SOURCE
411
''',
4985.3.10 by Gerard Krol
Reformat long lines
412
                             'u1/hosts')
4985.3.1 by Gerard Krol
Werkt wel ok
413
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
414
        self.run_bzr('resolved u1/hosts')
1668.1.3 by Martin Pool
[patch] use the correct transaction when committing snapshot (Malone: #43959)
415
        # add a text change here to represent resolving the merge conflicts in
416
        # favour of a new version of the file not identical to either the u1
417
        # version or the u2 version.
418
        self.build_tree_contents([('u1/hosts', 'merge resolution\n')])
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
419
        self.run_bzr('commit -m checkin-merge-of-the-offline-work-from-u1 u1')
1551.7.24 by Aaron Bentley
Ensure commit respects file spec when committing removals
420
3602.1.1 by Robert Collins
Add support for -x or --exclude to bzr commit, fixing bug 3117. (Robert Collins)
421
    def test_commit_exclude_excludes_modified_files(self):
422
        """Commit -x foo should ignore changes to foo."""
423
        tree = self.make_branch_and_tree('.')
424
        self.build_tree(['a', 'b', 'c'])
425
        tree.smart_add(['.'])
426
        out, err = self.run_bzr(['commit', '-m', 'test', '-x', 'b'])
427
        self.assertFalse('added b' in out)
428
        self.assertFalse('added b' in err)
3602.1.4 by Robert Collins
Andrew's review feedback.
429
        # If b was excluded it will still be 'added' in status.
3602.1.1 by Robert Collins
Add support for -x or --exclude to bzr commit, fixing bug 3117. (Robert Collins)
430
        out, err = self.run_bzr(['added'])
431
        self.assertEqual('b\n', out)
432
        self.assertEqual('', err)
433
434
    def test_commit_exclude_twice_uses_both_rules(self):
435
        """Commit -x foo -x bar should ignore changes to foo and bar."""
436
        tree = self.make_branch_and_tree('.')
437
        self.build_tree(['a', 'b', 'c'])
438
        tree.smart_add(['.'])
439
        out, err = self.run_bzr(['commit', '-m', 'test', '-x', 'b', '-x', 'c'])
440
        self.assertFalse('added b' in out)
441
        self.assertFalse('added c' in out)
442
        self.assertFalse('added b' in err)
443
        self.assertFalse('added c' in err)
3602.1.4 by Robert Collins
Andrew's review feedback.
444
        # If b was excluded it will still be 'added' in status.
3602.1.1 by Robert Collins
Add support for -x or --exclude to bzr commit, fixing bug 3117. (Robert Collins)
445
        out, err = self.run_bzr(['added'])
3602.1.4 by Robert Collins
Andrew's review feedback.
446
        self.assertTrue('b\n' in out)
447
        self.assertTrue('c\n' in out)
3602.1.1 by Robert Collins
Add support for -x or --exclude to bzr commit, fixing bug 3117. (Robert Collins)
448
        self.assertEqual('', err)
449
1551.7.24 by Aaron Bentley
Ensure commit respects file spec when committing removals
450
    def test_commit_respects_spec_for_removals(self):
451
        """Commit with a file spec should only commit removals that match"""
452
        t = self.make_branch_and_tree('.')
453
        self.build_tree(['file-a', 'dir-a/', 'dir-a/file-b'])
454
        t.add(['file-a', 'dir-a', 'dir-a/file-b'])
455
        t.commit('Create')
456
        t.remove(['file-a', 'dir-a/file-b'])
457
        os.chdir('dir-a')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
458
        result = self.run_bzr('commit . -m removed-file-b')[1]
1551.7.24 by Aaron Bentley
Ensure commit respects file spec when committing removals
459
        self.assertNotContainsRe(result, 'file-a')
460
        result = self.run_bzr('status')[0]
461
        self.assertContainsRe(result, 'removed:\n  file-a')
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
462
463
    def test_strict_commit(self):
464
        """Commit with --strict works if everything is known"""
1551.9.5 by Aaron Bentley
Revert broken save-commit-message code
465
        ignores._set_user_ignores([])
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
466
        tree = self.make_branch_and_tree('tree')
467
        self.build_tree(['tree/a'])
468
        tree.add('a')
469
        # A simple change should just work
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
470
        self.run_bzr('commit --strict -m adding-a',
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
471
                     working_dir='tree')
472
473
    def test_strict_commit_no_changes(self):
474
        """commit --strict gives "no changes" if there is nothing to commit"""
475
        tree = self.make_branch_and_tree('tree')
476
        self.build_tree(['tree/a'])
477
        tree.add('a')
478
        tree.commit('adding a')
479
480
        # With no changes, it should just be 'no changes'
481
        # Make sure that commit is failing because there is nothing to do
4351.1.2 by Ian Clatworthy
tweak grammar in error message
482
        self.run_bzr_error(['No changes to commit'],
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
483
                           'commit --strict -m no-changes',
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
484
                           working_dir='tree')
485
486
        # But --strict doesn't care if you supply --unchanged
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
487
        self.run_bzr('commit --strict --unchanged -m no-changes',
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
488
                     working_dir='tree')
489
490
    def test_strict_commit_unknown(self):
491
        """commit --strict fails if a file is unknown"""
492
        tree = self.make_branch_and_tree('tree')
493
        self.build_tree(['tree/a'])
494
        tree.add('a')
495
        tree.commit('adding a')
496
497
        # Add one file so there is a change, but forget the other
498
        self.build_tree(['tree/b', 'tree/c'])
499
        tree.add('b')
500
        self.run_bzr_error(['Commit refused because there are unknown files'],
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
501
                           'commit --strict -m add-b',
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
502
                           working_dir='tree')
503
504
        # --no-strict overrides --strict
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
505
        self.run_bzr('commit --strict -m add-b --no-strict',
2116.2.1 by John Arbash Meinel
Add commit --strict tests, and add a default ignore so that commit --strict works again
506
                     working_dir='tree')
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
507
508
    def test_fixes_bug_output(self):
509
        """commit --fixes=lp:23452 succeeds without output."""
2376.4.22 by Jonathan Lange
Variety of whitespace cleanups, tightening of tests and docstring changes in
510
        tree = self.make_branch_and_tree('tree')
511
        self.build_tree(['tree/hello.txt'])
512
        tree.add('hello.txt')
2376.4.12 by Jonathan Lange
Update NEWS file.
513
        output, err = self.run_bzr(
2789.2.11 by Ian Clatworthy
remove more reporting stuff
514
            'commit -m hello --fixes=lp:23452 tree/hello.txt')
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
515
        self.assertEqual('', output)
3052.4.1 by Matt Nordhoff
bzr commit: don't print the revision number twice. (Bug #172612)
516
        self.assertContainsRe(err, 'Committing to: .*\n'
2747.6.7 by Daniel Watkins
Modify tests to reflect change in commit output.
517
                              'added hello\.txt\n'
2789.2.11 by Ian Clatworthy
remove more reporting stuff
518
                              'Committed revision 1\.\n')
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
519
2453.2.1 by Martin Pool
Don't set the bugs property unless bugs are actually set
520
    def test_no_bugs_no_properties(self):
521
        """If no bugs are fixed, the bugs property is not set.
522
523
        see https://beta.launchpad.net/bzr/+bug/109613
524
        """
525
        tree = self.make_branch_and_tree('tree')
526
        self.build_tree(['tree/hello.txt'])
527
        tree.add('hello.txt')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
528
        self.run_bzr( 'commit -m hello tree/hello.txt')
2453.2.1 by Martin Pool
Don't set the bugs property unless bugs are actually set
529
        # Get the revision properties, ignoring the branch-nick property, which
530
        # we don't care about for this test.
531
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
532
        properties = dict(last_rev.properties)
533
        del properties['branch-nick']
534
        self.assertFalse('bugs' in properties)
535
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
536
    def test_fixes_bug_sets_property(self):
2376.4.2 by jml at canonical
More sophisticated error handling for --fixes option
537
        """commit --fixes=lp:234 sets the lp:234 revprop to 'fixed'."""
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
538
        tree = self.make_branch_and_tree('tree')
539
        self.build_tree(['tree/hello.txt'])
540
        tree.add('hello.txt')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
541
        self.run_bzr('commit -m hello --fixes=lp:234 tree/hello.txt')
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
542
543
        # Get the revision properties, ignoring the branch-nick property, which
544
        # we don't care about for this test.
545
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
546
        properties = dict(last_rev.properties)
547
        del properties['branch-nick']
548
2376.4.18 by Jonathan Lange
Store all bug fix URLs in a single property.
549
        self.assertEqual({'bugs': 'https://launchpad.net/bugs/234 fixed'},
2376.4.7 by jml at canonical
- Add docstrings to tests.
550
                         properties)
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
551
552
    def test_fixes_multiple_bugs_sets_properties(self):
553
        """--fixes can be used more than once to show that bugs are fixed."""
554
        tree = self.make_branch_and_tree('tree')
555
        self.build_tree(['tree/hello.txt'])
556
        tree.add('hello.txt')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
557
        self.run_bzr('commit -m hello --fixes=lp:123 --fixes=lp:235'
558
                     ' tree/hello.txt')
2376.4.1 by jml at canonical
Blackbox-driven --fixes option to commit.
559
560
        # Get the revision properties, ignoring the branch-nick property, which
561
        # we don't care about for this test.
562
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
563
        properties = dict(last_rev.properties)
564
        del properties['branch-nick']
565
2376.4.18 by Jonathan Lange
Store all bug fix URLs in a single property.
566
        self.assertEqual(
2376.4.21 by Jonathan Lange
Change the bugs separator to \n from ,
567
            {'bugs': 'https://launchpad.net/bugs/123 fixed\n'
2376.4.18 by Jonathan Lange
Store all bug fix URLs in a single property.
568
                     'https://launchpad.net/bugs/235 fixed'},
569
            properties)
2376.4.7 by jml at canonical
- Add docstrings to tests.
570
571
    def test_fixes_bug_with_alternate_trackers(self):
572
        """--fixes can be used on a properly configured branch to mark bug
573
        fixes on multiple trackers.
574
        """
575
        tree = self.make_branch_and_tree('tree')
576
        tree.branch.get_config().set_user_option(
577
            'trac_twisted_url', 'http://twistedmatrix.com/trac')
578
        self.build_tree(['tree/hello.txt'])
579
        tree.add('hello.txt')
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
580
        self.run_bzr('commit -m hello --fixes=lp:123 --fixes=twisted:235 tree/')
2376.4.7 by jml at canonical
- Add docstrings to tests.
581
582
        # Get the revision properties, ignoring the branch-nick property, which
583
        # we don't care about for this test.
584
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
585
        properties = dict(last_rev.properties)
586
        del properties['branch-nick']
587
2376.4.18 by Jonathan Lange
Store all bug fix URLs in a single property.
588
        self.assertEqual(
2376.4.21 by Jonathan Lange
Change the bugs separator to \n from ,
589
            {'bugs': 'https://launchpad.net/bugs/123 fixed\n'
2376.4.18 by Jonathan Lange
Store all bug fix URLs in a single property.
590
                     'http://twistedmatrix.com/trac/ticket/235 fixed'},
591
            properties)
2376.4.2 by jml at canonical
More sophisticated error handling for --fixes option
592
593
    def test_fixes_unknown_bug_prefix(self):
594
        tree = self.make_branch_and_tree('tree')
595
        self.build_tree(['tree/hello.txt'])
596
        tree.add('hello.txt')
597
        self.run_bzr_error(
598
            ["Unrecognized bug %s. Commit refused." % 'xxx:123'],
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
599
            'commit -m add-b --fixes=xxx:123',
2376.4.2 by jml at canonical
More sophisticated error handling for --fixes option
600
            working_dir='tree')
601
602
    def test_fixes_invalid_bug_number(self):
603
        tree = self.make_branch_and_tree('tree')
604
        self.build_tree(['tree/hello.txt'])
605
        tree.add('hello.txt')
606
        self.run_bzr_error(
3535.10.9 by James Westby
Make the improved messages show up in the UI.
607
            ["Did not understand bug identifier orange: Must be an integer. "
608
             "See \"bzr help bugs\" for more information on this feature.\n"
609
             "Commit refused."],
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
610
            'commit -m add-b --fixes=lp:orange',
2376.4.2 by jml at canonical
More sophisticated error handling for --fixes option
611
            working_dir='tree')
2376.4.7 by jml at canonical
- Add docstrings to tests.
612
613
    def test_fixes_invalid_argument(self):
614
        """Raise an appropriate error when the fixes argument isn't tag:id."""
615
        tree = self.make_branch_and_tree('tree')
616
        self.build_tree(['tree/hello.txt'])
617
        tree.add('hello.txt')
618
        self.run_bzr_error(
3535.10.3 by James Westby
Talk about "trackers" rather than "tags" as it may be less confusing.
619
            [r"Invalid bug orange. Must be in the form of 'tracker:id'\. "
3535.10.9 by James Westby
Make the improved messages show up in the UI.
620
             r"See \"bzr help bugs\" for more information on this feature.\n"
2376.4.13 by Jonathan Lange
Some stylistic cleanups
621
             r"Commit refused\."],
2552.2.3 by Vincent Ladeuil
Deprecate the varargs syntax and fix the tests.
622
            'commit -m add-b --fixes=orange',
2376.4.7 by jml at canonical
- Add docstrings to tests.
623
            working_dir='tree')
2671.2.1 by Lukáš Lalinský
Add --author option to 'bzr commit' to record the author's name, if it's different from the committer.
624
625
    def test_no_author(self):
626
        """If the author is not specified, the author property is not set."""
627
        tree = self.make_branch_and_tree('tree')
628
        self.build_tree(['tree/hello.txt'])
629
        tree.add('hello.txt')
630
        self.run_bzr( 'commit -m hello tree/hello.txt')
631
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
2671.2.2 by Lukáš Lalinský
Move setting of the author revision property to MutableTree.commit. Don't use try/except KeyError in LongLogFormatter to display authors and branch-nicks. Removed warning about missing e-mail in the authors name.
632
        properties = last_rev.properties
2671.2.1 by Lukáš Lalinský
Add --author option to 'bzr commit' to record the author's name, if it's different from the committer.
633
        self.assertFalse('author' in properties)
634
635
    def test_author_sets_property(self):
2671.2.2 by Lukáš Lalinský
Move setting of the author revision property to MutableTree.commit. Don't use try/except KeyError in LongLogFormatter to display authors and branch-nicks. Removed warning about missing e-mail in the authors name.
636
        """commit --author='John Doe <jdoe@example.com>' sets the author
637
           revprop.
638
        """
2671.2.1 by Lukáš Lalinský
Add --author option to 'bzr commit' to record the author's name, if it's different from the committer.
639
        tree = self.make_branch_and_tree('tree')
640
        self.build_tree(['tree/hello.txt'])
641
        tree.add('hello.txt')
3099.2.1 by John Arbash Meinel
Allow 'bzr commit --author' to take a unicode string.
642
        self.run_bzr(["commit", '-m', 'hello',
643
                      '--author', u'John D\xf6 <jdoe@example.com>',
644
                     "tree/hello.txt"])
2671.2.1 by Lukáš Lalinský
Add --author option to 'bzr commit' to record the author's name, if it's different from the committer.
645
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
2671.2.2 by Lukáš Lalinský
Move setting of the author revision property to MutableTree.commit. Don't use try/except KeyError in LongLogFormatter to display authors and branch-nicks. Removed warning about missing e-mail in the authors name.
646
        properties = last_rev.properties
4056.2.3 by James Westby
Use a new "authors" revision property to allow multiple authors
647
        self.assertEqual(u'John D\xf6 <jdoe@example.com>', properties['authors'])
2671.2.1 by Lukáš Lalinský
Add --author option to 'bzr commit' to record the author's name, if it's different from the committer.
648
649
    def test_author_no_email(self):
2671.2.2 by Lukáš Lalinský
Move setting of the author revision property to MutableTree.commit. Don't use try/except KeyError in LongLogFormatter to display authors and branch-nicks. Removed warning about missing e-mail in the authors name.
650
        """Author's name without an email address is allowed, too."""
2671.2.1 by Lukáš Lalinský
Add --author option to 'bzr commit' to record the author's name, if it's different from the committer.
651
        tree = self.make_branch_and_tree('tree')
652
        self.build_tree(['tree/hello.txt'])
653
        tree.add('hello.txt')
2671.2.4 by Lukáš Lalinský
Fixed broken test_author_* blackbox tests.
654
        out, err = self.run_bzr("commit -m hello --author='John Doe' "
2671.2.2 by Lukáš Lalinský
Move setting of the author revision property to MutableTree.commit. Don't use try/except KeyError in LongLogFormatter to display authors and branch-nicks. Removed warning about missing e-mail in the authors name.
655
                                "tree/hello.txt")
2671.2.1 by Lukáš Lalinský
Add --author option to 'bzr commit' to record the author's name, if it's different from the committer.
656
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
2671.2.2 by Lukáš Lalinský
Move setting of the author revision property to MutableTree.commit. Don't use try/except KeyError in LongLogFormatter to display authors and branch-nicks. Removed warning about missing e-mail in the authors name.
657
        properties = last_rev.properties
4056.2.3 by James Westby
Use a new "authors" revision property to allow multiple authors
658
        self.assertEqual('John Doe', properties['authors'])
2833.2.1 by Alexander Belchenko
XFAIL test for bug #140419
659
4056.2.1 by James Westby
Allow specifying multiple authors for a revision.
660
    def test_multiple_authors(self):
661
        """Multiple authors can be specyfied, and all are stored."""
662
        tree = self.make_branch_and_tree('tree')
663
        self.build_tree(['tree/hello.txt'])
664
        tree.add('hello.txt')
665
        out, err = self.run_bzr("commit -m hello --author='John Doe' "
666
                                "--author='Jane Rey' tree/hello.txt")
667
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
668
        properties = last_rev.properties
4056.2.3 by James Westby
Use a new "authors" revision property to allow multiple authors
669
        self.assertEqual('John Doe\nJane Rey', properties['authors'])
4056.2.1 by James Westby
Allow specifying multiple authors for a revision.
670
4766.2.2 by Andrew Bennetts
Add tests, and capture timezone offset as well as timestamp.
671
    def test_commit_time(self):
672
        tree = self.make_branch_and_tree('tree')
673
        self.build_tree(['tree/hello.txt'])
674
        tree.add('hello.txt')
675
        out, err = self.run_bzr("commit -m hello "
676
            "--commit-time='2009-10-10 08:00:00 +0100' tree/hello.txt")
677
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
678
        self.assertEqual(
679
            'Sat 2009-10-10 08:00:00 +0100',
680
            osutils.format_date(last_rev.timestamp, last_rev.timezone))
681
        
682
    def test_commit_time_bad_time(self):
683
        tree = self.make_branch_and_tree('tree')
684
        self.build_tree(['tree/hello.txt'])
685
        tree.add('hello.txt')
686
        out, err = self.run_bzr("commit -m hello "
687
            "--commit-time='NOT A TIME' tree/hello.txt", retcode=3)
688
        self.assertStartsWith(
689
            err, "bzr: ERROR: Could not parse --commit-time:")
690
2833.2.1 by Alexander Belchenko
XFAIL test for bug #140419
691
    def test_partial_commit_with_renames_in_tree(self):
2833.2.2 by Alexander Belchenko
Bug #140419 fixed by Robert Collins
692
        # this test illustrates bug #140419
2833.2.1 by Alexander Belchenko
XFAIL test for bug #140419
693
        t = self.make_branch_and_tree('.')
694
        self.build_tree(['dir/', 'dir/a', 'test'])
695
        t.add(['dir/', 'dir/a', 'test'])
696
        t.commit('initial commit')
697
        # important part: file dir/a should change parent
698
        # and should appear before old parent
699
        # then during partial commit we have error
700
        # parent_id {dir-XXX} not in inventory
701
        t.rename_one('dir/a', 'a')
702
        self.build_tree_contents([('test', 'changes in test')])
2833.2.2 by Alexander Belchenko
Bug #140419 fixed by Robert Collins
703
        # partial commit
704
        out, err = self.run_bzr('commit test -m "partial commit"')
705
        self.assertEquals('', out)
706
        self.assertContainsRe(err, r'modified test\nCommitted revision 2.')
2872.5.1 by Martin Pool
Avoid internal error tracebacks on failure to lock on readonly transport (#129701).
707
708
    def test_commit_readonly_checkout(self):
5243.1.2 by Martin
Point launchpad links in comments at production server rather than edge
709
        # https://bugs.launchpad.net/bzr/+bug/129701
2872.5.1 by Martin Pool
Avoid internal error tracebacks on failure to lock on readonly transport (#129701).
710
        # "UnlockableTransport error trying to commit in checkout of readonly
711
        # branch"
712
        self.make_branch('master')
713
        master = BzrDir.open_from_transport(
714
            self.get_readonly_transport('master')).open_branch()
715
        master.create_checkout('checkout')
716
        out, err = self.run_bzr(['commit', '--unchanged', '-mfoo', 'checkout'],
717
            retcode=3)
718
        self.assertContainsRe(err,
2872.5.3 by Martin Pool
Pass back LockFailed from smart server lock methods
719
            r'^bzr: ERROR: Cannot lock.*readonly transport')
3825.2.2 by Jelmer Vernooij
Add blackbox test for commit hook templates.
720
5137.1.2 by Robert Collins
Review feedback: add comment about return value and an additional test.
721
    def setup_editor(self):
3825.2.2 by Jelmer Vernooij
Add blackbox test for commit hook templates.
722
        # Test that commit template hooks work
723
        if sys.platform == "win32":
724
            f = file('fed.bat', 'w')
725
            f.write('@rem dummy fed')
726
            f.close()
5570.3.12 by Vincent Ladeuil
Replace osutils.set_or_unset_env calls with self.overrideEnv.
727
            self.overrideEnv('BZR_EDITOR', "fed.bat")
3825.2.2 by Jelmer Vernooij
Add blackbox test for commit hook templates.
728
        else:
729
            f = file('fed.sh', 'wb')
730
            f.write('#!/bin/sh\n')
731
            f.close()
732
            os.chmod('fed.sh', 0755)
5570.3.12 by Vincent Ladeuil
Replace osutils.set_or_unset_env calls with self.overrideEnv.
733
            self.overrideEnv('BZR_EDITOR', "./fed.sh")
5137.1.2 by Robert Collins
Review feedback: add comment about return value and an additional test.
734
735
    def setup_commit_with_template(self):
736
        self.setup_editor()
3825.2.2 by Jelmer Vernooij
Add blackbox test for commit hook templates.
737
        msgeditor.hooks.install_named_hook("commit_message_template",
738
                lambda commit_obj, msg: "save me some typing\n", None)
739
        tree = self.make_branch_and_tree('tree')
740
        self.build_tree(['tree/hello.txt'])
741
        tree.add('hello.txt')
5137.1.2 by Robert Collins
Review feedback: add comment about return value and an additional test.
742
        return tree
743
744
    def test_commit_hook_template_accepted(self):
745
        tree = self.setup_commit_with_template()
5137.1.1 by Robert Collins
* ``bzr commit`` will prompt before using a commit message that was
746
        out, err = self.run_bzr("commit tree/hello.txt", stdin="y\n")
3825.2.2 by Jelmer Vernooij
Add blackbox test for commit hook templates.
747
        last_rev = tree.branch.repository.get_revision(tree.last_revision())
748
        self.assertEqual('save me some typing\n', last_rev.message)
5137.1.2 by Robert Collins
Review feedback: add comment about return value and an additional test.
749
750
    def test_commit_hook_template_rejected(self):
751
        tree = self.setup_commit_with_template()
752
        expected = tree.last_revision()
753
        out, err = self.run_bzr_error(["empty commit message"],
754
            "commit tree/hello.txt", stdin="n\n")
755
        self.assertEqual(expected, tree.last_revision())
5187.2.4 by Parth Malwankar
added tests.
756
757
    def test_commit_without_username(self):
758
        """Ensure commit error if username is not set.
759
        """
760
        self.run_bzr(['init', 'foo'])
761
        os.chdir('foo')
762
        open('foo.txt', 'w').write('hello')
763
        self.run_bzr(['add'])
5570.3.12 by Vincent Ladeuil
Replace osutils.set_or_unset_env calls with self.overrideEnv.
764
        self.overrideEnv('EMAIL', None)
765
        self.overrideEnv('BZR_EMAIL', None)
5609.31.1 by mbp at sourcefrog
Blackbox tests for no identity set must disable whoami inference
766
        # Also, make sure that it's not inferred from mailname.
767
        self.overrideAttr(config, '_auto_user_id',
768
            lambda: (None, None))
5187.2.4 by Parth Malwankar
added tests.
769
        out, err = self.run_bzr(['commit', '-m', 'initial'], 3)
770
        self.assertContainsRe(err, 'Unable to determine your name')
5050.7.1 by Parth Malwankar
added test case for recursion error
771
772
    def test_commit_recursive_checkout(self):
773
        """Ensure that a commit to a recursive checkout fails cleanly.
774
        """
775
        self.run_bzr(['init', 'test_branch'])
776
        self.run_bzr(['checkout', 'test_branch', 'test_checkout'])
777
        os.chdir('test_checkout')
778
        self.run_bzr(['bind', '.']) # bind to self
779
        open('foo.txt', 'w').write('hello')
780
        self.run_bzr(['add'])
5050.7.2 by Parth Malwankar
recursive binding now shows a clear error
781
        out, err = self.run_bzr(['commit', '-m', 'addedfoo'], 3)
5050.7.1 by Parth Malwankar
added test case for recursion error
782
        self.assertEqual(out, '')
5050.7.5 by Parth Malwankar
better error message for RecursiveBind
783
        self.assertContainsRe(err,
784
            'Branch.*test_checkout.*appears to be bound to itself')
5050.7.1 by Parth Malwankar
added test case for recursion error
785