1
# Copyright (C) 2007 Canonical Ltd
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.
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.
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
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
"""Tests for bzrlib.switch."""
22
from bzrlib import branch, errors, switch, tests
25
class TestSwitch(tests.TestCaseWithTransport):
28
super(TestSwitch, self).setUp()
29
self.lightweight = True
31
def _setup_tree(self):
32
tree = self.make_branch_and_tree('branch-1')
33
self.build_tree(['branch-1/file-1'])
38
def test_switch_updates(self):
39
"""Test switch updates tree and keeps uncommitted changes."""
40
tree = self._setup_tree()
41
to_branch = tree.bzrdir.sprout('branch-2').open_branch()
42
self.build_tree(['branch-1/file-2'])
46
checkout = tree.branch.create_checkout('checkout',
47
lightweight=self.lightweight)
48
self.build_tree(['checkout/file-3'])
49
checkout.add('file-3')
50
self.failIfExists('checkout/file-1')
51
self.failUnlessExists('checkout/file-2')
52
switch.switch(checkout.bzrdir, to_branch)
53
self.failUnlessExists('checkout/file-1')
54
self.failIfExists('checkout/file-2')
55
self.failUnlessExists('checkout/file-3')
57
def test_switch_after_branch_moved(self):
58
"""Test switch after the branch is moved."""
59
tree = self._setup_tree()
60
checkout = tree.branch.create_checkout('checkout',
61
lightweight=self.lightweight)
62
self.build_tree(['branch-1/file-2'])
66
self.build_tree(['checkout/file-3'])
67
checkout.add('file-3')
68
checkout_dir = checkout.bzrdir
69
# rename the branch on disk, the checkout object is now invalid.
70
os.rename('branch-1', 'branch-2')
71
to_branch = branch.Branch.open('branch-2')
72
# Check fails without --force
73
err = self.assertRaises(
74
(errors.BzrCommandError, errors.NotBranchError),
75
switch.switch, checkout.bzrdir, to_branch)
76
if isinstance(err, errors.BzrCommandError):
77
self.assertContainsRe(str(err),
78
'Unable to connect to current master branch .*'
79
'To switch anyway, use --force.')
80
switch.switch(checkout.bzrdir, to_branch, force=True)
81
self.failIfExists('checkout/file-1')
82
self.failUnlessExists('checkout/file-2')
83
self.failUnlessExists('checkout/file-3')
85
def test_switch_when_pending_merges(self):
86
"""Test graceful failure if pending merges are outstanding."""
87
# Create 2 branches and a checkout
88
tree = self._setup_tree()
89
tree2 = tree.bzrdir.sprout('branch-2').open_workingtree()
90
checkout = tree.branch.create_checkout('checkout',
91
lightweight=self.lightweight)
92
# Change tree2 and merge it into the checkout without committing
93
self.build_tree(['branch-2/file-2'])
96
checkout.merge_from_branch(tree2.branch)
97
# Check the error reporting is as expected
98
err = self.assertRaises(errors.BzrCommandError,
99
switch.switch, checkout.bzrdir, tree2.branch)
100
self.assertContainsRe(str(err),
101
"Pending merges must be committed or reverted before using switch")
104
class TestSwitchHeavyweight(TestSwitch):
107
super(TestSwitchHeavyweight, self).setUp()
108
self.lightweight = False
110
def test_switch_with_local_commits(self):
111
"""Test switch complains about local commits unless --force given."""
112
tree = self._setup_tree()
113
to_branch = tree.bzrdir.sprout('branch-2').open_branch()
114
self.build_tree(['branch-1/file-2'])
116
tree.remove('file-1')
118
checkout = tree.branch.create_checkout('checkout')
119
self.build_tree(['checkout/file-3'])
120
checkout.add('file-3')
121
checkout.commit(message='local only commit', local=True)
122
self.build_tree(['checkout/file-4'])
123
# Check the error reporting is as expected
124
err = self.assertRaises(errors.BzrCommandError,
125
switch.switch, checkout.bzrdir, to_branch)
126
self.assertContainsRe(str(err),
127
'Cannot switch as local commits found in the checkout.')
128
# Check all is ok when force is given
129
self.failIfExists('checkout/file-1')
130
self.failUnlessExists('checkout/file-2')
131
switch.switch(checkout.bzrdir, to_branch, force=True)
132
self.failUnlessExists('checkout/file-1')
133
self.failIfExists('checkout/file-2')
134
self.failIfExists('checkout/file-3')
135
self.failUnlessExists('checkout/file-4')
136
# Check that the checkout is a true mirror of the bound branch
137
self.assertEqual(to_branch.last_revision_info(),
138
checkout.branch.last_revision_info())