1
# Copyright (C) 2006 Canonical Ltd
2
# Authors: Robert Collins <robert.collins@canonical.com>
3
# -*- coding: utf-8 -*-
5
# This program is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 2 of the License, or
8
# (at your option) any later version.
10
# This program is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
15
# You should have received a copy of the GNU General Public License
16
# along with this program; if not, write to the Free Software
17
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19
"""Black box tests for the upgrade ui."""
24
import bzrlib.bzrdir as bzrdir
25
import bzrlib.repository as repository
26
from bzrlib.tests import TestCaseWithTransport
27
from bzrlib.tests.blackbox import TestUIFactory
28
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
29
from bzrlib.transport import get_transport
30
import bzrlib.ui as ui
33
class TestWithUpgradableBranches(TestCaseWithTransport):
36
super(TestWithUpgradableBranches, self).setUp()
37
self.old_format = bzrdir.BzrDirFormat.get_default_format()
38
self.old_ui_factory = ui.ui_factory
39
self.addCleanup(self.restoreDefaults)
41
ui.ui_factory = TestUIFactory()
42
# setup a format 5 branch we can upgrade from.
43
self.make_branch_and_tree('format_5_branch',
44
format=bzrdir.BzrDirFormat5())
46
current_tree = self.make_branch_and_tree('current_format_branch',
48
self.make_branch_and_tree('metadir_weave_branch', format='metaweave')
49
current_tree.branch.create_checkout(
50
self.get_url('current_format_checkout'), lightweight=True)
52
def restoreDefaults(self):
53
ui.ui_factory = self.old_ui_factory
54
bzrdir.BzrDirFormat._set_default_format(self.old_format)
56
def test_readonly_url_error(self):
57
(out, err) = self.run_bzr_captured(
58
['upgrade', self.get_readonly_url('format_5_branch')], 3)
59
self.assertEqual(out, "")
60
self.assertEqual(err, "bzr: ERROR: Upgrade URL cannot work with readonly URLs.\n")
62
def test_upgrade_up_to_date(self):
63
# when up to date we should get a message to that effect
64
(out, err) = self.run_bzr_captured(
65
['upgrade', 'current_format_branch'], 3)
66
self.assertEqual("", out)
67
self.assertEqualDiff("bzr: ERROR: The branch format Bazaar-NG meta "
68
"directory, format 1 is already at the most "
69
"recent format.\n", err)
71
def test_upgrade_up_to_date_checkout_warns_branch_left_alone(self):
72
# when upgrading a checkout, the branch location and a suggestion
73
# to upgrade it should be emitted even if the checkout is up to
75
(out, err) = self.run_bzr_captured(
76
['upgrade', 'current_format_checkout'], 3)
77
self.assertEqual("This is a checkout. The branch (%s) needs to be "
78
"upgraded separately.\n"
79
% get_transport(self.get_url('current_format_branch')).base,
81
self.assertEqualDiff("bzr: ERROR: The branch format Bazaar-NG meta "
82
"directory, format 1 is already at the most "
83
"recent format.\n", err)
85
def test_upgrade_checkout(self):
86
# upgrading a checkout should work
89
def test_upgrade_repository_scans_branches(self):
90
# we should get individual upgrade notes for each branch even the
94
def test_ugrade_branch_in_repo(self):
95
# upgrading a branch in a repo should warn about not upgrading the repo
98
def test_upgrade_explicit_metaformat(self):
99
# users can force an upgrade to metadir format.
100
url = get_transport(self.get_url('format_5_branch')).base
101
# check --format takes effect
102
bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
103
(out, err) = self.run_bzr_captured(
104
['upgrade', '--format=metaweave', url])
105
self.assertEqualDiff("""starting upgrade of %s
106
making backup of tree history
107
%s.bzr has been backed up to %s.bzr.backup
108
if conversion fails, you can move this directory back to .bzr
109
if it succeeds, you can remove this directory if you wish
110
starting upgrade from format 5 to 6
111
adding prefixes to weaves
112
adding prefixes to revision-store
113
starting upgrade from format 6 to metadir
115
""" % (url, url, url), out)
116
self.assertEqualDiff("", err)
117
self.assertTrue(isinstance(
118
bzrdir.BzrDir.open(self.get_url('format_5_branch'))._format,
119
bzrdir.BzrDirMetaFormat1))
121
def test_upgrade_explicit_knit(self):
122
# users can force an upgrade to knit format from a metadir weave
124
url = get_transport(self.get_url('metadir_weave_branch')).base
125
# check --format takes effect
126
bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
127
(out, err) = self.run_bzr_captured(
128
['upgrade', '--format=knit', url])
129
self.assertEqualDiff("""starting upgrade of %s
130
making backup of tree history
131
%s.bzr has been backed up to %s.bzr.backup
132
if conversion fails, you can move this directory back to .bzr
133
if it succeeds, you can remove this directory if you wish
134
starting repository conversion
137
""" % (url, url, url), out)
138
self.assertEqualDiff("", err)
139
converted_dir = bzrdir.BzrDir.open(self.get_url('metadir_weave_branch'))
140
self.assertTrue(isinstance(converted_dir._format,
141
bzrdir.BzrDirMetaFormat1))
142
self.assertTrue(isinstance(converted_dir.open_repository()._format,
143
repository.RepositoryFormatKnit1))
145
def test_upgrade_repo(self):
146
self.run_bzr('init-repository', '--format=metaweave', 'repo')
147
self.run_bzr('upgrade', '--format=knit', 'repo')
150
class SFTPTests(TestCaseWithSFTPServer):
151
"""Tests for upgrade over sftp."""
154
super(SFTPTests, self).setUp()
155
self.old_ui_factory = ui.ui_factory
156
self.addCleanup(self.restoreDefaults)
158
ui.ui_factory = TestUIFactory()
160
def restoreDefaults(self):
161
ui.ui_factory = self.old_ui_factory
163
def test_upgrade_url(self):
164
self.run_bzr('init', '--format=weave')
165
t = get_transport(self.get_url())
167
out, err = self.run_bzr('upgrade', '--format=knit', url)
168
self.assertEqualDiff("""starting upgrade of %s
169
making backup of tree history
170
%s.bzr has been backed up to %s.bzr.backup
171
if conversion fails, you can move this directory back to .bzr
172
if it succeeds, you can remove this directory if you wish
173
starting upgrade from format 6 to metadir
174
starting repository conversion
177
""" % (url, url, url), out)
178
self.assertEqual('', err)