/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testrevisionnamespaces.py

  • Committer: Lalo Martins
  • Date: 2005-09-14 06:11:53 UTC
  • mto: (1185.1.22)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: lalo@exoweb.net-20050914061153-509cea89f773f329
fixing a few tests that came on the merge, for the new constructors

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2004, 2005 by 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
import os
 
18
from bzrlib.selftest import TestCaseInTempDir
 
19
 
 
20
class TestRevisionNamespaces(TestCaseInTempDir):
 
21
    def test_revision_namespaces(self):
 
22
        """Functional tests for hashcache"""
 
23
        from bzrlib.errors import NoSuchRevision
 
24
        from bzrlib.branch import Branch
 
25
        from bzrlib.revisionspec import RevisionSpec
 
26
 
 
27
        b = Branch.initialize('.')
 
28
 
 
29
        b.commit('Commit one', rev_id='a@r-0-1')
 
30
        b.commit('Commit two', rev_id='a@r-0-2')
 
31
        b.commit('Commit three', rev_id='a@r-0-3')
 
32
 
 
33
        self.assertEquals(RevisionSpec(None).in_history(b), (0, None))
 
34
        self.assertEquals(RevisionSpec(1).in_history(b), (1, 'a@r-0-1'))
 
35
        self.assertEquals(RevisionSpec('revno:1').in_history(b),
 
36
                          (1, 'a@r-0-1'))
 
37
        self.assertEquals(RevisionSpec('revid:a@r-0-1').in_history(b),
 
38
                          (1, 'a@r-0-1'))
 
39
        self.assertRaises(NoSuchRevision,
 
40
                          RevisionSpec('revid:a@r-0-0').in_history, b)
 
41
        self.assertRaises(TypeError, RevisionSpec, object)
 
42
 
 
43
        self.assertEquals(RevisionSpec('date:-tomorrow').in_history(b),
 
44
                          (3, 'a@r-0-3'))
 
45
        self.assertEquals(RevisionSpec('date:+today').in_history(b),
 
46
                          (1, 'a@r-0-1'))
 
47
 
 
48
        self.assertEquals(RevisionSpec('last:1').in_history(b),
 
49
                          (3, 'a@r-0-3'))
 
50
        self.assertEquals(RevisionSpec('-1').in_history(b), (3, 'a@r-0-3'))