~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/branch_implementations/test_break_lock.py

  • Committer: Robert Collins
  • Date: 2006-05-04 11:53:51 UTC
  • mto: (1697.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1701.
  • Revision ID: robertc@robertcollins.net-20060504115351-79122d06d443d4a8
Teach Branch about break_lock.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# (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 branch break-lock behaviour."""
 
18
 
 
19
from cStringIO import StringIO
 
20
 
 
21
import bzrlib
 
22
import bzrlib.errors as errors
 
23
from bzrlib.tests import TestCase, TestCaseWithTransport, TestSkipped
 
24
from bzrlib.tests.branch_implementations.test_branch import TestCaseWithBranch
 
25
 
 
26
 
 
27
class TestBreakLock(TestCaseWithBranch):
 
28
 
 
29
    def setUp(self):
 
30
        super(TestBreakLock, self).setUp()
 
31
        self.unused_branch = self.make_branch('.')
 
32
        self.branch = self.unused_branch.bzrdir.open_branch()
 
33
        # we want a UI factory that accepts canned input for the tests:
 
34
        # while SilentUIFactory still accepts stdin, we need to customise
 
35
        # ours
 
36
        self.old_factory = bzrlib.ui.ui_factory
 
37
        bzrlib.ui.ui_factory = bzrlib.ui.SilentUIFactory()
 
38
 
 
39
    def tearDown(self):
 
40
        bzrlib.ui.ui_factory = self.old_factory
 
41
 
 
42
    def test_unlocked(self):
 
43
        # break lock when nothing is locked should just return
 
44
        try:
 
45
            self.branch.break_lock()
 
46
        except NotImplementedError:
 
47
            pass
 
48
 
 
49
    def test_unlocked_repo_locked(self):
 
50
        # break lock on the branch should try on the repository even
 
51
        # if the branch isn't locked
 
52
        # break_lock when locked should
 
53
        self.branch.repository.lock_write()
 
54
        bzrlib.ui.ui_factory.stdin = StringIO("y\n")
 
55
        try:
 
56
            self.unused_branch.break_lock()
 
57
        except NotImplementedError:
 
58
            # branch does not support break_lock
 
59
            self.branch.repository.unlock()
 
60
            return
 
61
        self.assertRaises(errors.LockBroken, self.branch.repository.unlock)
 
62
 
 
63
    def test_locked(self):
 
64
        # break_lock when locked should
 
65
        self.branch.lock_write()
 
66
        bzrlib.ui.ui_factory.stdin = StringIO("y\ny\n")
 
67
        try:
 
68
            self.unused_branch.break_lock()
 
69
        except NotImplementedError:
 
70
            # branch does not support break_lock
 
71
            self.branch.unlock()
 
72
            return
 
73
        self.assertRaises(errors.LockBroken, self.branch.unlock)