~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/lock_helpers.py

  • Committer: Gordon Tyler
  • Date: 2010-02-02 06:30:43 UTC
  • mto: (5037.3.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5046.
  • Revision ID: gordon@doxxx.net-20100202063043-3ygr1114d25m3f7m
Added cmdline.split function, which replaces commands.shlex_split_unicode.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Helper functions/classes for testing locking"""
18
18
 
19
19
from bzrlib import errors
 
20
from bzrlib.decorators import only_raises
20
21
 
21
22
 
22
23
class TestPreventLocking(errors.LockError):
44
45
        self.__dict__['_allow_read'] = True
45
46
        self.__dict__['_allow_unlock'] = True
46
47
 
 
48
    def __eq__(self, other):
 
49
        # Branch objects look for controlfiles == repo.controlfiles.
 
50
        if type(other) is LockWrapper:
 
51
            return self._other == other._other
 
52
        return False
 
53
 
47
54
    def __getattr__(self, attr):
48
55
        return getattr(self._other, attr)
49
56
 
62
69
            return self._other.lock_write()
63
70
        raise TestPreventLocking('lock_write disabled')
64
71
 
 
72
    @only_raises(errors.LockNotHeld, errors.LockBroken)
65
73
    def unlock(self):
66
74
        self._sequence.append((self._other_id, 'ul', self._allow_unlock))
67
75
        if self._allow_unlock: