~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

Merge description into dont-add-conflict-helpers

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 
17
17
"""Black box tests for the upgrade ui."""
18
18
 
 
19
import os
 
20
 
19
21
from bzrlib import (
20
22
    bzrdir,
21
23
    repository,
 
24
    ui,
22
25
    )
23
26
from bzrlib.tests import (
24
27
    TestCaseInTempDir,
25
28
    TestCaseWithTransport,
 
29
    TestUIFactory,
26
30
    )
27
31
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
28
32
from bzrlib.transport import get_transport
35
39
 
36
40
    def setUp(self):
37
41
        super(TestWithUpgradableBranches, self).setUp()
38
 
        self.addCleanup(bzrdir.BzrDirFormat._set_default_format,
39
 
                        bzrdir.BzrDirFormat.get_default_format())
 
42
        self.old_format = bzrdir.BzrDirFormat.get_default_format()
 
43
        self.old_ui_factory = ui.ui_factory
 
44
        self.addCleanup(self.restoreDefaults)
 
45
        ui.ui_factory = TestUIFactory()
 
46
 
 
47
    def restoreDefaults(self):
 
48
        ui.ui_factory = self.old_ui_factory
 
49
        bzrdir.BzrDirFormat._set_default_format(self.old_format)
40
50
 
41
51
    def make_current_format_branch_and_checkout(self):
42
52
        current_tree = self.make_branch_and_tree('current_format_branch',
101
111
        url = get_transport(self.get_url('format_5_branch')).base
102
112
        # check --format takes effect
103
113
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
104
 
        backup_dir = 'backup.bzr.~1~'
105
114
        (out, err) = self.run_bzr(
106
115
            ['upgrade', '--format=metaweave', url])
107
116
        self.assertEqualDiff("""starting upgrade of %s
108
117
making backup of %s.bzr
109
 
  to %s%s
 
118
  to %sbackup.bzr
110
119
starting upgrade from format 5 to 6
111
120
adding prefixes to weaves
112
121
adding prefixes to revision-store
113
122
starting upgrade from format 6 to metadir
114
123
finished
115
 
""" % (url, url, url, backup_dir), out)
 
124
""" % (url, url, url), out)
116
125
        self.assertEqualDiff("", err)
117
126
        self.assertTrue(isinstance(
118
127
            bzrdir.BzrDir.open(self.get_url('format_5_branch'))._format,
125
134
        url = get_transport(self.get_url('metadir_weave_branch')).base
126
135
        # check --format takes effect
127
136
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
128
 
        backup_dir = 'backup.bzr.~1~'
129
137
        (out, err) = self.run_bzr(
130
138
            ['upgrade', '--format=knit', url])
131
139
        self.assertEqualDiff("""starting upgrade of %s
132
140
making backup of %s.bzr
133
 
  to %s%s
 
141
  to %sbackup.bzr
134
142
starting repository conversion
135
143
repository converted
136
144
finished
137
 
""" % (url, url, url, backup_dir), out)
 
145
""" % (url, url, url), out)
138
146
        self.assertEqualDiff("", err)
139
147
        converted_dir = bzrdir.BzrDir.open(self.get_url('metadir_weave_branch'))
140
148
        self.assertTrue(isinstance(converted_dir._format,
147
155
        self.run_bzr('upgrade --format=knit repo')
148
156
 
149
157
 
150
 
    def test_upgrade_with_existing_backup_dir(self):
151
 
        self.make_format_5_branch()
152
 
        transport = get_transport(self.get_url('format_5_branch'))
153
 
        url = transport.base
154
 
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
155
 
        backup_dir1 = 'backup.bzr.~1~'
156
 
        backup_dir2 = 'backup.bzr.~2~'
157
 
        # explicitly create backup_dir1. bzr should create the .~2~ directory
158
 
        # as backup
159
 
        transport.mkdir(backup_dir1)
160
 
        (out, err) = self.run_bzr(
161
 
            ['upgrade', '--format=metaweave', url])
162
 
        self.assertEqualDiff("""starting upgrade of %s
163
 
making backup of %s.bzr
164
 
  to %s%s
165
 
starting upgrade from format 5 to 6
166
 
adding prefixes to weaves
167
 
adding prefixes to revision-store
168
 
starting upgrade from format 6 to metadir
169
 
finished
170
 
""" % (url, url, url, backup_dir2), out)
171
 
        self.assertEqualDiff("", err)
172
 
        self.assertTrue(isinstance(
173
 
            bzrdir.BzrDir.open(self.get_url('format_5_branch'))._format,
174
 
            bzrdir.BzrDirMetaFormat1))
175
 
        self.assertTrue(transport.has(backup_dir2))
176
 
 
177
158
class SFTPTests(TestCaseWithSFTPServer):
178
159
    """Tests for upgrade over sftp."""
179
160
 
 
161
    def setUp(self):
 
162
        super(SFTPTests, self).setUp()
 
163
        self.old_ui_factory = ui.ui_factory
 
164
        self.addCleanup(self.restoreDefaults)
 
165
 
 
166
        ui.ui_factory = TestUIFactory()
 
167
 
 
168
    def restoreDefaults(self):
 
169
        ui.ui_factory = self.old_ui_factory
 
170
 
180
171
    def test_upgrade_url(self):
181
172
        self.run_bzr('init --format=weave')
182
173
        t = get_transport(self.get_url())
183
174
        url = t.base
184
175
        out, err = self.run_bzr(['upgrade', '--format=knit', url])
185
 
        backup_dir = 'backup.bzr.~1~'
186
176
        self.assertEqualDiff("""starting upgrade of %s
187
177
making backup of %s.bzr
188
 
  to %s%s
 
178
  to %sbackup.bzr
189
179
starting upgrade from format 6 to metadir
190
180
starting repository conversion
191
181
repository converted
192
182
finished
193
 
""" % (url, url, url,backup_dir), out)
 
183
""" % (url, url, url), out)
194
184
        self.assertEqual('', err)
195
185
 
196
186