/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/blackbox/test_break_lock.py

  • Committer: Aaron Bentley
  • Date: 2008-10-16 21:37:21 UTC
  • mfrom: (0.12.63 shelf-manager)
  • mto: This revision was merged to the branch mainline in revision 3823.
  • Revision ID: aaron@aaronbentley.com-20081016213721-4evccj16q9mb05uf
Merge with shelf-manager

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2006 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Tests for lock-breaking user interface"""
 
18
 
 
19
import os
 
20
 
 
21
import bzrlib
 
22
from bzrlib import (
 
23
    errors,
 
24
    lockdir,
 
25
    )
 
26
from bzrlib.branch import Branch
 
27
from bzrlib.bzrdir import BzrDir
 
28
from bzrlib.tests.blackbox import ExternalBase
 
29
 
 
30
 
 
31
class TestBreakLock(ExternalBase):
 
32
 
 
33
    # General principal for break-lock: All the elements that might be locked
 
34
    # by a bzr operation on PATH, are candidates that break-lock may unlock.
 
35
    # so pathologically if we have a lightweight checkout A, of branch B, which
 
36
    # is bound to location C, the following things should be checked for locks
 
37
    # to break:
 
38
    # wt = WorkingTree(A)
 
39
    # wt.branch
 
40
    # wt.branch.repository
 
41
    # wt.branch.get_master_branch()
 
42
    # wt.branch.get_master_branch().repository
 
43
    # so for smoke tests all we need is a bound branch with a checkout of that
 
44
    # and we can then use different urls to test individual cases, for as much
 
45
    # granularity as needed.
 
46
 
 
47
    def setUp(self):
 
48
        super(TestBreakLock, self).setUp()
 
49
        self.build_tree(
 
50
            ['master-repo/',
 
51
             'master-repo/master-branch/',
 
52
             'repo/',
 
53
             'repo/branch/',
 
54
             'checkout/'])
 
55
        bzrlib.bzrdir.BzrDir.create('master-repo').create_repository()
 
56
        self.master_branch = bzrlib.bzrdir.BzrDir.create_branch_convenience(
 
57
            'master-repo/master-branch')
 
58
        bzrlib.bzrdir.BzrDir.create('repo').create_repository()
 
59
        local_branch = bzrlib.bzrdir.BzrDir.create_branch_convenience('repo/branch')
 
60
        local_branch.bind(self.master_branch)
 
61
        checkoutdir = bzrlib.bzrdir.BzrDir.create('checkout')
 
62
        bzrlib.branch.BranchReferenceFormat().initialize(
 
63
            checkoutdir, local_branch)
 
64
        self.wt = checkoutdir.create_workingtree()
 
65
 
 
66
    def test_break_lock_help(self):
 
67
        out, err = self.run_bzr('break-lock --help')
 
68
        # shouldn't fail and should not produce error output
 
69
        self.assertEqual('', err)
 
70
 
 
71
    def test_break_lock_everything_locked(self):
 
72
        ### if everything is locked, we should be able to unlock the lot.
 
73
        # however, we dont test breaking the working tree because we 
 
74
        # cannot accurately do so right now: the dirstate lock is held 
 
75
        # by an os lock, and we need to spawn a separate process to lock it
 
76
        # thne kill -9 it.
 
77
        # sketch of test:
 
78
        # lock most of the dir:
 
79
        self.wt.branch.lock_write()
 
80
        self.master_branch.lock_write()
 
81
        # run the break-lock
 
82
        # we need 5 yes's - wt, branch, repo, bound branch, bound repo.
 
83
        self.run_bzr('break-lock checkout', stdin="y\ny\ny\ny\n")
 
84
        # a new tree instance should be lockable
 
85
        branch = bzrlib.branch.Branch.open('checkout')
 
86
        branch.lock_write()
 
87
        branch.unlock()
 
88
        # and a new instance of the master branch 
 
89
        mb = branch.get_master_branch()
 
90
        mb.lock_write()
 
91
        mb.unlock()
 
92
        self.assertRaises(errors.LockBroken, self.wt.unlock)
 
93
        self.assertRaises(errors.LockBroken, self.master_branch.unlock)
 
94
 
 
95
 
 
96
class TestBreakLockOldBranch(ExternalBase):
 
97
 
 
98
    def test_break_lock_format_5_bzrdir(self):
 
99
        # break lock on a format 5 bzrdir should just return
 
100
        self.make_branch_and_tree('foo', format=bzrlib.bzrdir.BzrDirFormat5())
 
101
        out, err = self.run_bzr('break-lock foo')
 
102
        self.assertEqual('', out)
 
103
        self.assertEqual('', err)