13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18
18
"""Tests for the commit CLI of bzr."""
25
from testtools.matchers import DocTestMatches
27
24
from bzrlib import (
33
from bzrlib.controldir import ControlDir
34
from bzrlib.tests import (
38
from bzrlib.tests import TestCaseWithTransport
39
from bzrlib.tests.matchers import ContainsNoVfsCalls
42
class TestCommit(TestCaseWithTransport):
27
from bzrlib.branch import Branch
28
from bzrlib.bzrdir import BzrDir
29
from bzrlib.errors import BzrCommandError
30
from bzrlib.tests.blackbox import ExternalBase
31
from bzrlib.workingtree import WorkingTree
34
class TestCommit(ExternalBase):
44
36
def test_05_empty_commit(self):
45
37
"""Commit of tree with no versioned files should fail"""
46
38
# If forced, it should succeed, but this is not tested here.
47
self.make_branch_and_tree('.')
48
40
self.build_tree(['hello.txt'])
49
41
out,err = self.run_bzr('commit -m empty', retcode=3)
50
42
self.assertEqual('', out)
52
# 1) We really don't want 'aborting commit write group' anymore.
53
# 2) bzr: ERROR: is a really long line, so we wrap it with '\'
58
bzr: ERROR: No changes to commit.\
59
Please 'bzr add' the files you want to commit,\
60
or use --unchanged to force an empty commit.
61
""", flags=doctest.ELLIPSIS|doctest.REPORT_UDIFF))
43
self.assertStartsWith(err, 'bzr: ERROR: no changes to commit.'
44
' use --unchanged to commit anyhow\n')
63
46
def test_commit_success(self):
64
47
"""Successful commit should not leave behind a bzr-commit-* file"""
65
self.make_branch_and_tree('.')
66
49
self.run_bzr('commit --unchanged -m message')
67
50
self.assertEqual('', self.run_bzr('unknowns')[0])
70
53
self.run_bzr(["commit", "--unchanged", "-m", u'foo\xb5'])
71
54
self.assertEqual('', self.run_bzr('unknowns')[0])
73
def test_commit_lossy_native(self):
74
"""A --lossy option to commit is supported."""
75
self.make_branch_and_tree('.')
76
self.run_bzr('commit --lossy --unchanged -m message')
77
self.assertEqual('', self.run_bzr('unknowns')[0])
79
def test_commit_lossy_foreign(self):
80
test_foreign.register_dummy_foreign_for_test(self)
81
self.make_branch_and_tree('.',
82
format=test_foreign.DummyForeignVcsDirFormat())
83
self.run_bzr('commit --lossy --unchanged -m message')
84
output = self.run_bzr('revision-info')[0]
85
self.assertTrue(output.startswith('1 dummy-'))
87
56
def test_commit_with_path(self):
88
57
"""Commit tree with path of root specified"""
89
a_tree = self.make_branch_and_tree('a')
58
self.run_bzr('init a')
90
59
self.build_tree(['a/a_file'])
60
self.run_bzr('add a/a_file')
92
61
self.run_bzr(['commit', '-m', 'first commit', 'a'])
94
b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
63
self.run_bzr('branch a b')
95
64
self.build_tree_contents([('b/a_file', 'changes in b')])
96
65
self.run_bzr(['commit', '-m', 'first commit in b', 'b'])
98
67
self.build_tree_contents([('a/a_file', 'new contents')])
99
68
self.run_bzr(['commit', '-m', 'change in a', 'a'])
101
b_tree.merge_from_branch(a_tree.branch)
102
self.assertEqual(len(b_tree.conflicts()), 1)
71
self.run_bzr('merge ../a', retcode=1) # will conflict
103
73
self.run_bzr('resolved b/a_file')
104
74
self.run_bzr(['commit', '-m', 'merge into b', 'b'])
106
77
def test_10_verbose_commit(self):
107
78
"""Add one file and examine verbose commit output"""
108
tree = self.make_branch_and_tree('.')
109
80
self.build_tree(['hello.txt'])
110
tree.add("hello.txt")
81
self.run_bzr("add hello.txt")
111
82
out,err = self.run_bzr('commit -m added')
112
83
self.assertEqual('', out)
113
self.assertContainsRe(err, '^Committing to: .*\n'
115
'Committed revision 1.\n$',)
84
self.assertEqual('added hello.txt\n'
85
'Committed revision 1.\n',
117
88
def prepare_simple_history(self):
118
89
"""Prepare and return a working tree with one commit of one file"""
119
90
# Commit with modified file should say so
120
wt = ControlDir.create_standalone_workingtree('.')
91
wt = BzrDir.create_standalone_workingtree('.')
121
92
self.build_tree(['hello.txt', 'extra.txt'])
122
93
wt.add(['hello.txt'])
123
94
wt.commit(message='added')
129
100
self.build_tree_contents([('hello.txt', 'new contents')])
130
101
out, err = self.run_bzr('commit -m modified')
131
102
self.assertEqual('', out)
132
self.assertContainsRe(err, '^Committing to: .*\n'
133
'modified hello\.txt\n'
134
'Committed revision 2\.\n$')
136
def test_unicode_commit_message_is_filename(self):
137
"""Unicode commit message same as a filename (Bug #563646).
139
self.requireFeature(features.UnicodeFilenameFeature)
140
file_name = u'\N{euro sign}'
141
self.run_bzr(['init'])
142
with open(file_name, 'w') as f: f.write('hello world')
143
self.run_bzr(['add'])
144
out, err = self.run_bzr(['commit', '-m', file_name])
145
reflags = re.MULTILINE|re.DOTALL|re.UNICODE
146
te = osutils.get_terminal_encoding()
147
self.assertContainsRe(err.decode(te),
148
u'The commit message is a file name:',
151
# Run same test with a filename that causes encode
152
# error for the terminal encoding. We do this
153
# by forcing terminal encoding of ascii for
154
# osutils.get_terminal_encoding which is used
155
# by ui.text.show_warning
156
default_get_terminal_enc = osutils.get_terminal_encoding
158
osutils.get_terminal_encoding = lambda trace=None: 'ascii'
159
file_name = u'foo\u1234'
160
with open(file_name, 'w') as f: f.write('hello world')
161
self.run_bzr(['add'])
162
out, err = self.run_bzr(['commit', '-m', file_name])
163
reflags = re.MULTILINE|re.DOTALL|re.UNICODE
164
te = osutils.get_terminal_encoding()
165
self.assertContainsRe(err.decode(te, 'replace'),
166
u'The commit message is a file name:',
169
osutils.get_terminal_encoding = default_get_terminal_enc
171
def test_non_ascii_file_unversioned_utf8(self):
172
self.requireFeature(features.UnicodeFilenameFeature)
173
tree = self.make_branch_and_tree(".")
174
self.build_tree(["f"])
176
out, err = self.run_bzr(["commit", "-m", "Wrong filename", u"\xa7"],
177
encoding="utf-8", retcode=3)
178
self.assertContainsRe(err, "(?m)not versioned: \"\xc2\xa7\"$")
180
def test_non_ascii_file_unversioned_iso_8859_5(self):
181
self.requireFeature(features.UnicodeFilenameFeature)
182
tree = self.make_branch_and_tree(".")
183
self.build_tree(["f"])
185
out, err = self.run_bzr(["commit", "-m", "Wrong filename", u"\xa7"],
186
encoding="iso-8859-5", retcode=3)
187
self.expectFailure("Error messages are always written as UTF-8",
188
self.assertNotContainsString, err, "\xc2\xa7")
189
self.assertContainsRe(err, "(?m)not versioned: \"\xfd\"$")
191
def test_warn_about_forgotten_commit_message(self):
192
"""Test that the lack of -m parameter is caught"""
193
wt = self.make_branch_and_tree('.')
194
self.build_tree(['one', 'two'])
196
out, err = self.run_bzr('commit -m one two')
197
self.assertContainsRe(err, "The commit message is a file name")
103
self.assertEqual('modified hello.txt\n'
104
'Committed revision 2.\n',
199
107
def test_verbose_commit_renamed(self):
200
108
# Verbose commit of renamed file should say so
214
122
wt.rename_one('hello.txt', 'subdir/hello.txt')
215
123
out, err = self.run_bzr('commit -m renamed')
216
124
self.assertEqual('', out)
217
self.assertEqual(set([
218
'Committing to: %s/' % osutils.getcwd(),
220
'renamed hello.txt => subdir/hello.txt',
221
'Committed revision 2.',
223
]), set(err.split('\n')))
125
self.assertEqualDiff('added subdir\n'
126
'renamed hello.txt => subdir/hello.txt\n'
127
'Committed revision 2.\n',
225
130
def test_verbose_commit_with_unknown(self):
226
131
"""Unknown files should not be listed by default in verbose output"""
227
132
# Is that really the best policy?
228
wt = ControlDir.create_standalone_workingtree('.')
133
wt = BzrDir.create_standalone_workingtree('.')
229
134
self.build_tree(['hello.txt', 'extra.txt'])
230
135
wt.add(['hello.txt'])
231
136
out,err = self.run_bzr('commit -m added')
232
137
self.assertEqual('', out)
233
self.assertContainsRe(err, '^Committing to: .*\n'
235
'Committed revision 1\.\n$')
138
self.assertEqual('added hello.txt\n'
139
'Committed revision 1.\n',
237
142
def test_verbose_commit_with_unchanged(self):
238
143
"""Unchanged files should not be listed by default in verbose output"""
239
tree = self.make_branch_and_tree('.')
240
145
self.build_tree(['hello.txt', 'unchanged.txt'])
241
tree.add('unchanged.txt')
146
self.run_bzr('add unchanged.txt')
242
147
self.run_bzr('commit -m unchanged unchanged.txt')
243
tree.add("hello.txt")
148
self.run_bzr("add hello.txt")
244
149
out,err = self.run_bzr('commit -m added')
245
150
self.assertEqual('', out)
246
self.assertContainsRe(err, '^Committing to: .*\n'
248
'Committed revision 2\.$\n')
250
def test_verbose_commit_includes_master_location(self):
251
"""Location of master is displayed when committing to bound branch"""
252
a_tree = self.make_branch_and_tree('a')
253
self.build_tree(['a/b'])
255
a_tree.commit(message='Initial message')
257
b_tree = a_tree.branch.create_checkout('b')
258
expected = "%s/" % (osutils.abspath('a'), )
259
out, err = self.run_bzr('commit -m blah --unchanged', working_dir='b')
260
self.assertEqual(err, 'Committing to: %s\n'
261
'Committed revision 2.\n' % expected)
263
def test_commit_sanitizes_CR_in_message(self):
264
# See bug #433779, basically Emacs likes to pass '\r\n' style line
265
# endings to 'bzr commit -m ""' which breaks because we don't allow
266
# '\r' in commit messages. (Mostly because of issues where XML style
267
# formats arbitrarily strip it out of the data while parsing.)
268
# To make life easier for users, we just always translate '\r\n' =>
269
# '\n'. And '\r' => '\n'.
270
a_tree = self.make_branch_and_tree('a')
271
self.build_tree(['a/b'])
273
self.run_bzr(['commit',
274
'-m', 'a string\r\n\r\nwith mixed\r\rendings\n'],
276
rev_id = a_tree.branch.last_revision()
277
rev = a_tree.branch.repository.get_revision(rev_id)
278
self.assertEqualDiff('a string\n\nwith mixed\n\nendings\n',
151
self.assertEqual('added hello.txt\n'
152
'Committed revision 2.\n',
281
155
def test_commit_merge_reports_all_modified_files(self):
282
156
# the commit command should show all the files that are shown by
329
202
other_tree.unlock()
330
203
this_tree.merge_from_branch(other_tree.branch)
331
out, err = self.run_bzr('commit -m added', working_dir='this')
205
out,err = self.run_bzr('commit -m added')
332
207
self.assertEqual('', out)
333
self.assertEqual(set([
334
'Committing to: %s/' % osutils.pathjoin(osutils.getcwd(), 'this'),
335
'modified filetomodify',
338
'renamed dirtorename => renameddir',
339
'renamed filetorename => renamedfile',
340
'renamed dirtoreparent => renameddir/reparenteddir',
341
'renamed filetoreparent => renameddir/reparentedfile',
342
'deleted dirtoremove',
343
'deleted filetoremove',
344
'Committed revision 2.',
346
]), set(err.split('\n')))
208
self.assertEqualDiff(
209
'modified filetomodify\n'
212
'renamed dirtorename => renameddir\n'
213
'renamed filetorename => renamedfile\n'
214
'renamed dirtoreparent => renameddir/reparenteddir\n'
215
'renamed filetoreparent => renameddir/reparentedfile\n'
216
'deleted dirtoremove\n'
217
'deleted filetoremove\n'
218
'Committed revision 2.\n',
348
221
def test_empty_commit_message(self):
349
tree = self.make_branch_and_tree('.')
350
self.build_tree_contents([('foo.c', 'int main() {}')])
352
self.run_bzr('commit -m ""')
223
file('foo.c', 'wt').write('int main() {}')
224
self.run_bzr('add foo.c')
225
self.run_bzr('commit -m ""', retcode=3)
354
227
def test_other_branch_commit(self):
355
228
# this branch is to ensure consistent behaviour, whether we're run
356
229
# inside a branch, or not.
357
outer_tree = self.make_branch_and_tree('.')
358
inner_tree = self.make_branch_and_tree('branch')
359
self.build_tree_contents([
360
('branch/foo.c', 'int main() {}'),
361
('branch/bar.c', 'int main() {}')])
362
inner_tree.add(['foo.c', 'bar.c'])
230
os.mkdir('empty_branch')
231
os.chdir('empty_branch')
236
file('foo.c', 'wt').write('int main() {}')
237
file('bar.c', 'wt').write('int main() {}')
239
self.run_bzr('add branch/foo.c')
240
self.run_bzr('add branch')
363
241
# can't commit files in different trees; sane error
364
242
self.run_bzr('commit -m newstuff branch/foo.c .', retcode=3)
365
# can commit to branch - records foo.c only
366
243
self.run_bzr('commit -m newstuff branch/foo.c')
367
# can commit to branch - records bar.c
368
244
self.run_bzr('commit -m newstuff branch')
370
self.run_bzr_error(["No changes to commit"], 'commit -m newstuff branch')
245
self.run_bzr('commit -m newstuff branch', retcode=3)
372
247
def test_out_of_date_tree_commit(self):
373
248
# check we get an error code and a clear message committing with an out
374
249
# of date checkout
375
tree = self.make_branch_and_tree('branch')
250
self.make_branch_and_tree('branch')
376
251
# make a checkout
377
checkout = tree.branch.create_checkout('checkout', lightweight=True)
252
self.run_bzr('checkout --lightweight branch checkout')
378
253
# commit to the original branch to make the checkout out of date
379
tree.commit('message branch', allow_pointless=True)
254
self.run_bzr('commit --unchanged -m message branch')
380
255
# now commit to the checkout should emit
381
256
# ERROR: Out of date with the branch, 'bzr update' is suggested
382
257
output = self.run_bzr('commit --unchanged -m checkout_message '
383
258
'checkout', retcode=3)
384
259
self.assertEqual(output,
386
"bzr: ERROR: Working tree is out of date, please "
387
"run 'bzr update'.\n"))
261
"bzr: ERROR: Working tree is out of date, please run "
389
264
def test_local_commit_unbound(self):
390
265
# a --local commit on an unbound branch is an error
651
466
self.build_tree(['tree/hello.txt'])
652
467
tree.add('hello.txt')
653
468
self.run_bzr_error(
654
[r"Invalid bug orange:apples:bananas. Must be in the form of "
655
r"'tracker:id'\. See \"bzr help bugs\" for more information on "
656
r"this feature.\nCommit refused\."],
657
'commit -m add-b --fixes=orange:apples:bananas',
469
[r"Invalid bug orange. Must be in the form of 'tag:id'\. "
470
r"Commit refused\."],
471
'commit -m add-b --fixes=orange',
658
472
working_dir='tree')
660
def test_no_author(self):
661
"""If the author is not specified, the author property is not set."""
662
tree = self.make_branch_and_tree('tree')
663
self.build_tree(['tree/hello.txt'])
664
tree.add('hello.txt')
665
self.run_bzr( 'commit -m hello tree/hello.txt')
666
last_rev = tree.branch.repository.get_revision(tree.last_revision())
667
properties = last_rev.properties
668
self.assertFalse('author' in properties)
670
def test_author_sets_property(self):
671
"""commit --author='John Doe <jdoe@example.com>' sets the author
674
tree = self.make_branch_and_tree('tree')
675
self.build_tree(['tree/hello.txt'])
676
tree.add('hello.txt')
677
self.run_bzr(["commit", '-m', 'hello',
678
'--author', u'John D\xf6 <jdoe@example.com>',
680
last_rev = tree.branch.repository.get_revision(tree.last_revision())
681
properties = last_rev.properties
682
self.assertEqual(u'John D\xf6 <jdoe@example.com>', properties['authors'])
684
def test_author_no_email(self):
685
"""Author's name without an email address is allowed, too."""
686
tree = self.make_branch_and_tree('tree')
687
self.build_tree(['tree/hello.txt'])
688
tree.add('hello.txt')
689
out, err = self.run_bzr("commit -m hello --author='John Doe' "
691
last_rev = tree.branch.repository.get_revision(tree.last_revision())
692
properties = last_rev.properties
693
self.assertEqual('John Doe', properties['authors'])
695
def test_multiple_authors(self):
696
"""Multiple authors can be specyfied, and all are stored."""
697
tree = self.make_branch_and_tree('tree')
698
self.build_tree(['tree/hello.txt'])
699
tree.add('hello.txt')
700
out, err = self.run_bzr("commit -m hello --author='John Doe' "
701
"--author='Jane Rey' tree/hello.txt")
702
last_rev = tree.branch.repository.get_revision(tree.last_revision())
703
properties = last_rev.properties
704
self.assertEqual('John Doe\nJane Rey', properties['authors'])
706
def test_commit_time(self):
707
tree = self.make_branch_and_tree('tree')
708
self.build_tree(['tree/hello.txt'])
709
tree.add('hello.txt')
710
out, err = self.run_bzr("commit -m hello "
711
"--commit-time='2009-10-10 08:00:00 +0100' tree/hello.txt")
712
last_rev = tree.branch.repository.get_revision(tree.last_revision())
714
'Sat 2009-10-10 08:00:00 +0100',
715
osutils.format_date(last_rev.timestamp, last_rev.timezone))
717
def test_commit_time_bad_time(self):
718
tree = self.make_branch_and_tree('tree')
719
self.build_tree(['tree/hello.txt'])
720
tree.add('hello.txt')
721
out, err = self.run_bzr("commit -m hello "
722
"--commit-time='NOT A TIME' tree/hello.txt", retcode=3)
723
self.assertStartsWith(
724
err, "bzr: ERROR: Could not parse --commit-time:")
726
def test_commit_time_missing_tz(self):
727
tree = self.make_branch_and_tree('tree')
728
self.build_tree(['tree/hello.txt'])
729
tree.add('hello.txt')
730
out, err = self.run_bzr("commit -m hello "
731
"--commit-time='2009-10-10 08:00:00' tree/hello.txt", retcode=3)
732
self.assertStartsWith(
733
err, "bzr: ERROR: Could not parse --commit-time:")
734
# Test that it is actually checking and does not simply crash with
735
# some other exception
736
self.assertContainsString(err, "missing a timezone offset")
738
def test_partial_commit_with_renames_in_tree(self):
739
# this test illustrates bug #140419
740
t = self.make_branch_and_tree('.')
741
self.build_tree(['dir/', 'dir/a', 'test'])
742
t.add(['dir/', 'dir/a', 'test'])
743
t.commit('initial commit')
744
# important part: file dir/a should change parent
745
# and should appear before old parent
746
# then during partial commit we have error
747
# parent_id {dir-XXX} not in inventory
748
t.rename_one('dir/a', 'a')
749
self.build_tree_contents([('test', 'changes in test')])
751
out, err = self.run_bzr('commit test -m "partial commit"')
752
self.assertEqual('', out)
753
self.assertContainsRe(err, r'modified test\nCommitted revision 2.')
755
def test_commit_readonly_checkout(self):
756
# https://bugs.launchpad.net/bzr/+bug/129701
757
# "UnlockableTransport error trying to commit in checkout of readonly
759
self.make_branch('master')
760
master = ControlDir.open_from_transport(
761
self.get_readonly_transport('master')).open_branch()
762
master.create_checkout('checkout')
763
out, err = self.run_bzr(['commit', '--unchanged', '-mfoo', 'checkout'],
765
self.assertContainsRe(err,
766
r'^bzr: ERROR: Cannot lock.*readonly transport')
768
def setup_editor(self):
769
# Test that commit template hooks work
770
if sys.platform == "win32":
771
f = file('fed.bat', 'w')
772
f.write('@rem dummy fed')
774
self.overrideEnv('BZR_EDITOR', "fed.bat")
776
f = file('fed.sh', 'wb')
777
f.write('#!/bin/sh\n')
779
os.chmod('fed.sh', 0755)
780
self.overrideEnv('BZR_EDITOR', "./fed.sh")
782
def setup_commit_with_template(self):
784
msgeditor.hooks.install_named_hook("commit_message_template",
785
lambda commit_obj, msg: "save me some typing\n", None)
786
tree = self.make_branch_and_tree('tree')
787
self.build_tree(['tree/hello.txt'])
788
tree.add('hello.txt')
791
def test_edit_empty_message(self):
792
tree = self.make_branch_and_tree('tree')
794
self.build_tree(['tree/hello.txt'])
795
tree.add('hello.txt')
796
out, err = self.run_bzr("commit tree/hello.txt", retcode=3,
798
self.assertContainsRe(err,
799
"bzr: ERROR: Empty commit message specified")
801
def test_commit_hook_template_accepted(self):
802
tree = self.setup_commit_with_template()
803
out, err = self.run_bzr("commit tree/hello.txt", stdin="y\n")
804
last_rev = tree.branch.repository.get_revision(tree.last_revision())
805
self.assertEqual('save me some typing\n', last_rev.message)
807
def test_commit_hook_template_rejected(self):
808
tree = self.setup_commit_with_template()
809
expected = tree.last_revision()
810
out, err = self.run_bzr_error(["Empty commit message specified."
811
" Please specify a commit message with either"
812
" --message or --file or leave a blank message"
813
" with --message \"\"."],
814
"commit tree/hello.txt", stdin="n\n")
815
self.assertEqual(expected, tree.last_revision())
817
def test_set_commit_message(self):
818
msgeditor.hooks.install_named_hook("set_commit_message",
819
lambda commit_obj, msg: "save me some typing\n", None)
820
tree = self.make_branch_and_tree('tree')
821
self.build_tree(['tree/hello.txt'])
822
tree.add('hello.txt')
823
out, err = self.run_bzr("commit tree/hello.txt")
824
last_rev = tree.branch.repository.get_revision(tree.last_revision())
825
self.assertEqual('save me some typing\n', last_rev.message)
827
def test_commit_without_username(self):
828
"""Ensure commit error if username is not set.
830
self.run_bzr(['init', 'foo'])
831
with open('foo/foo.txt', 'w') as f:
833
self.run_bzr(['add'], working_dir='foo')
834
self.overrideEnv('EMAIL', None)
835
self.overrideEnv('BZR_EMAIL', None)
836
# Also, make sure that it's not inferred from mailname.
837
self.overrideAttr(config, '_auto_user_id',
838
lambda: (None, None))
840
['Unable to determine your name'],
841
['commit', '-m', 'initial'], working_dir='foo')
843
def test_commit_recursive_checkout(self):
844
"""Ensure that a commit to a recursive checkout fails cleanly.
846
self.run_bzr(['init', 'test_branch'])
847
self.run_bzr(['checkout', 'test_branch', 'test_checkout'])
848
self.run_bzr(['bind', '.'], working_dir='test_checkout') # bind to self
849
with open('test_checkout/foo.txt', 'w') as f:
851
self.run_bzr(['add'], working_dir='test_checkout')
852
out, err = self.run_bzr_error(
853
['Branch.*test_checkout.*appears to be bound to itself'],
854
['commit', '-m', 'addedfoo'], working_dir='test_checkout')
856
def test_mv_dirs_non_ascii(self):
857
"""Move directory with non-ascii name and containing files.
859
Regression test for bug 185211.
861
tree = self.make_branch_and_tree('.')
862
self.build_tree([u'abc\xa7/', u'abc\xa7/foo'])
864
tree.add([u'abc\xa7/', u'abc\xa7/foo'])
865
tree.commit('checkin')
867
tree.rename_one(u'abc\xa7','abc')
869
self.run_bzr('ci -m "non-ascii mv"')
872
class TestSmartServerCommit(TestCaseWithTransport):
874
def test_commit_to_lightweight(self):
875
self.setup_smart_server_with_call_log()
876
t = self.make_branch_and_tree('from')
877
for count in range(9):
878
t.commit(message='commit %d' % count)
879
out, err = self.run_bzr(['checkout', '--lightweight', self.get_url('from'),
881
self.reset_smart_call_log()
882
self.build_tree(['target/afile'])
883
self.run_bzr(['add', 'target/afile'])
884
out, err = self.run_bzr(['commit', '-m', 'do something', 'target'])
885
# This figure represent the amount of work to perform this use case. It
886
# is entirely ok to reduce this number if a test fails due to rpc_count
887
# being too low. If rpc_count increases, more network roundtrips have
888
# become necessary for this use case. Please do not adjust this number
889
# upwards without agreement from bzr's network support maintainers.
890
self.assertLength(211, self.hpss_calls)
891
self.assertLength(2, self.hpss_connections)
892
self.expectFailure("commit still uses VFS calls",
893
self.assertThat, self.hpss_calls, ContainsNoVfsCalls)