~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Robert Collins
  • Date: 2010-04-08 04:34:03 UTC
  • mfrom: (5138 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5139.
  • Revision ID: robertc@robertcollins.net-20100408043403-56z0d07vdqrx7f3t
Update bugfix for 528114 to trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006, 2007, 2009 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
17
"""Black box tests for the upgrade ui."""
18
 
 
19
18
import os
 
19
import stat
20
20
 
21
21
from bzrlib import (
22
22
    bzrdir,
23
23
    repository,
24
 
    ui,
25
24
    )
26
25
from bzrlib.tests import (
 
26
    features,
27
27
    TestCaseInTempDir,
28
28
    TestCaseWithTransport,
29
 
    TestUIFactory,
30
29
    )
31
30
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
32
31
from bzrlib.transport import get_transport
39
38
 
40
39
    def setUp(self):
41
40
        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)
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)
 
41
        self.addCleanup(bzrdir.BzrDirFormat._set_default_format,
 
42
                        bzrdir.BzrDirFormat.get_default_format())
50
43
 
51
44
    def make_current_format_branch_and_checkout(self):
52
45
        current_tree = self.make_branch_and_tree('current_format_branch',
111
104
        url = get_transport(self.get_url('format_5_branch')).base
112
105
        # check --format takes effect
113
106
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
107
        backup_dir = 'backup.bzr.~1~'
114
108
        (out, err) = self.run_bzr(
115
109
            ['upgrade', '--format=metaweave', url])
116
110
        self.assertEqualDiff("""starting upgrade of %s
117
111
making backup of %s.bzr
118
 
  to %sbackup.bzr
 
112
  to %s%s
119
113
starting upgrade from format 5 to 6
120
114
adding prefixes to weaves
121
115
adding prefixes to revision-store
122
116
starting upgrade from format 6 to metadir
123
117
finished
124
 
""" % (url, url, url), out)
 
118
""" % (url, url, url, backup_dir), out)
125
119
        self.assertEqualDiff("", err)
126
120
        self.assertTrue(isinstance(
127
121
            bzrdir.BzrDir.open(self.get_url('format_5_branch'))._format,
134
128
        url = get_transport(self.get_url('metadir_weave_branch')).base
135
129
        # check --format takes effect
136
130
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
131
        backup_dir = 'backup.bzr.~1~'
137
132
        (out, err) = self.run_bzr(
138
133
            ['upgrade', '--format=knit', url])
139
134
        self.assertEqualDiff("""starting upgrade of %s
140
135
making backup of %s.bzr
141
 
  to %sbackup.bzr
 
136
  to %s%s
142
137
starting repository conversion
143
138
repository converted
144
139
finished
145
 
""" % (url, url, url), out)
 
140
""" % (url, url, url, backup_dir), out)
146
141
        self.assertEqualDiff("", err)
147
142
        converted_dir = bzrdir.BzrDir.open(self.get_url('metadir_weave_branch'))
148
143
        self.assertTrue(isinstance(converted_dir._format,
154
149
        self.run_bzr('init-repository --format=metaweave repo')
155
150
        self.run_bzr('upgrade --format=knit repo')
156
151
 
 
152
    def test_upgrade_permission_check(self):
 
153
        """'backup.bzr' should retain permissions of .bzr. Bug #262450"""
 
154
        self.requireFeature(features.posix_permissions_feature)
 
155
        old_perms = stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR
 
156
        backup_dir = 'backup.bzr.~1~'
 
157
        self.run_bzr('init --format=1.6')
 
158
        os.chmod('.bzr', old_perms)
 
159
        self.run_bzr('upgrade')
 
160
        new_perms = os.stat(backup_dir).st_mode & 0777
 
161
        self.assertTrue(new_perms == old_perms)
 
162
 
 
163
 
 
164
    def test_upgrade_with_existing_backup_dir(self):
 
165
        self.make_format_5_branch()
 
166
        transport = get_transport(self.get_url('format_5_branch'))
 
167
        url = transport.base
 
168
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
169
        backup_dir1 = 'backup.bzr.~1~'
 
170
        backup_dir2 = 'backup.bzr.~2~'
 
171
        # explicitly create backup_dir1. bzr should create the .~2~ directory
 
172
        # as backup
 
173
        transport.mkdir(backup_dir1)
 
174
        (out, err) = self.run_bzr(
 
175
            ['upgrade', '--format=metaweave', url])
 
176
        self.assertEqualDiff("""starting upgrade of %s
 
177
making backup of %s.bzr
 
178
  to %s%s
 
179
starting upgrade from format 5 to 6
 
180
adding prefixes to weaves
 
181
adding prefixes to revision-store
 
182
starting upgrade from format 6 to metadir
 
183
finished
 
184
""" % (url, url, url, backup_dir2), out)
 
185
        self.assertEqualDiff("", err)
 
186
        self.assertTrue(isinstance(
 
187
            bzrdir.BzrDir.open(self.get_url('format_5_branch'))._format,
 
188
            bzrdir.BzrDirMetaFormat1))
 
189
        self.assertTrue(transport.has(backup_dir2))
157
190
 
158
191
class SFTPTests(TestCaseWithSFTPServer):
159
192
    """Tests for upgrade over sftp."""
160
193
 
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
 
 
171
194
    def test_upgrade_url(self):
172
195
        self.run_bzr('init --format=weave')
173
196
        t = get_transport(self.get_url())
174
197
        url = t.base
175
198
        out, err = self.run_bzr(['upgrade', '--format=knit', url])
 
199
        backup_dir = 'backup.bzr.~1~'
176
200
        self.assertEqualDiff("""starting upgrade of %s
177
201
making backup of %s.bzr
178
 
  to %sbackup.bzr
 
202
  to %s%s
179
203
starting upgrade from format 6 to metadir
180
204
starting repository conversion
181
205
repository converted
182
206
finished
183
 
""" % (url, url, url), out)
 
207
""" % (url, url, url,backup_dir), out)
184
208
        self.assertEqual('', err)
185
209
 
186
210