41
37
super(TestWithUpgradableBranches, self).setUp()
42
self.old_format = bzrdir.BzrDirFormat.get_default_format()
43
self.old_ui_factory = ui.ui_factory
44
self.addCleanup(self.restoreDefaults)
46
ui.ui_factory = TestUIFactory()
38
self.addCleanup(bzrdir.BzrDirFormat._set_default_format,
39
bzrdir.BzrDirFormat.get_default_format())
41
def make_current_format_branch_and_checkout(self):
42
current_tree = self.make_branch_and_tree('current_format_branch',
44
current_tree.branch.create_checkout(
45
self.get_url('current_format_checkout'), lightweight=True)
47
def make_format_5_branch(self):
47
48
# setup a format 5 branch we can upgrade from.
48
49
self.make_branch_and_tree('format_5_branch',
49
50
format=bzrdir.BzrDirFormat5())
51
current_tree = self.make_branch_and_tree('current_format_branch',
52
def make_metadir_weave_branch(self):
53
53
self.make_branch_and_tree('metadir_weave_branch', format='metaweave')
54
current_tree.branch.create_checkout(
55
self.get_url('current_format_checkout'), lightweight=True)
57
def restoreDefaults(self):
58
ui.ui_factory = self.old_ui_factory
59
bzrdir.BzrDirFormat._set_default_format(self.old_format)
61
55
def test_readonly_url_error(self):
56
self.make_format_5_branch()
62
57
(out, err) = self.run_bzr(
63
58
['upgrade', self.get_readonly_url('format_5_branch')], retcode=3)
64
59
self.assertEqual(out, "")
65
60
self.assertEqual(err, "bzr: ERROR: Upgrade URL cannot work with readonly URLs.\n")
67
62
def test_upgrade_up_to_date(self):
63
self.make_current_format_branch_and_checkout()
68
64
# when up to date we should get a message to that effect
69
65
(out, err) = self.run_bzr('upgrade current_format_branch', retcode=3)
70
66
self.assertEqual("", out)
101
98
def test_upgrade_explicit_metaformat(self):
102
99
# users can force an upgrade to metadir format.
100
self.make_format_5_branch()
103
101
url = get_transport(self.get_url('format_5_branch')).base
104
102
# check --format takes effect
105
103
bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
122
120
def test_upgrade_explicit_knit(self):
123
121
# users can force an upgrade to knit format from a metadir weave
123
self.make_metadir_weave_branch()
125
124
url = get_transport(self.get_url('metadir_weave_branch')).base
126
125
# check --format takes effect
127
126
bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
149
148
class SFTPTests(TestCaseWithSFTPServer):
150
149
"""Tests for upgrade over sftp."""
153
super(SFTPTests, self).setUp()
154
self.old_ui_factory = ui.ui_factory
155
self.addCleanup(self.restoreDefaults)
157
ui.ui_factory = TestUIFactory()
159
def restoreDefaults(self):
160
ui.ui_factory = self.old_ui_factory
162
151
def test_upgrade_url(self):
163
152
self.run_bzr('init --format=weave')
164
153
t = get_transport(self.get_url())
175
164
self.assertEqual('', err)
178
class UpgradeRecommendedTests(TestCaseInTempDir):
167
class UpgradeRecommendedTests(TestCaseWithTransport):
180
169
def test_recommend_upgrade_wt4(self):
181
170
# using a deprecated format gives a warning
191
180
out, err = self.run_bzr('revno a')
192
181
if err.find('upgrade') > -1:
193
182
self.fail("message shouldn't suggest upgrade:\n%s" % err)
184
def test_upgrade_shared_repo(self):
185
repo = self.make_repository('repo', format='2a', shared=True)
186
branch = self.make_branch_and_tree('repo/branch', format="pack-0.92")
187
self.get_transport('repo/branch/.bzr/repository').delete_tree('.')
188
out, err = self.run_bzr(['upgrade'], working_dir='repo/branch')