/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar
897 by Martin Pool
- merge john's revision-naming code
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
974.1.52 by aaron.bentley at utoronto
Merged mpool's latest changes (~0.0.7)
17
import os
1141 by Martin Pool
- rename FunctionalTest to TestCaseInTempDir
18
from bzrlib.selftest import TestCaseInTempDir
897 by Martin Pool
- merge john's revision-naming code
19
1141 by Martin Pool
- rename FunctionalTest to TestCaseInTempDir
20
class TestRevisionNamespaces(TestCaseInTempDir):
1102 by Martin Pool
- merge test refactoring from robertc
21
    def test_revision_namespaces(self):
22
        """Functional tests for hashcache"""
974.2.7 by aaron.bentley at utoronto
Merged from bzr.24
23
        from bzrlib.errors import NoSuchRevision
897 by Martin Pool
- merge john's revision-naming code
24
        from bzrlib.branch import Branch
1185.2.6 by Lalo Martins
turned get_revision_info into a RevisionSpec class
25
        from bzrlib.revisionspec import RevisionSpec
897 by Martin Pool
- merge john's revision-naming code
26
1185.2.9 by Lalo Martins
getting rid of everything that calls the Branch constructor directly
27
        b = Branch.initialize('.')
897 by Martin Pool
- merge john's revision-naming code
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
1185.2.6 by Lalo Martins
turned get_revision_info into a RevisionSpec class
33
        self.assertEquals(RevisionSpec(b, None), (0, None))
34
        self.assertEquals(RevisionSpec(b, 1), (1, 'a@r-0-1'))
35
        self.assertEquals(RevisionSpec(b, 'revno:1'), (1, 'a@r-0-1'))
36
        self.assertEquals(RevisionSpec(b, 'revid:a@r-0-1'), (1, 'a@r-0-1'))
37
        self.assertRaises(NoSuchRevision, RevisionSpec, b, 'revid:a@r-0-0')
38
        self.assertRaises(TypeError, RevisionSpec, b, object)
39
40
        self.assertEquals(RevisionSpec(b, 'date:-tomorrow'), (3, 'a@r-0-3'))
41
        self.assertEquals(RevisionSpec(b, 'date:+today'), (1, 'a@r-0-1'))
42
43
        self.assertEquals(RevisionSpec(b, 'last:1'), (3, 'a@r-0-3'))
44
        self.assertEquals(RevisionSpec(b, '-1'), (3, 'a@r-0-3'))