~bzr-pqm/bzr/bzr.dev

2418.5.1 by John Arbash Meinel
Make a Branch helper which can create a very basic MemoryTree with history.
1
# Copyright (C) 2007 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.revision_id_to_revno()"""
18
19
from bzrlib import errors
20
2418.5.4 by John Arbash Meinel
Included a test for revision_id=None
21
from bzrlib.tests.branch_implementations import TestCaseWithBranch
2418.5.1 by John Arbash Meinel
Make a Branch helper which can create a very basic MemoryTree with history.
22
23
24
class TestRevisionIdToRevno(TestCaseWithBranch):
25
26
    def test_simple_revno(self):
27
        tree = self.create_tree_with_merge()
28
        the_branch = tree.branch
29
2418.5.4 by John Arbash Meinel
Included a test for revision_id=None
30
        self.assertEqual(0, the_branch.revision_id_to_revno(None))
2418.5.1 by John Arbash Meinel
Make a Branch helper which can create a very basic MemoryTree with history.
31
        self.assertEqual(1, the_branch.revision_id_to_revno('rev-1'))
32
        self.assertEqual(2, the_branch.revision_id_to_revno('rev-2'))
33
        self.assertEqual(3, the_branch.revision_id_to_revno('rev-3'))
34
35
        self.assertRaises(errors.NoSuchRevision,
36
                          the_branch.revision_id_to_revno, 'rev-none')
37
        # revision_id_to_revno is defined as returning only integer revision
38
        # numbers, so non-mainline revisions get NoSuchRevision raised
39
        self.assertRaises(errors.NoSuchRevision,
40
                          the_branch.revision_id_to_revno, 'rev-1.1.1')
41