~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_upgrade.py

  • Committer: Martin Pool
  • Date: 2005-05-09 06:22:13 UTC
  • Revision ID: mbp@sourcefrog.net-20050509062213-51c8143658708415
todo

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
2
 
# Authors: Robert Collins <robert.collins@canonical.com>
3
 
# -*- coding: utf-8 -*-
4
 
#
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.
9
 
#
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.
14
 
#
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
18
 
 
19
 
"""Black box tests for the upgrade ui."""
20
 
 
21
 
import os
22
 
 
23
 
import bzrlib
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
31
 
 
32
 
 
33
 
class TestWithUpgradableBranches(TestCaseWithTransport):
34
 
 
35
 
    def setUp(self):
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)
40
 
 
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())
45
 
 
46
 
        current_tree = self.make_branch_and_tree('current_format_branch',
47
 
                                                 format='default')
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)
51
 
 
52
 
    def restoreDefaults(self):
53
 
        ui.ui_factory = self.old_ui_factory
54
 
        bzrdir.BzrDirFormat._set_default_format(self.old_format)
55
 
 
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")
61
 
 
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)
70
 
 
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 
74
 
        # date
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,
80
 
                         out)
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)
84
 
 
85
 
    def test_upgrade_checkout(self):
86
 
        # upgrading a checkout should work
87
 
        pass
88
 
 
89
 
    def test_upgrade_repository_scans_branches(self):
90
 
        # we should get individual upgrade notes for each branch even the 
91
 
        # anonymous branch
92
 
        pass
93
 
 
94
 
    def test_ugrade_branch_in_repo(self):
95
 
        # upgrading a branch in a repo should warn about not upgrading the repo
96
 
        pass
97
 
 
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
114
 
finished
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))
120
 
 
121
 
    def test_upgrade_explicit_knit(self):
122
 
        # users can force an upgrade to knit format from a metadir weave 
123
 
        # branch
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
135
 
repository converted
136
 
finished
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))
144
 
 
145
 
    def test_upgrade_repo(self):
146
 
        self.run_bzr('init-repository', '--format=metaweave', 'repo')
147
 
        self.run_bzr('upgrade', '--format=knit', 'repo')
148
 
 
149
 
 
150
 
class SFTPTests(TestCaseWithSFTPServer):
151
 
    """Tests for upgrade over sftp."""
152
 
 
153
 
    def setUp(self):
154
 
        super(SFTPTests, self).setUp()
155
 
        self.old_ui_factory = ui.ui_factory
156
 
        self.addCleanup(self.restoreDefaults)
157
 
 
158
 
        ui.ui_factory = TestUIFactory()
159
 
 
160
 
    def restoreDefaults(self):
161
 
        ui.ui_factory = self.old_ui_factory
162
 
 
163
 
    def test_upgrade_url(self):
164
 
        self.run_bzr('init', '--format=weave')
165
 
        t = get_transport(self.get_url())
166
 
        url = t.base
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
175
 
repository converted
176
 
finished
177
 
""" % (url, url, url), out)
178
 
        self.assertEqual('', err)