~bzr-pqm/bzr/bzr.dev

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# Copyright (C) 2007 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

"""Tests for Branch.revision_id_to_revno()"""

from bzrlib import errors
from bzrlib.tests import TestNotApplicable

from bzrlib.tests.per_branch import TestCaseWithBranch


class TestRevisionIdToRevno(TestCaseWithBranch):

    def test_simple_revno(self):
        tree = self.create_tree_with_merge()
        the_branch = tree.branch

        self.assertEqual(0, the_branch.revision_id_to_revno('null:'))
        self.assertEqual(1, the_branch.revision_id_to_revno('rev-1'))
        self.assertEqual(2, the_branch.revision_id_to_revno('rev-2'))
        self.assertEqual(3, the_branch.revision_id_to_revno('rev-3'))

        self.assertRaises(errors.NoSuchRevision,
                          the_branch.revision_id_to_revno, 'rev-none')
        # revision_id_to_revno is defined as returning only integer revision
        # numbers, so non-mainline revisions get NoSuchRevision raised
        self.assertRaises(errors.NoSuchRevision,
                          the_branch.revision_id_to_revno, 'rev-1.1.1')

    def test_mainline_ghost(self):
        tree = self.make_branch_and_tree('tree1')
        if not tree.branch.repository._format.supports_ghosts:
            raise TestNotApplicable("repository format does not support ghosts")
        tree.set_parent_ids(["spooky"], allow_leftmost_as_ghost=True)
        tree.add('')
        tree.commit('msg1', rev_id='rev1')
        tree.commit('msg2', rev_id='rev2')
        # Some older branch formats store the full known revision history
        # and thus can't distinguish between not being able to find a revno because of
        # a ghost and the revision not being on the mainline. As such,
        # allow both NoSuchRevision and GhostRevisionsHaveNoRevno here.
        self.assertRaises((errors.NoSuchRevision, errors.GhostRevisionsHaveNoRevno),
            tree.branch.revision_id_to_revno, "unknown")
        self.assertEquals(1, tree.branch.revision_id_to_revno("rev1"))
        self.assertEquals(2, tree.branch.revision_id_to_revno("rev2"))

    def test_empty(self):
        branch = self.make_branch('.')
        self.assertRaises(errors.NoSuchRevision,
            branch.revision_id_to_revno, "unknown")
        self.assertEquals(0, branch.revision_id_to_revno('null:'))