~ubuntu-branches/ubuntu/oneiric/bzr-hg/oneiric

« back to all changes in this revision

Viewing changes to tests/test_revspec.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij, John Ferlito, Jelmer Vernooij
  • Date: 2011-08-22 13:03:06 UTC
  • mfrom: (6.1.10 sid)
  • Revision ID: james.westby@ubuntu.com-20110822130306-54ow8e3b9l3tibzy
Tags: 0.2.0~bzr511-1
[ John Ferlito ]
* Remove John Ferlito from Uploaders.

[ Jelmer Vernooij ]
* Change fix for bug #626199 to keep support for bzr < 2.4 beta 1.
* New upstream snapshot.
 + Properly decodes tags to unicode. Closes: #635558
* Bump standards version to 3.9.2 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2011 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 revision specifier."""
 
18
 
 
19
import binascii
 
20
 
 
21
from bzrlib.errors import (
 
22
    InvalidRevisionSpec,
 
23
    )
 
24
 
 
25
from bzrlib.revisionspec import (
 
26
    RevisionSpec,
 
27
    )
 
28
 
 
29
from bzrlib.tests import (
 
30
    TestCase,
 
31
    TestCaseWithTransport,
 
32
    )
 
33
 
 
34
from bzrlib.plugins.hg.revspec import (
 
35
    valid_hg_csid,
 
36
    )
 
37
 
 
38
class ValidHgCsidTests(TestCase):
 
39
 
 
40
    def test_valid(self):
 
41
        self.assertTrue(valid_hg_csid("abcdef"))
 
42
        self.assertFalse(valid_hg_csid("abcdez"))
 
43
 
 
44
 
 
45
class RevisionSpecTests(TestCaseWithTransport):
 
46
 
 
47
    def test_valid(self):
 
48
        tree = self.make_branch_and_tree(".", format="hg")
 
49
        revid = tree.commit("acommit")
 
50
        text = binascii.hexlify(tree.branch._tip())
 
51
        revspec = RevisionSpec.from_string("hg:%s" % text)
 
52
        self.assertEquals(revid, revspec.as_revision_id(tree.branch))
 
53
 
 
54
    def test_search(self):
 
55
        tree = self.make_branch_and_tree(".", format="hg")
 
56
        revid = tree.commit("acommit")
 
57
        text = binascii.hexlify(tree.branch._tip())[:20]
 
58
        revspec = RevisionSpec.from_string("hg:%s" % text)
 
59
        self.assertEquals(revid, revspec.as_revision_id(tree.branch))
 
60
 
 
61
    def test_bzr_branch(self):
 
62
        tree = self.make_branch_and_tree(".")
 
63
        revid = tree.commit("acommit")
 
64
        text = "ab" * 20
 
65
        revspec = RevisionSpec.from_string("hg:%s" % text)
 
66
        self.assertRaises(InvalidRevisionSpec, revspec.as_revision_id,
 
67
            tree.branch)