22
22
from bzrlib import (
27
27
revision as _mod_revision,
29
29
from bzrlib.repofmt.knitrepo import RepositoryFormatKnit1
30
from bzrlib.tests.blackbox import ExternalBase
30
from bzrlib.tests import TestCaseWithTransport
31
31
from bzrlib.tests import (
35
from bzrlib.tests.features import (
38
from bzrlib.tests.blackbox import test_switch
39
from bzrlib.tests.matchers import ContainsNoVfsCalls
35
40
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
41
from bzrlib.tests.script import run_script
36
42
from bzrlib.urlutils import local_path_to_url, strip_trailing_slash
37
43
from bzrlib.workingtree import WorkingTree
40
class TestBranch(ExternalBase):
46
class TestBranch(TestCaseWithTransport):
42
def example_branch(self, path='.'):
43
tree = self.make_branch_and_tree(path)
48
def example_branch(self, path='.', format=None):
49
tree = self.make_branch_and_tree(path, format=format)
44
50
self.build_tree_contents([(path + '/hello', 'foo')])
46
52
tree.commit(message='setup')
47
53
self.build_tree_contents([(path + '/goodbye', 'baz')])
48
54
tree.add('goodbye')
49
55
tree.commit(message='setup')
51
58
def test_branch(self):
52
59
"""Branch from one branch to another."""
58
65
self.assertFalse(b._transport.has('branch-name'))
59
66
b.bzrdir.open_workingtree().commit(message='foo', allow_pointless=True)
68
def test_into_colocated(self):
69
"""Branch from a branch into a colocated branch."""
70
self.example_branch('a')
71
out, err = self.run_bzr(
72
'init --format=development-colo file:b,branch=orig')
74
"""Created a lightweight checkout (format: development-colo)\n""",
76
self.assertEqual('', err)
77
out, err = self.run_bzr(
78
'branch a file:b,branch=thiswasa')
79
self.assertEqual('', out)
80
self.assertEqual('Branched 2 revisions.\n', err)
81
out, err = self.run_bzr('branches b')
82
self.assertEqual(" thiswasa\n orig\n", out)
83
self.assertEqual('', err)
84
out,err = self.run_bzr('branch a file:b,branch=orig', retcode=3)
85
self.assertEqual('', out)
86
self.assertEqual('bzr: ERROR: Already a branch: "file:b,branch=orig".\n', err)
88
def test_from_colocated(self):
89
"""Branch from a colocated branch into a regular branch."""
90
tree = self.example_branch('a', format='development-colo')
91
tree.bzrdir.create_branch(name='somecolo')
92
out, err = self.run_bzr('branch %s,branch=somecolo' %
93
local_path_to_url('a'))
94
self.assertEqual('', out)
95
self.assertEqual('Branched 0 revisions.\n', err)
96
self.assertPathExists("somecolo")
98
def test_branch_broken_pack(self):
99
"""branching with a corrupted pack file."""
100
self.example_branch('a')
101
# add some corruption
102
packs_dir = 'a/.bzr/repository/packs/'
103
fname = packs_dir + os.listdir(packs_dir)[0]
104
with open(fname, 'rb+') as f:
105
# Start from the end of the file to avoid choosing a place bigger
106
# than the file itself.
107
f.seek(-5, os.SEEK_END)
109
f.seek(-5, os.SEEK_END)
110
# Make sure we inject a value different than the one we just read
115
f.write(corrupt) # make sure we corrupt something
116
self.run_bzr_error(['Corruption while decompressing repository file'],
117
'branch a b', retcode=3)
61
119
def test_branch_switch_no_branch(self):
62
120
# No branch in the current directory:
63
121
# => new branch will be created, but switch fails
171
229
out, err = self.run_bzr(['branch', 'source', 'target', '--hardlink'])
172
230
source_stat = os.stat('source/file1')
173
231
target_stat = os.stat('target/file1')
174
same_file = (source_stat == target_stat)
178
# https://bugs.edge.launchpad.net/bzr/+bug/408193
179
self.assertContainsRe(err, "hardlinking working copy files is "
180
"not currently supported")
181
raise KnownFailure("--hardlink doesn't work in formats "
182
"that support content filtering (#408193)")
232
self.assertEqual(source_stat, target_stat)
234
def test_branch_files_from(self):
235
source = self.make_branch_and_tree('source')
236
self.build_tree(['source/file1'])
238
source.commit('added file')
239
out, err = self.run_bzr('branch source target --files-from source')
240
self.assertPathExists('target/file1')
242
def test_branch_files_from_hardlink(self):
243
self.requireFeature(HardlinkFeature)
244
source = self.make_branch_and_tree('source')
245
self.build_tree(['source/file1'])
247
source.commit('added file')
248
source.bzrdir.sprout('second')
249
out, err = self.run_bzr('branch source target --files-from second'
251
source_stat = os.stat('source/file1')
252
second_stat = os.stat('second/file1')
253
target_stat = os.stat('target/file1')
254
self.assertNotEqual(source_stat, target_stat)
255
self.assertEqual(second_stat, target_stat)
184
257
def test_branch_standalone(self):
185
258
shared_repo = self.make_repository('repo', shared=True)
210
283
# force operation
211
284
self.run_bzr('branch a b --use-existing-dir')
212
285
# check conflicts
213
self.failUnlessExists('b/hello.moved')
214
self.failIfExists('b/godbye.moved')
286
self.assertPathExists('b/hello.moved')
287
self.assertPathDoesNotExist('b/godbye.moved')
215
288
# we can't branch into branch
216
289
out,err = self.run_bzr('branch a b --use-existing-dir', retcode=3)
217
290
self.assertEqual('', out)
218
291
self.assertEqual('bzr: ERROR: Already a branch: "b".\n', err)
221
class TestBranchStacked(ExternalBase):
293
def test_branch_bind(self):
294
self.example_branch('a')
295
out, err = self.run_bzr('branch a b --bind')
296
self.assertEndsWith(err, "New branch bound to a\n")
297
b = branch.Branch.open('b')
298
self.assertEndsWith(b.get_bound_location(), '/a/')
300
def test_branch_with_post_branch_init_hook(self):
302
branch.Branch.hooks.install_named_hook('post_branch_init',
304
self.assertLength(0, calls)
305
self.example_branch('a')
306
self.assertLength(1, calls)
307
self.run_bzr('branch a b')
308
self.assertLength(2, calls)
310
def test_checkout_with_post_branch_init_hook(self):
312
branch.Branch.hooks.install_named_hook('post_branch_init',
314
self.assertLength(0, calls)
315
self.example_branch('a')
316
self.assertLength(1, calls)
317
self.run_bzr('checkout a b')
318
self.assertLength(2, calls)
320
def test_lightweight_checkout_with_post_branch_init_hook(self):
322
branch.Branch.hooks.install_named_hook('post_branch_init',
324
self.assertLength(0, calls)
325
self.example_branch('a')
326
self.assertLength(1, calls)
327
self.run_bzr('checkout --lightweight a b')
328
self.assertLength(2, calls)
330
def test_branch_fetches_all_tags(self):
331
builder = self.make_branch_builder('source')
332
source = fixtures.build_branch_with_non_ancestral_rev(builder)
333
source.tags.set_tag('tag-a', 'rev-2')
334
source.get_config().set_user_option('branch.fetch_tags', 'True')
335
# Now source has a tag not in its ancestry. Make a branch from it.
336
self.run_bzr('branch source new-branch')
337
new_branch = branch.Branch.open('new-branch')
338
# The tag is present, and so is its revision.
339
self.assertEqual('rev-2', new_branch.tags.lookup_tag('tag-a'))
340
new_branch.repository.get_revision('rev-2')
343
class TestBranchStacked(TestCaseWithTransport):
222
344
"""Tests for branch --stacked"""
224
346
def assertRevisionInRepository(self, repo_path, revid):
255
377
out, err = self.run_bzr(['branch', 'branch', 'newbranch'])
256
378
self.assertEqual('', out)
257
self.assertEqual('Branched 2 revision(s).\n',
379
self.assertEqual('Branched 2 revisions.\n',
259
381
# it should have preserved the branch format, and so it should be
260
382
# capable of supporting stacking, but not actually have a stacked_on
310
432
def test_branch_stacked_from_smart_server(self):
311
433
# We can branch stacking on a smart server
312
from bzrlib.smart.server import SmartTCPServer_for_testing
313
self.transport_server = SmartTCPServer_for_testing
434
self.transport_server = test_server.SmartTCPServer_for_testing
314
435
trunk = self.make_branch('mainline', format='1.9')
315
436
out, err = self.run_bzr(
316
437
['branch', '--stacked', self.get_url('mainline'), 'shallow'])
339
462
' Packs 5 rich-root (adds stacking support, requires bzr 1.6.1)\n'
340
463
'Source branch format does not support stacking, using format:\n'
341
464
' Branch format 7\n'
465
'Doing on-the-fly conversion from RepositoryFormatKnitPack4() to RepositoryFormatKnitPack5RichRoot().\n'
466
'This may take some time. Upgrade the repositories to the same format for better performance.\n'
342
467
'Created new stacked branch referring to %s.\n' % (trunk.base,),
346
class TestSmartServerBranching(ExternalBase):
471
class TestSmartServerBranching(TestCaseWithTransport):
348
473
def test_branch_from_trivial_branch_to_same_server_branch_acceptance(self):
349
474
self.setup_smart_server_with_call_log()
358
483
# being too low. If rpc_count increases, more network roundtrips have
359
484
# become necessary for this use case. Please do not adjust this number
360
485
# upwards without agreement from bzr's network support maintainers.
361
self.assertLength(38, self.hpss_calls)
486
self.assertLength(33, self.hpss_calls)
487
self.expectFailure("branching to the same branch requires VFS access",
488
self.assertThat, self.hpss_calls, ContainsNoVfsCalls)
363
490
def test_branch_from_trivial_branch_streaming_acceptance(self):
364
491
self.setup_smart_server_with_call_log()
394
522
# become necessary for this use case. Please do not adjust this number
395
523
# upwards without agreement from bzr's network support maintainers.
396
524
self.assertLength(15, self.hpss_calls)
525
self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
527
def test_branch_from_branch_with_tags(self):
528
self.setup_smart_server_with_call_log()
529
builder = self.make_branch_builder('source')
530
source = fixtures.build_branch_with_non_ancestral_rev(builder)
531
source.get_config().set_user_option('branch.fetch_tags', 'True')
532
source.tags.set_tag('tag-a', 'rev-2')
533
source.tags.set_tag('tag-missing', 'missing-rev')
534
# Now source has a tag not in its ancestry. Make a branch from it.
535
self.reset_smart_call_log()
536
out, err = self.run_bzr(['branch', self.get_url('source'), 'target'])
537
# This figure represent the amount of work to perform this use case. It
538
# is entirely ok to reduce this number if a test fails due to rpc_count
539
# being too low. If rpc_count increases, more network roundtrips have
540
# become necessary for this use case. Please do not adjust this number
541
# upwards without agreement from bzr's network support maintainers.
542
self.assertLength(10, self.hpss_calls)
543
self.assertThat(self.hpss_calls, ContainsNoVfsCalls)
545
def test_branch_to_stacked_from_trivial_branch_streaming_acceptance(self):
546
self.setup_smart_server_with_call_log()
547
t = self.make_branch_and_tree('from')
548
for count in range(9):
549
t.commit(message='commit %d' % count)
550
self.reset_smart_call_log()
551
out, err = self.run_bzr(['branch', '--stacked', self.get_url('from'),
553
# XXX: the number of hpss calls for this case isn't deterministic yet,
554
# so we can't easily assert about the number of calls.
555
#self.assertLength(XXX, self.hpss_calls)
556
# We can assert that none of the calls were readv requests for rix
557
# files, though (demonstrating that at least get_parent_map calls are
558
# not using VFS RPCs).
559
readvs_of_rix_files = [
560
c for c in self.hpss_calls
561
if c.call.method == 'readv' and c.call.args[-1].endswith('.rix')]
562
self.assertLength(0, readvs_of_rix_files)
563
self.expectFailure("branching to stacked requires VFS access",
564
self.assertThat, self.hpss_calls, ContainsNoVfsCalls)
399
567
class TestRemoteBranch(TestCaseWithSFTPServer):
419
587
# Ensure that no working tree what created remotely
420
588
self.assertFalse(t.has('remote/file'))
591
class TestDeprecatedAliases(TestCaseWithTransport):
593
def test_deprecated_aliases(self):
594
"""bzr branch can be called clone or get, but those names are deprecated.
598
for command in ['clone', 'get']:
600
$ bzr %(command)s A B
601
2>The command 'bzr %(command)s' has been deprecated in bzr 2.4. Please use 'bzr branch' instead.
602
2>bzr: ERROR: Not a branch...
606
class TestBranchParentLocation(test_switch.TestSwitchParentLocationBase):
608
def _checkout_and_branch(self, option=''):
609
self.script_runner.run_script(self, '''
610
$ bzr checkout %(option)s repo/trunk checkout
612
$ bzr branch --switch ../repo/trunk ../repo/branched
613
2>Branched 0 revisions.
614
2>Tree is up to date at revision 0.
615
2>Switched to branch:...branched...
618
bound_branch = branch.Branch.open_containing('checkout')[0]
619
master_branch = branch.Branch.open_containing('repo/branched')[0]
620
return (bound_branch, master_branch)
622
def test_branch_switch_parent_lightweight(self):
623
"""Lightweight checkout using bzr branch --switch."""
624
bb, mb = self._checkout_and_branch(option='--lightweight')
625
self.assertParent('repo/trunk', bb)
626
self.assertParent('repo/trunk', mb)
628
def test_branch_switch_parent_heavyweight(self):
629
"""Heavyweight checkout using bzr branch --switch."""
630
bb, mb = self._checkout_and_branch()
631
self.assertParent('repo/trunk', bb)
632
self.assertParent('repo/trunk', mb)