13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
"""Black box tests for the upgrade ui."""
42
42
self.old_format = bzrdir.BzrDirFormat.get_default_format()
43
43
self.old_ui_factory = ui.ui_factory
44
44
self.addCleanup(self.restoreDefaults)
46
45
ui.ui_factory = TestUIFactory()
47
def restoreDefaults(self):
48
ui.ui_factory = self.old_ui_factory
49
bzrdir.BzrDirFormat._set_default_format(self.old_format)
51
def make_current_format_branch_and_checkout(self):
52
current_tree = self.make_branch_and_tree('current_format_branch',
54
current_tree.branch.create_checkout(
55
self.get_url('current_format_checkout'), lightweight=True)
57
def make_format_5_branch(self):
47
58
# setup a format 5 branch we can upgrade from.
48
59
self.make_branch_and_tree('format_5_branch',
49
60
format=bzrdir.BzrDirFormat5())
51
current_tree = self.make_branch_and_tree('current_format_branch',
62
def make_metadir_weave_branch(self):
53
63
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
65
def test_readonly_url_error(self):
66
self.make_format_5_branch()
62
67
(out, err) = self.run_bzr(
63
68
['upgrade', self.get_readonly_url('format_5_branch')], retcode=3)
64
69
self.assertEqual(out, "")
65
70
self.assertEqual(err, "bzr: ERROR: Upgrade URL cannot work with readonly URLs.\n")
67
72
def test_upgrade_up_to_date(self):
73
self.make_current_format_branch_and_checkout()
68
74
# when up to date we should get a message to that effect
69
75
(out, err) = self.run_bzr('upgrade current_format_branch', retcode=3)
70
76
self.assertEqual("", out)
71
self.assertEqualDiff("bzr: ERROR: The branch format Bazaar-NG meta "
72
"directory, format 1 is already at the most "
77
self.assertEqualDiff("bzr: ERROR: The branch format Meta "
78
"directory format 1 is already at the most "
73
79
"recent format.\n", err)
75
81
def test_upgrade_up_to_date_checkout_warns_branch_left_alone(self):
82
self.make_current_format_branch_and_checkout()
76
83
# when upgrading a checkout, the branch location and a suggestion
77
# to upgrade it should be emitted even if the checkout is up to
84
# to upgrade it should be emitted even if the checkout is up to
79
86
(out, err) = self.run_bzr('upgrade current_format_checkout', retcode=3)
80
87
self.assertEqual("This is a checkout. The branch (%s) needs to be "
81
88
"upgraded separately.\n"
82
89
% get_transport(self.get_url('current_format_branch')).base,
84
self.assertEqualDiff("bzr: ERROR: The branch format Bazaar-NG meta "
85
"directory, format 1 is already at the most "
91
self.assertEqualDiff("bzr: ERROR: The branch format Meta "
92
"directory format 1 is already at the most "
86
93
"recent format.\n", err)
88
95
def test_upgrade_checkout(self):
191
200
out, err = self.run_bzr('revno a')
192
201
if err.find('upgrade') > -1:
193
202
self.fail("message shouldn't suggest upgrade:\n%s" % err)
204
def test_upgrade_shared_repo(self):
205
repo = self.make_repository('repo', format='2a', shared=True)
206
branch = self.make_branch_and_tree('repo/branch', format="pack-0.92")
207
self.get_transport('repo/branch/.bzr/repository').delete_tree('.')
208
out, err = self.run_bzr(['upgrade'], working_dir='repo/branch')