/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 tests/test_shamap.py

  • Committer: Robert Collins
  • Date: 2010-05-06 07:48:22 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506074822-0bsgf2j4h8jx0xkk
Added ``bzrlib.tests.matchers`` as a place to put matchers, along with
our first in-tree matcher. See the module docstring for details.
(Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
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 GitShaMap."""
18
 
 
19
 
import os
20
 
 
21
 
from bzrlib.tests import (
22
 
    TestCase,
23
 
    TestCaseInTempDir,
24
 
    UnavailableFeature,
25
 
    )
26
 
 
27
 
from bzrlib.plugins.git.shamap import (
28
 
    DictGitShaMap,
29
 
    SqliteGitShaMap,
30
 
    TdbGitShaMap,
31
 
    )
32
 
 
33
 
class TestGitShaMap:
34
 
 
35
 
    def test_commit(self):
36
 
        self.map.start_write_group()
37
 
        self.map.add_entries("myrevid", [], 
38
 
            "5686645d49063c73d35436192dfc9a160c672301",
39
 
            "cc9462f7f8263ef5adfbeff2fb936bb36b504cba", [])
40
 
        self.map.commit_write_group()
41
 
        self.assertEquals(
42
 
            ("commit", ("myrevid", "cc9462f7f8263ef5adfbeff2fb936bb36b504cba")),
43
 
            self.map.lookup_git_sha("5686645d49063c73d35436192dfc9a160c672301"))
44
 
 
45
 
    def test_lookup_notfound(self):
46
 
        self.assertRaises(KeyError,
47
 
            self.map.lookup_git_sha, "5686645d49063c73d35436192dfc9a160c672301")
48
 
 
49
 
    def test_blob(self):
50
 
        thesha = "9686645d49063c73d35436192dfc9a160c672301"
51
 
        self.map.start_write_group()
52
 
        self.map.add_entries("myrevid", [], 
53
 
            "5686645d49063c73d35436192dfc9a160c672301",
54
 
            "cc9462f7f8263ef5adfbeff2fb936bb36b504cba", [
55
 
                ("myfileid", "blob", thesha, "myrevid")
56
 
                ])
57
 
        self.map.commit_write_group()
58
 
        self.assertEquals(
59
 
            ("blob", ("myfileid", "myrevid")),
60
 
            self.map.lookup_git_sha(thesha))
61
 
        self.assertEquals(thesha,
62
 
            self.map.lookup_blob_id("myfileid", "myrevid"))
63
 
 
64
 
    def test_tree(self):
65
 
        thesha = "8686645d49063c73d35436192dfc9a160c672301"
66
 
        self.map.start_write_group()
67
 
        self.map.add_entries("myrevid", [], 
68
 
            "5686645d49063c73d35436192dfc9a160c672301",
69
 
            "cc9462f7f8263ef5adfbeff2fb936bb36b504cba", [
70
 
            ("somepath", "tree", thesha, "myrevid")])
71
 
        self.map.commit_write_group()
72
 
        self.assertEquals(
73
 
            ("tree", ("somepath", "myrevid")),
74
 
            self.map.lookup_git_sha(thesha))
75
 
 
76
 
    def test_revids(self):
77
 
        self.map.start_write_group()
78
 
        self.map.add_entries("myrevid", [], 
79
 
            "5686645d49063c73d35436192dfc9a160c672301",
80
 
            "cc9462f7f8263ef5adfbeff2fb936bb36b504cba", [])
81
 
        self.map.commit_write_group()
82
 
        self.assertEquals(["myrevid"], list(self.map.revids()))
83
 
 
84
 
    def test_missing_revisions(self):
85
 
        self.map.start_write_group()
86
 
        self.map.add_entries("myrevid", [], 
87
 
            "5686645d49063c73d35436192dfc9a160c672301",
88
 
            "cc9462f7f8263ef5adfbeff2fb936bb36b504cba", [])
89
 
        self.map.commit_write_group()
90
 
        self.assertEquals(set(["lala", "bla"]),
91
 
            set(self.map.missing_revisions(["myrevid", "lala", "bla"])))
92
 
 
93
 
 
94
 
class DictGitShaMapTests(TestCase,TestGitShaMap):
95
 
 
96
 
    def setUp(self):
97
 
        TestCase.setUp(self)
98
 
        self.map = DictGitShaMap()
99
 
 
100
 
 
101
 
class SqliteGitShaMapTests(TestCase,TestGitShaMap):
102
 
 
103
 
    def setUp(self):
104
 
        TestCase.setUp(self)
105
 
        self.map = SqliteGitShaMap()
106
 
 
107
 
 
108
 
class TdbGitShaMapTests(TestCaseInTempDir,TestGitShaMap):
109
 
 
110
 
    def setUp(self):
111
 
        TestCaseInTempDir.setUp(self)
112
 
        try:
113
 
            self.map = TdbGitShaMap(os.path.join(self.test_dir, 'foo.tdb'))
114
 
        except ImportError:
115
 
            raise UnavailableFeature("Missing tdb")