19
19
"""Tests for the update command of bzr."""
32
from bzrlib.tests.script import ScriptRunner
35
class TestUpdate(tests.TestCaseWithTransport):
23
from bzrlib import branch, bzrdir
24
from bzrlib.tests.blackbox import ExternalBase
25
from bzrlib.workingtree import WorkingTree
28
class TestUpdate(ExternalBase):
37
30
def test_update_standalone_trivial(self):
38
31
self.make_branch_and_tree('.')
39
32
out, err = self.run_bzr('update')
41
'Tree is up to date at revision 0 of branch %s\n' % self.test_dir,
43
self.assertEqual('', out)
45
def test_update_quiet(self):
46
self.make_branch_and_tree('.')
47
out, err = self.run_bzr('update --quiet')
48
self.assertEqual('', err)
33
self.assertEqual('Tree is up to date at revision 0.\n', err)
49
34
self.assertEqual('', out)
51
36
def test_update_standalone_trivial_with_alias_up(self):
52
37
self.make_branch_and_tree('.')
53
38
out, err = self.run_bzr('up')
54
self.assertEqual('Tree is up to date at revision 0 of branch %s\n'
39
self.assertEqual('Tree is up to date at revision 0.\n', err)
57
40
self.assertEqual('', out)
59
42
def test_update_up_to_date_light_checkout(self):
60
43
self.make_branch_and_tree('branch')
61
44
self.run_bzr('checkout --lightweight branch checkout')
62
45
out, err = self.run_bzr('update checkout')
63
self.assertEqual('Tree is up to date at revision 0 of branch %s\n'
64
% osutils.pathjoin(self.test_dir, 'branch'),
46
self.assertEqual('Tree is up to date at revision 0.\n', err)
66
47
self.assertEqual('', out)
68
49
def test_update_up_to_date_checkout(self):
69
50
self.make_branch_and_tree('branch')
70
51
self.run_bzr('checkout branch checkout')
72
sr.run_script(self, '''
74
2>Tree is up to date at revision 0 of branch .../branch
52
out, err = self.run_bzr('update checkout')
53
self.assertEqual('Tree is up to date at revision 0.\n', err)
54
self.assertEqual('', out)
77
56
def test_update_out_of_date_standalone_tree(self):
78
57
# FIXME the default format has to change for this to pass
86
65
# now branch should be out of date
87
66
out,err = self.run_bzr('update branch')
88
67
self.assertEqual('', out)
89
self.assertEqualDiff("""+N file
90
All changes applied successfully.
91
Updated to revision 1 of branch %s
92
""" % osutils.pathjoin(self.test_dir, 'branch',),
68
self.assertContainsRe(err, '\+N file')
69
self.assertEndsWith(err, 'All changes applied successfully.\n'
70
'Updated to revision 1.\n')
94
71
self.failUnlessExists('branch/file')
96
73
def test_update_out_of_date_light_checkout(self):
103
80
self.run_bzr('commit -m add-file checkout')
104
81
# now checkout2 should be out of date
105
82
out,err = self.run_bzr('update checkout2')
106
self.assertEqualDiff('''+N file
107
All changes applied successfully.
108
Updated to revision 1 of branch %s
109
''' % osutils.pathjoin(self.test_dir, 'branch',),
83
self.assertContainsRe(err, '\+N file')
84
self.assertEndsWith(err, 'All changes applied successfully.\n'
85
'Updated to revision 1.\n')
111
86
self.assertEqual('', out)
113
88
def test_update_conflicts_returns_2(self):
129
104
a_file.write('Bar')
131
106
out,err = self.run_bzr('update checkout2', retcode=1)
132
self.assertEqualDiff(''' M file
133
Text conflict in file
134
1 conflicts encountered.
135
Updated to revision 2 of branch %s
136
''' % osutils.pathjoin(self.test_dir, 'branch',),
107
self.assertContainsRe(err, 'M file')
108
self.assertEqual(['1 conflicts encountered.',
109
'Updated to revision 2.'],
110
err.split('\n')[-3:-1])
111
self.assertContainsRe(err, 'Text conflict in file\n')
138
112
self.assertEqual('', out)
140
114
def test_smoke_update_checkout_bound_branch_local_commits(self):
144
118
# make a bound branch
145
119
self.run_bzr('checkout master child')
146
120
# get an object form of child
147
child = workingtree.WorkingTree.open('child')
121
child = WorkingTree.open('child')
149
123
self.run_bzr('checkout --lightweight child checkout')
150
124
# get an object form of the checkout to manipulate
151
wt = workingtree.WorkingTree.open('checkout')
125
wt = WorkingTree.open('checkout')
153
127
a_file = file('master/file', 'wt')
154
128
a_file.write('Foo')
171
145
# get all three files and a pending merge.
172
146
out, err = self.run_bzr('update checkout')
173
147
self.assertEqual('', out)
174
self.assertEqualDiff("""+N file
175
All changes applied successfully.
177
All changes applied successfully.
178
Updated to revision 1 of branch %s
179
Your local commits will now show as pending merges with 'bzr status', and can be committed with 'bzr commit'.
180
""" % osutils.pathjoin(self.test_dir, 'master',),
148
self.assertContainsRe(err, '\+N file')
149
self.assertContainsRe(err, '\+N file_b')
150
self.assertContainsRe(err, 'Updated to revision 1.\n'
151
'Your local commits will now show as'
182
153
self.assertEqual([master_tip, child_tip], wt.get_parent_ids())
183
154
self.failUnlessExists('checkout/file')
184
155
self.failUnlessExists('checkout/file_b')
224
195
# merges, because they were real merges
225
196
out, err = self.run_bzr('update')
226
197
self.assertEqual('', out)
227
self.assertEqualDiff('''+N file3
228
All changes applied successfully.
229
Updated to revision 2 of branch %s
230
''' % osutils.pathjoin(self.test_dir, 'master',),
198
self.assertEndsWith(err, 'All changes applied successfully.\n'
199
'Updated to revision 2.\n')
200
self.assertContainsRe(err, r'\+N file3')
232
201
# The pending merges should still be there
233
202
self.assertEqual(['o2'], checkout1.get_parent_ids()[1:])
240
209
lightweight=True)
241
210
tree.commit('empty commit')
242
211
self.run_bzr('update checkout')
244
def test_update_dash_r(self):
245
# Test that 'bzr update' works correctly when you have
246
# an update in the master tree, and a lightweight checkout
247
# which has merged another branch
248
master = self.make_branch_and_tree('master')
250
self.build_tree(['./file1'])
251
master.add(['file1'])
252
master.commit('one', rev_id='m1')
253
self.build_tree(['./file2'])
254
master.add(['file2'])
255
master.commit('two', rev_id='m2')
258
sr.run_script(self, '''
261
2>All changes applied successfully.
262
2>Updated to revision 1 of .../master
264
self.failUnlessExists('./file1')
265
self.failIfExists('./file2')
266
self.assertEquals(['m1'], master.get_parent_ids())
268
def test_update_dash_r_outside_history(self):
269
# Test that 'bzr update' works correctly when you have
270
# an update in the master tree, and a lightweight checkout
271
# which has merged another branch
272
master = self.make_branch_and_tree('master')
273
self.build_tree(['master/file1'])
274
master.add(['file1'])
275
master.commit('one', rev_id='m1')
277
# Create a second branch, with an extra commit
278
other = master.bzrdir.sprout('other').open_workingtree()
279
self.build_tree(['other/file2'])
281
other.commit('other2', rev_id='o2')
284
self.run_bzr('merge ../other')
285
master.commit('merge', rev_id='merge')
287
out, err = self.run_bzr('update -r revid:o2',
289
self.assertEqual('', out)
290
self.assertEqual('bzr: ERROR: branch has no revision o2\n'
291
'bzr update --revision only works'
292
' for a revision in the branch history\n',
295
def test_update_dash_r_in_master(self):
296
# Test that 'bzr update' works correctly when you have
297
# an update in the master tree,
298
master = self.make_branch_and_tree('master')
299
self.build_tree(['master/file1'])
300
master.add(['file1'])
301
master.commit('one', rev_id='m1')
303
self.run_bzr('checkout master checkout')
305
# add a revision in the master.
306
self.build_tree(['master/file2'])
307
master.add(['file2'])
308
master.commit('two', rev_id='m2')
312
sr.run_script(self, '''
313
$ bzr update -r revid:m2
315
2>All changes applied successfully.
316
2>Updated to revision 2 of branch .../master