~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/test_revision_id_to_revno.py

  • Committer: Patch Queue Manager
  • Date: 2016-01-15 09:21:49 UTC
  • mfrom: (6606.2.1 autodoc-unicode)
  • Revision ID: pqm@pqm.ubuntu.com-20160115092149-z5f4sfq3jvaz0enb
(vila) Fix autodoc runner when LANG=C. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Tests for Branch.revision_id_to_revno()"""
18
18
 
19
19
from bzrlib import errors
 
20
from bzrlib.tests import TestNotApplicable
20
21
 
21
22
from bzrlib.tests.per_branch import TestCaseWithBranch
22
23
 
39
40
        self.assertRaises(errors.NoSuchRevision,
40
41
                          the_branch.revision_id_to_revno, 'rev-1.1.1')
41
42
 
 
43
    def test_mainline_ghost(self):
 
44
        tree = self.make_branch_and_tree('tree1')
 
45
        if not tree.branch.repository._format.supports_ghosts:
 
46
            raise TestNotApplicable("repository format does not support ghosts")
 
47
        tree.set_parent_ids(["spooky"], allow_leftmost_as_ghost=True)
 
48
        tree.add('')
 
49
        tree.commit('msg1', rev_id='rev1')
 
50
        tree.commit('msg2', rev_id='rev2')
 
51
        # Some older branch formats store the full known revision history
 
52
        # and thus can't distinguish between not being able to find a revno because of
 
53
        # a ghost and the revision not being on the mainline. As such,
 
54
        # allow both NoSuchRevision and GhostRevisionsHaveNoRevno here.
 
55
        self.assertRaises((errors.NoSuchRevision, errors.GhostRevisionsHaveNoRevno),
 
56
            tree.branch.revision_id_to_revno, "unknown")
 
57
        self.assertEquals(1, tree.branch.revision_id_to_revno("rev1"))
 
58
        self.assertEquals(2, tree.branch.revision_id_to_revno("rev2"))
 
59
 
 
60
    def test_empty(self):
 
61
        branch = self.make_branch('.')
 
62
        self.assertRaises(errors.NoSuchRevision,
 
63
            branch.revision_id_to_revno, "unknown")
 
64
        self.assertEquals(0, branch.revision_id_to_revno('null:'))