/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_upgrade_stacked.py

  • Committer: Vincent Ladeuil
  • Date: 2012-01-18 14:09:19 UTC
  • mto: This revision was merged to the branch mainline in revision 6468.
  • Revision ID: v.ladeuil+lp@free.fr-20120118140919-rlvdrhpc0nq1lbwi
Change set/remove to require a lock for the branch config files.

This means that tests (or any plugin for that matter) do not requires an
explicit lock on the branch anymore to change a single option. This also
means the optimisation becomes "opt-in" and as such won't be as
spectacular as it may be and/or harder to get right (nothing fails
anymore).

This reduces the diff by ~300 lines.

Code/tests that were updating more than one config option is still taking
a lock to at least avoid some IOs and demonstrate the benefits through
the decreased number of hpss calls.

The duplication between BranchStack and BranchOnlyStack will be removed
once the same sharing is in place for local config files, at which point
the Stack class itself may be able to host the changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008, 2009, 2011 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
 
 
18
"""Tests for upgrades of various stacking situations."""
 
19
 
 
20
from bzrlib import (
 
21
    bzrdir,
 
22
    check,
 
23
    errors,
 
24
    tests,
 
25
    )
 
26
from bzrlib.upgrade import upgrade
 
27
from bzrlib.tests.scenarios import load_tests_apply_scenarios
 
28
 
 
29
 
 
30
def upgrade_scenarios():
 
31
    scenario_pairs = [ # old format, new format, model_change
 
32
#        ('knit', 'rich-root', True),
 
33
        ('knit', '1.6', False),
 
34
#        ('pack-0.92', '1.6', False),
 
35
        ('1.6', '1.6.1-rich-root', True),
 
36
        ]
 
37
    scenarios = []
 
38
    for (old_name, new_name, model_change) in scenario_pairs:
 
39
        name = old_name + ', ' + new_name
 
40
        scenarios.append((name,
 
41
            dict(scenario_old_format=old_name,
 
42
                scenario_new_format=new_name,
 
43
                scenario_model_change=model_change)))
 
44
    return scenarios
 
45
 
 
46
 
 
47
load_tests = load_tests_apply_scenarios
 
48
 
 
49
 
 
50
class TestStackUpgrade(tests.TestCaseWithTransport):
 
51
    # TODO: This should possibly be repeated for all stacking repositories,
 
52
    # pairwise by rich/non-rich format; should possibly also try other kinds
 
53
    # of upgrades like knit->pack. -- mbp 20080804
 
54
    
 
55
    scenarios = upgrade_scenarios()
 
56
 
 
57
    def test_stack_upgrade(self):
 
58
        """Correct checks when stacked-on repository is upgraded.
 
59
 
 
60
        We initially stack on a repo with the same rich root support,
 
61
        we then upgrade it and should fail, we then upgrade the overlaid
 
62
        repository.
 
63
        """
 
64
        base = self.make_branch_and_tree('base',
 
65
            format=self.scenario_old_format)
 
66
        self.build_tree(['base/foo'])
 
67
        base.commit('base commit')
 
68
        # make another one stacked
 
69
        stacked = base.bzrdir.sprout('stacked', stacked=True)
 
70
        # this must really be stacked (or get_stacked_on_url raises an error)
 
71
        self.assertTrue(stacked.open_branch().get_stacked_on_url())
 
72
        # now we'll upgrade the underlying branch, then upgrade the stacked
 
73
        # branch, and this should still work.
 
74
        new_format = bzrdir.format_registry.make_bzrdir(
 
75
            self.scenario_new_format)
 
76
        upgrade('base', new_format)
 
77
        # in some cases you'll get an error if the underlying model has
 
78
        # changed; if just the data format has changed this should still work
 
79
        if self.scenario_model_change:
 
80
            self.assertRaises(errors.IncompatibleRepositories,
 
81
                stacked.open_branch)
 
82
        else:
 
83
            check.check_dwim('stacked', False, True, True)
 
84
        stacked = bzrdir.BzrDir.open('stacked')
 
85
        # but we can upgrade the stacked repository
 
86
        upgrade('stacked', new_format)
 
87
        # and now it opens ok
 
88
        stacked = bzrdir.BzrDir.open('stacked')
 
89
        # And passes check.
 
90
        check.check_dwim('stacked', False, True, True)