1
# Copyright (C) 2004, 2005 by Canonical Ltd
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.
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.
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
18
from bzrlib.selftest import InTempDir, TestBase
20
class TestRevisionNamespaces(InTempDir):
21
"""Functional tests for hashcache"""
23
from bzrlib.errors import BzrError
24
from bzrlib.branch import Branch
28
b = Branch('.', init=True)
30
b.commit('Commit one', rev_id='a@r-0-1')
31
b.commit('Commit two', rev_id='a@r-0-2')
32
b.commit('Commit three', rev_id='a@r-0-3')
34
self.assertEquals(b.get_revision_info(1), (1, 'a@r-0-1'))
35
self.assertEquals(b.get_revision_info('revno:1'), (1, 'a@r-0-1'))
36
self.assertEquals(b.get_revision_info('revid:a@r-0-1'), (1, 'a@r-0-1'))
37
self.assertRaises(BzrError, b.get_revision_info, 'revid:a@r-0-0')
39
self.assertEquals(b.get_revision_info('date:-tomorrow'), (3, 'a@r-0-3'))
40
self.assertEquals(b.get_revision_info('date:+today'), (1, 'a@r-0-1'))
42
self.assertEquals(b.get_revision_info('last:1'), (3, 'a@r-0-3'))
45
TestRevisionNamespaces