~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Ian Clatworthy
  • Date: 2010-03-30 20:13:52 UTC
  • mto: This revision was merged to the branch mainline in revision 5125.
  • Revision ID: ian.clatworthy@canonical.com-20100330201352-vw2gtujybyg3rvwc
whitespace fix in win32 installer

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
import os
 
19
import stat
18
20
 
19
21
from bzrlib import (
20
22
    bzrdir,
21
23
    repository,
22
24
    )
23
25
from bzrlib.tests import (
 
26
    features,
24
27
    TestCaseInTempDir,
25
28
    TestCaseWithTransport,
26
29
    )
101
104
        url = get_transport(self.get_url('format_5_branch')).base
102
105
        # check --format takes effect
103
106
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
107
        backup_dir = 'backup.bzr.~1~'
104
108
        (out, err) = self.run_bzr(
105
109
            ['upgrade', '--format=metaweave', url])
106
110
        self.assertEqualDiff("""starting upgrade of %s
107
111
making backup of %s.bzr
108
 
  to %sbackup.bzr
 
112
  to %s%s
109
113
starting upgrade from format 5 to 6
110
114
adding prefixes to weaves
111
115
adding prefixes to revision-store
112
116
starting upgrade from format 6 to metadir
113
117
finished
114
 
""" % (url, url, url), out)
 
118
""" % (url, url, url, backup_dir), out)
115
119
        self.assertEqualDiff("", err)
116
120
        self.assertTrue(isinstance(
117
121
            bzrdir.BzrDir.open(self.get_url('format_5_branch'))._format,
124
128
        url = get_transport(self.get_url('metadir_weave_branch')).base
125
129
        # check --format takes effect
126
130
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
131
        backup_dir = 'backup.bzr.~1~'
127
132
        (out, err) = self.run_bzr(
128
133
            ['upgrade', '--format=knit', url])
129
134
        self.assertEqualDiff("""starting upgrade of %s
130
135
making backup of %s.bzr
131
 
  to %sbackup.bzr
 
136
  to %s%s
132
137
starting repository conversion
133
138
repository converted
134
139
finished
135
 
""" % (url, url, url), out)
 
140
""" % (url, url, url, backup_dir), out)
136
141
        self.assertEqualDiff("", err)
137
142
        converted_dir = bzrdir.BzrDir.open(self.get_url('metadir_weave_branch'))
138
143
        self.assertTrue(isinstance(converted_dir._format,
144
149
        self.run_bzr('init-repository --format=metaweave repo')
145
150
        self.run_bzr('upgrade --format=knit repo')
146
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))
147
190
 
148
191
class SFTPTests(TestCaseWithSFTPServer):
149
192
    """Tests for upgrade over sftp."""
153
196
        t = get_transport(self.get_url())
154
197
        url = t.base
155
198
        out, err = self.run_bzr(['upgrade', '--format=knit', url])
 
199
        backup_dir = 'backup.bzr.~1~'
156
200
        self.assertEqualDiff("""starting upgrade of %s
157
201
making backup of %s.bzr
158
 
  to %sbackup.bzr
 
202
  to %s%s
159
203
starting upgrade from format 6 to metadir
160
204
starting repository conversion
161
205
repository converted
162
206
finished
163
 
""" % (url, url, url), out)
 
207
""" % (url, url, url,backup_dir), out)
164
208
        self.assertEqual('', err)
165
209
 
166
210