~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2006-10-11 00:23:23 UTC
  • mfrom: (2070 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2071.
  • Revision ID: john@arbash-meinel.com-20061011002323-82ba88c293d7caff
[merge] bzr.dev 2070

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006 by Canonical Ltd
2
2
# Authors: Robert Collins <robert.collins@canonical.com>
3
3
# -*- coding: utf-8 -*-
4
4
#
28
28
from bzrlib.tests.test_sftp_transport import TestCaseWithSFTPServer
29
29
from bzrlib.transport import get_transport
30
30
import bzrlib.ui as ui
31
 
from bzrlib.repofmt.knitrepo import (
32
 
    RepositoryFormatKnit1,
33
 
    )
34
31
 
35
32
 
36
33
class TestWithUpgradableBranches(TestCaseWithTransport):
38
35
    def setUp(self):
39
36
        super(TestWithUpgradableBranches, self).setUp()
40
37
        self.old_format = bzrdir.BzrDirFormat.get_default_format()
 
38
        self.old_repo_format = \
 
39
            bzrlib.repository.RepositoryFormat.get_default_format()
41
40
        self.old_ui_factory = ui.ui_factory
42
41
        self.addCleanup(self.restoreDefaults)
43
42
 
44
43
        ui.ui_factory = TestUIFactory()
 
44
        bzrdir.BzrDirFormat.set_default_format(bzrdir.BzrDirMetaFormat1())
 
45
        bzrlib.repository.RepositoryFormat.set_default_format(
 
46
            bzrlib.repository.RepositoryFormat7())
 
47
        # FIXME RBC 20060120 we should be able to do this via ui calls only.
45
48
        # setup a format 5 branch we can upgrade from.
46
 
        self.make_branch_and_tree('format_5_branch',
47
 
                                  format=bzrdir.BzrDirFormat5())
48
 
 
49
 
        current_tree = self.make_branch_and_tree('current_format_branch',
50
 
                                                 format='default')
51
 
        self.make_branch_and_tree('metadir_weave_branch', format='metaweave')
52
 
        current_tree.branch.create_checkout(
53
 
            self.get_url('current_format_checkout'), lightweight=True)
 
49
        t = get_transport(self.get_url())
 
50
        t.mkdir('format_5_branch')
 
51
        bzrdir.BzrDirFormat5().initialize(self.get_url('format_5_branch'))
 
52
        bzrdir.BzrDir.create_standalone_workingtree('current_format_branch')
 
53
        d = bzrdir.BzrDir.create('metadir_weave_branch')
 
54
        d.create_repository()
 
55
        d.create_branch()
 
56
        d.create_workingtree()
 
57
        self.run_bzr('checkout',
 
58
                     '--lightweight',
 
59
                     self.get_url('current_format_branch'),
 
60
                     'current_format_checkout')
54
61
 
55
62
    def restoreDefaults(self):
 
63
        bzrdir.BzrDirFormat.set_default_format(self.old_format)
 
64
        bzrlib.repository.RepositoryFormat.set_default_format(
 
65
            self.old_repo_format)
56
66
        ui.ui_factory = self.old_ui_factory
57
 
        bzrdir.BzrDirFormat._set_default_format(self.old_format)
58
67
 
59
68
    def test_readonly_url_error(self):
60
69
        (out, err) = self.run_bzr_captured(
61
70
            ['upgrade', self.get_readonly_url('format_5_branch')], 3)
62
71
        self.assertEqual(out, "")
63
 
        self.assertEqual(err, "bzr: ERROR: Upgrade URL cannot work with readonly URLs.\n")
 
72
        self.assertEqual(err, "bzr: ERROR: Upgrade URL cannot work with readonly URL's.\n")
64
73
 
65
74
    def test_upgrade_up_to_date(self):
66
75
        # when up to date we should get a message to that effect
102
111
        # users can force an upgrade to metadir format.
103
112
        url = get_transport(self.get_url('format_5_branch')).base
104
113
        # check --format takes effect
105
 
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
114
        bzrdir.BzrDirFormat.set_default_format(bzrdir.BzrDirFormat5())
106
115
        (out, err) = self.run_bzr_captured(
107
116
            ['upgrade', '--format=metaweave', url])
108
117
        self.assertEqualDiff("""starting upgrade of %s
126
135
        # branch
127
136
        url = get_transport(self.get_url('metadir_weave_branch')).base
128
137
        # check --format takes effect
129
 
        bzrdir.BzrDirFormat._set_default_format(bzrdir.BzrDirFormat5())
 
138
        bzrdir.BzrDirFormat.set_default_format(bzrdir.BzrDirFormat5())
130
139
        (out, err) = self.run_bzr_captured(
131
140
            ['upgrade', '--format=knit', url])
132
141
        self.assertEqualDiff("""starting upgrade of %s
143
152
        self.assertTrue(isinstance(converted_dir._format,
144
153
                                   bzrdir.BzrDirMetaFormat1))
145
154
        self.assertTrue(isinstance(converted_dir.open_repository()._format,
146
 
                                   RepositoryFormatKnit1))
 
155
                                   repository.RepositoryFormatKnit1))
147
156
 
148
157
    def test_upgrade_repo(self):
149
158
        self.run_bzr('init-repository', '--format=metaweave', 'repo')