~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_generate_ids.py

  • Committer: Martin Pool
  • Date: 2007-10-03 08:06:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2901.
  • Revision ID: mbp@sourcefrog.net-20071003080644-oivy0gkg98sex0ed
Avoid internal error tracebacks on failure to lock on readonly transport (#129701).

Add new LockFailed, which doesn't imply that we failed to get it because of
contention.  Raise this if we fail to create the pending or lock directories
because of Transport errors.

UnlockableTransport is not an internal error.

ReadOnlyLockError has a message which didn't match its name or usage; it's now
deprecated and callers are updated to use LockFailed which is more appropriate.

Add zero_ninetytwo deprecation symbol.

Unify assertMatchesRe with TestCase.assertContainsRe.

When the constructor is deprecated, just say that the class is deprecated, not
the __init__ method - this works better with applyDeprecated in tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
112
112
class TestGenRevisionId(tests.TestCase):
113
113
    """Test generating revision ids"""
114
114
 
115
 
    def assertMatchesRe(self, regex, text):
116
 
        """Make sure text is matched by the regex given"""
117
 
        if re.match(regex, text) is None:
118
 
            self.fail('Pattern %s did not match text %s' % (regex, text))
119
 
 
120
115
    def assertGenRevisionId(self, regex, username, timestamp=None):
121
116
        """gen_revision_id should create a revision id matching the regex"""
122
117
        revision_id = generate_ids.gen_revision_id(username, timestamp)
123
 
        self.assertMatchesRe(regex, revision_id)
 
118
        self.assertContainsRe(revision_id, '^'+regex+'$')
124
119
        # It should be a utf8 revision_id, not a unicode one
125
120
        self.assertIsInstance(revision_id, str)
126
121
        # gen_revision_id should always return ascii revision ids.