44
54
def test_pull(self):
45
55
"""Pull changes from one branch to another."""
46
56
a_tree = self.example_branch('a')
48
self.run_bzr('pull', retcode=3)
49
self.run_bzr('missing', retcode=3)
50
self.run_bzr('missing .')
51
self.run_bzr('missing')
57
base_rev = a_tree.branch.last_revision()
58
self.run_bzr('pull', retcode=3, working_dir='a')
59
self.run_bzr('missing', retcode=3, working_dir='a')
60
self.run_bzr('missing .', working_dir='a')
61
self.run_bzr('missing', working_dir='a')
52
62
# this will work on windows because we check for the same branch
53
63
# in pull - if it fails, it is a regression
55
self.run_bzr('pull /', retcode=3)
64
self.run_bzr('pull', working_dir='a')
65
self.run_bzr('pull /', retcode=3, working_dir='a')
56
66
if sys.platform not in ('win32', 'cygwin'):
67
self.run_bzr('pull', working_dir='a')
60
69
b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
70
self.run_bzr('pull', working_dir='b')
64
72
b_tree.add('subdir')
65
b_tree.commit(message='blah', allow_pointless=True)
70
self.assertEqual(a.revision_history(), b.revision_history()[:-1])
73
self.run_bzr('pull ../b')
74
self.assertEqual(a.revision_history(), b.revision_history())
73
new_rev = b_tree.commit(message='blah', allow_pointless=True)
75
a = branch.Branch.open('a')
76
b = branch.Branch.open('b')
77
self.assertEqual(a.last_revision(), base_rev)
78
self.assertEqual(b.last_revision(), new_rev)
80
self.run_bzr('pull ../b', working_dir='a')
81
self.assertEqual(a.last_revision(), b.last_revision())
75
82
a_tree.commit(message='blah2', allow_pointless=True)
76
83
b_tree.commit(message='blah3', allow_pointless=True)
79
self.run_bzr('pull ../a', retcode=3)
85
self.run_bzr('pull ../a', retcode=3, working_dir='b')
81
86
b_tree.bzrdir.sprout('overwriteme')
82
os.chdir('overwriteme')
83
self.run_bzr('pull --overwrite ../a')
84
overwritten = Branch.open('.')
85
self.assertEqual(overwritten.revision_history(),
87
self.run_bzr('pull --overwrite ../a', working_dir='overwriteme')
88
overwritten = branch.Branch.open('overwriteme')
89
self.assertEqual(overwritten.last_revision(),
87
91
a_tree.merge_from_branch(b_tree.branch)
88
92
a_tree.commit(message="blah4", allow_pointless=True)
89
os.chdir('../b/subdir')
90
self.run_bzr('pull ../../a')
91
self.assertEqual(a.revision_history()[-1], b.revision_history()[-1])
92
sub_tree = WorkingTree.open_containing('.')[0]
94
self.run_bzr('pull ../../a', working_dir='b/subdir')
95
self.assertEqual(a.last_revision(), b.last_revision())
96
sub_tree = workingtree.WorkingTree.open_containing('b/subdir')[0]
93
97
sub_tree.commit(message="blah5", allow_pointless=True)
94
98
sub_tree.commit(message="blah6", allow_pointless=True)
96
self.run_bzr('pull ../a')
99
self.run_bzr('pull ../a', working_dir='b')
98
100
a_tree.commit(message="blah7", allow_pointless=True)
99
101
a_tree.merge_from_branch(b_tree.branch)
100
102
a_tree.commit(message="blah8", allow_pointless=True)
101
self.run_bzr('pull ../b')
102
self.run_bzr('pull ../b')
103
self.run_bzr('pull ../b', working_dir='a')
104
self.run_bzr('pull ../b', working_dir='a')
104
106
def test_pull_dash_d(self):
105
107
self.example_branch('a')
224
236
tree_a.commit('commit b')
226
238
parent = branch_b.get_parent()
239
branch_b = branch.Branch.open('branch_b')
227
240
branch_b.set_parent(None)
228
241
self.assertEqual(None, branch_b.get_parent())
229
242
# test pull for failure without parent set
231
out = self.run_bzr('pull', retcode=3)
243
out = self.run_bzr('pull', retcode=3, working_dir='branch_b')
232
244
self.assertEqual(out,
233
245
('','bzr: ERROR: No pull location known or specified.\n'))
234
246
# test implicit --remember when no parent set, this pull conflicts
235
self.build_tree(['d'])
247
self.build_tree(['branch_b/d'])
237
249
tree_b.commit('commit d')
238
out = self.run_bzr('pull ../branch_a', retcode=3)
250
out = self.run_bzr('pull ../branch_a', retcode=3,
251
working_dir='branch_b')
239
252
self.assertEqual(out,
240
253
('','bzr: ERROR: These branches have diverged.'
241
' Use the merge command to reconcile them.\n'))
242
self.assertEqual(branch_b.get_parent(), parent)
254
' Use the missing command to see how.\n'
255
'Use the merge command to reconcile them.\n'))
256
tree_b = tree_b.bzrdir.open_workingtree()
257
branch_b = tree_b.branch
258
self.assertEqual(parent, branch_b.get_parent())
243
259
# test implicit --remember after resolving previous failure
244
uncommit(branch=branch_b, tree=tree_b)
245
transport.delete('branch_b/d')
260
uncommit.uncommit(branch=branch_b, tree=tree_b)
261
t.delete('branch_b/d')
262
self.run_bzr('pull', working_dir='branch_b')
263
# Refresh the branch object as 'pull' modified it
264
branch_b = branch_b.bzrdir.open_branch()
247
265
self.assertEqual(branch_b.get_parent(), parent)
248
266
# test explicit --remember
249
self.run_bzr('pull ../branch_c --remember')
250
self.assertEqual(branch_b.get_parent(),
251
branch_c.bzrdir.root_transport.base)
267
self.run_bzr('pull ../branch_c --remember', working_dir='branch_b')
268
# Refresh the branch object as 'pull' modified it
269
branch_b = branch_b.bzrdir.open_branch()
270
self.assertEqual(branch_c.bzrdir.root_transport.base,
271
branch_b.get_parent())
253
273
def test_pull_bundle(self):
254
274
from bzrlib.testament import Testament
255
275
# Build up 2 trees and prepare for a pull
256
276
tree_a = self.make_branch_and_tree('branch_a')
257
f = open('branch_a/a', 'wb')
277
with open('branch_a/a', 'wb') as f:
261
280
tree_a.commit('message')
263
282
tree_b = tree_a.bzrdir.sprout('branch_b').open_workingtree()
265
284
# Make a change to 'a' that 'b' can pull
266
f = open('branch_a/a', 'wb')
285
with open('branch_a/a', 'wb') as f:
269
287
tree_a.commit('message')
271
289
# Create the bundle for 'b' to pull
273
self.run_bzr('bundle ../branch_b -o ../bundle')
290
self.run_bzr('bundle ../branch_b -o ../bundle', working_dir='branch_a')
275
os.chdir('../branch_b')
276
out, err = self.run_bzr('pull ../bundle')
292
out, err = self.run_bzr('pull ../bundle', working_dir='branch_b')
277
293
self.assertEqual(out,
278
294
'Now on revision 2.\n')
279
295
self.assertEqual(err,
280
296
' M a\nAll changes applied successfully.\n')
282
self.assertEqualDiff(tree_a.branch.revision_history(),
283
tree_b.branch.revision_history())
298
self.assertEqualDiff(tree_a.branch.last_revision(),
299
tree_b.branch.last_revision())
285
301
testament_a = Testament.from_revision(tree_a.branch.repository,
286
302
tree_a.get_parent_ids()[0])
305
321
self.assertContainsRe(out, 'bar')
306
322
self.assertNotContainsRe(out, 'added:')
307
323
self.assertNotContainsRe(out, 'foo')
325
def test_pull_quiet(self):
326
"""Check that bzr pull --quiet does not print anything"""
327
tree_a = self.make_branch_and_tree('tree_a')
328
self.build_tree(['tree_a/foo'])
330
revision_id = tree_a.commit('bar')
331
tree_b = tree_a.bzrdir.sprout('tree_b').open_workingtree()
332
out, err = self.run_bzr('pull --quiet -d tree_b')
333
self.assertEqual(out, '')
334
self.assertEqual(err, '')
335
self.assertEqual(tree_b.last_revision(), revision_id)
336
self.build_tree(['tree_a/moo'])
338
revision_id = tree_a.commit('quack')
339
out, err = self.run_bzr('pull --quiet -d tree_b')
340
self.assertEqual(out, '')
341
self.assertEqual(err, '')
342
self.assertEqual(tree_b.last_revision(), revision_id)
344
def test_pull_from_directory_service(self):
345
source = self.make_branch_and_tree('source')
346
source.commit('commit 1')
347
target = source.bzrdir.sprout('target').open_workingtree()
348
source_last = source.commit('commit 2')
349
class FooService(object):
350
"""A directory service that always returns source"""
352
def look_up(self, name, url):
354
directories.register('foo:', FooService, 'Testing directory service')
355
self.addCleanup(directories.remove, 'foo:')
356
self.run_bzr('pull foo:bar -d target')
357
self.assertEqual(source_last, target.last_revision())
359
def test_pull_verbose_defaults_to_long(self):
360
tree = self.example_branch('source')
361
target = self.make_branch_and_tree('target')
362
out = self.run_bzr('pull -v source -d target')[0]
363
self.assertContainsRe(out,
364
r'revno: 1\ncommitter: .*\nbranch nick: source')
365
self.assertNotContainsRe(out, r'\n {4}1 .*\n {6}setup\n')
367
def test_pull_verbose_uses_default_log(self):
368
tree = self.example_branch('source')
369
target = self.make_branch_and_tree('target')
370
target.branch.get_config_stack().set('log_format', 'short')
371
out = self.run_bzr('pull -v source -d target')[0]
372
self.assertContainsRe(out, r'\n {4}1 .*\n {6}setup\n')
373
self.assertNotContainsRe(
374
out, r'revno: 1\ncommitter: .*\nbranch nick: source')
376
def test_pull_smart_bound_branch(self):
377
self.setup_smart_server_with_call_log()
378
parent = self.make_branch_and_tree('parent')
379
parent.commit(message='first commit')
380
child = parent.bzrdir.sprout('child').open_workingtree()
381
child.commit(message='second commit')
382
checkout = parent.branch.create_checkout('checkout')
383
self.run_bzr(['pull', self.get_url('child')], working_dir='checkout')
385
def test_pull_smart_stacked_streaming_acceptance(self):
386
"""'bzr pull -r 123' works on stacked, smart branches, even when the
387
revision specified by the revno is only present in the fallback
390
See <https://launchpad.net/bugs/380314>
392
self.setup_smart_server_with_call_log()
393
# Make a stacked-on branch with two commits so that the
394
# revision-history can't be determined just by looking at the parent
395
# field in the revision in the stacked repo.
396
parent = self.make_branch_and_tree('parent', format='1.9')
397
parent.commit(message='first commit')
398
parent.commit(message='second commit')
399
local = parent.bzrdir.sprout('local').open_workingtree()
400
local.commit(message='local commit')
401
local.branch.create_clone_on_transport(
402
self.get_transport('stacked'), stacked_on=self.get_url('parent'))
403
empty = self.make_branch_and_tree('empty', format='1.9')
404
self.reset_smart_call_log()
405
self.run_bzr(['pull', '-r', '1', self.get_url('stacked')],
407
# This figure represent the amount of work to perform this use case. It
408
# is entirely ok to reduce this number if a test fails due to rpc_count
409
# being too low. If rpc_count increases, more network roundtrips have
410
# become necessary for this use case. Please do not adjust this number
411
# upwards without agreement from bzr's network support maintainers.
412
self.assertLength(19, self.hpss_calls)
413
self.assertLength(1, self.hpss_connections)
414
remote = branch.Branch.open('stacked')
415
self.assertEndsWith(remote.get_stacked_on_url(), '/parent')
417
def test_pull_cross_format_warning(self):
418
"""You get a warning for probably slow cross-format pulls.
420
# this is assumed to be going through InterDifferingSerializer
421
from_tree = self.make_branch_and_tree('from', format='2a')
422
to_tree = self.make_branch_and_tree('to', format='1.14-rich-root')
423
from_tree.commit(message='first commit')
424
out, err = self.run_bzr(['pull', '-d', 'to', 'from'])
425
self.assertContainsRe(err,
426
"(?m)Doing on-the-fly conversion")
428
def test_pull_cross_format_warning_no_IDS(self):
429
"""You get a warning for probably slow cross-format pulls.
431
# this simulates what would happen across the network, where
432
# interdifferingserializer is not active
434
debug.debug_flags.add('IDS_never')
435
# TestCase take care of restoring them
437
from_tree = self.make_branch_and_tree('from', format='2a')
438
to_tree = self.make_branch_and_tree('to', format='1.14-rich-root')
439
from_tree.commit(message='first commit')
440
out, err = self.run_bzr(['pull', '-d', 'to', 'from'])
441
self.assertContainsRe(err,
442
"(?m)Doing on-the-fly conversion")
444
def test_pull_cross_format_from_network(self):
445
self.setup_smart_server_with_call_log()
446
from_tree = self.make_branch_and_tree('from', format='2a')
447
to_tree = self.make_branch_and_tree('to', format='1.14-rich-root')
448
self.assertIsInstance(from_tree.branch, remote.RemoteBranch)
449
from_tree.commit(message='first commit')
450
out, err = self.run_bzr(['pull', '-d', 'to',
451
from_tree.branch.bzrdir.root_transport.base])
452
self.assertContainsRe(err,
453
"(?m)Doing on-the-fly conversion")
455
def test_pull_to_experimental_format_warning(self):
456
"""You get a warning for pulling into experimental formats.
458
from_tree = self.make_branch_and_tree('from', format='development-subtree')
459
to_tree = self.make_branch_and_tree('to', format='development-subtree')
460
from_tree.commit(message='first commit')
461
out, err = self.run_bzr(['pull', '-d', 'to', 'from'])
462
self.assertContainsRe(err,
463
"(?m)Fetching into experimental format")
465
def test_pull_cross_to_experimental_format_warning(self):
466
"""You get a warning for pulling into experimental formats.
468
from_tree = self.make_branch_and_tree('from', format='2a')
469
to_tree = self.make_branch_and_tree('to', format='development-subtree')
470
from_tree.commit(message='first commit')
471
out, err = self.run_bzr(['pull', '-d', 'to', 'from'])
472
self.assertContainsRe(err,
473
"(?m)Fetching into experimental format")
475
def test_pull_show_base(self):
476
"""bzr pull supports --show-base
478
see https://bugs.launchpad.net/bzr/+bug/202374"""
479
# create two trees with conflicts, setup conflict, check that
480
# conflicted file looks correct
481
a_tree = self.example_branch('a')
482
b_tree = a_tree.bzrdir.sprout('b').open_workingtree()
484
with open(osutils.pathjoin('a', 'hello'),'wt') as f:
488
with open(osutils.pathjoin('b', 'hello'),'wt') as f:
491
out,err=self.run_bzr(['pull','-d','b','a','--show-base'])
493
# check for message here
496
' M hello\nText conflict in hello\n1 conflicts encountered.\n')
498
self.assertEqualDiff('<<<<<<< TREE\n'
499
'fie||||||| BASE-REVISION\n'
501
'fee>>>>>>> MERGE-SOURCE\n',
502
open(osutils.pathjoin('b', 'hello')).read())
504
def test_pull_show_base_working_tree_only(self):
505
"""--show-base only allowed if there's a working tree
507
see https://bugs.launchpad.net/bzr/+bug/202374"""
508
# create a branch, see that --show-base fails
509
self.make_branch('from')
510
self.make_branch('to')
511
out=self.run_bzr(['pull','-d','to','from','--show-base'],retcode=3)
513
out, ('','bzr: ERROR: Need working tree for --show-base.\n'))
515
def test_pull_tag_conflicts(self):
516
"""pulling tags with conflicts will change the exit code"""
517
# create a branch, see that --show-base fails
518
from_tree = self.make_branch_and_tree('from')
519
from_tree.branch.tags.set_tag("mytag", "somerevid")
520
to_tree = self.make_branch_and_tree('to')
521
to_tree.branch.tags.set_tag("mytag", "anotherrevid")
522
out = self.run_bzr(['pull','-d','to','from'],retcode=1)
523
self.assertEqual(out,
524
('No revisions to pull.\nConflicting tags:\n mytag\n', ''))
526
def test_pull_tag_notification(self):
527
"""pulling tags with conflicts will change the exit code"""
528
# create a branch, see that --show-base fails
529
from_tree = self.make_branch_and_tree('from')
530
from_tree.branch.tags.set_tag("mytag", "somerevid")
531
to_tree = self.make_branch_and_tree('to')
532
out = self.run_bzr(['pull', '-d', 'to', 'from'])
533
self.assertEqual(out,
534
('1 tag(s) updated.\n', ''))
536
def test_overwrite_tags(self):
537
"""--overwrite-tags only overwrites tags, not revisions."""
538
from_tree = self.make_branch_and_tree('from')
539
from_tree.branch.tags.set_tag("mytag", "somerevid")
540
to_tree = self.make_branch_and_tree('to')
541
to_tree.branch.tags.set_tag("mytag", "anotherrevid")
542
revid1 = to_tree.commit('my commit')
543
out = self.run_bzr(['pull', '-d', 'to', 'from'], retcode=1)
544
self.assertEquals(out,
545
('No revisions to pull.\nConflicting tags:\n mytag\n', ''))
546
out = self.run_bzr(['pull', '-d', 'to', '--overwrite-tags', 'from'])
547
self.assertEquals(out, ('1 tag(s) updated.\n', ''))
549
self.assertEquals(to_tree.branch.tags.lookup_tag('mytag'),
551
self.assertEquals(to_tree.branch.last_revision(), revid1)
553
def test_pull_tag_overwrite(self):
554
"""pulling tags with --overwrite only reports changed tags."""
555
# create a branch, see that --show-base fails
556
from_tree = self.make_branch_and_tree('from')
557
from_tree.branch.tags.set_tag("mytag", "somerevid")
558
to_tree = self.make_branch_and_tree('to')
559
to_tree.branch.tags.set_tag("mytag", "somerevid")
560
out = self.run_bzr(['pull', '--overwrite', '-d', 'to', 'from'])
561
self.assertEqual(out,
562
('No revisions or tags to pull.\n', ''))
565
class TestPullOutput(script.TestCaseWithTransportAndScript):
567
def test_pull_log_format(self):
570
Created a standalone tree (format: 2a)
575
$ bzr commit -m 'we need some foo'
576
2>Committing to:...trunk/
578
2>Committed revision 1.
581
Created a standalone tree (format: 2a)
583
$ bzr pull -v ../trunk -Olog_format=line
586
1: jrandom@example.com ...we need some foo
588
2>All changes applied successfully.