1
# Copyright (C) 2009 Jelmer Vernooij <jelmer@samba.org>
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
17
"""Tests for GitShaMap."""
19
from dulwich.objects import (
28
from bzrlib import osutils
30
from bzrlib.inventory import (
36
from bzrlib.revision import (
40
from bzrlib.tests import (
45
from bzrlib.transport import (
49
from bzrlib.plugins.git.cache import (
59
def _get_test_commit(self):
61
c.committer = "Jelmer <jelmer@samba.org>"
64
c.author = "Jelmer <jelmer@samba.org>"
67
c.message = "Teh foo bar"
68
c.tree = "cc9462f7f8263ef5adfbeff2fb936bb36b504cba"
71
def test_commit(self):
72
self.map.start_write_group()
73
updater = self.cache.get_updater(Revision("myrevid"))
74
c = self._get_test_commit()
75
updater.add_object(c, {
76
"testament3-sha1": "cc9462f7f8263ef5adf8eff2fb936bb36b504cba"},
79
self.map.commit_write_group()
81
[("commit", ("myrevid",
82
"cc9462f7f8263ef5adfbeff2fb936bb36b504cba",
83
{"testament3-sha1": "cc9462f7f8263ef5adf8eff2fb936bb36b504cba"},
85
list(self.map.lookup_git_sha(c.id)))
86
self.assertEquals(c.id, self.map.lookup_commit("myrevid"))
88
def test_lookup_notfound(self):
89
self.assertRaises(KeyError, list,
90
self.map.lookup_git_sha("5686645d49063c73d35436192dfc9a160c672301"))
93
self.map.start_write_group()
94
updater = self.cache.get_updater(Revision("myrevid"))
95
updater.add_object(self._get_test_commit(), { "testament3-sha1": "Test" }, None)
98
ie = InventoryFile("myfileid", "somename", ROOT_ID)
99
ie.revision = "myrevid"
100
updater.add_object(b, ie, None)
102
self.map.commit_write_group()
104
[("blob", ("myfileid", "myrevid"))],
105
list(self.map.lookup_git_sha(b.id)))
106
self.assertEquals(b.id,
107
self.map.lookup_blob_id("myfileid", "myrevid"))
110
self.map.start_write_group()
111
updater = self.cache.get_updater(Revision("myrevid"))
112
updater.add_object(self._get_test_commit(), {
113
"testament3-sha1": "mytestamentsha" }, None)
115
t.add("somename", stat.S_IFREG, Blob().id)
116
ie = InventoryDirectory("fileid", "myname", ROOT_ID)
117
ie.revision = "irrelevant"
118
updater.add_object(t, ie, "")
120
self.map.commit_write_group()
121
self.assertEquals([("tree", ("fileid", "myrevid"))],
122
list(self.map.lookup_git_sha(t.id)))
123
# It's possible for a backend to not implement lookup_tree
125
self.assertEquals(t.id,
126
self.map.lookup_tree_id("fileid", "myrevid"))
127
except NotImplementedError:
130
def test_revids(self):
131
self.map.start_write_group()
132
updater = self.cache.get_updater(Revision("myrevid"))
133
c = self._get_test_commit()
134
updater.add_object(c, {"testament3-sha1": "mtestament"}, None)
136
self.map.commit_write_group()
137
self.assertEquals(["myrevid"], list(self.map.revids()))
139
def test_missing_revisions(self):
140
self.map.start_write_group()
141
updater = self.cache.get_updater(Revision("myrevid"))
142
c = self._get_test_commit()
143
updater.add_object(c, {"testament3-sha1": "testament"}, None)
145
self.map.commit_write_group()
146
self.assertEquals(set(["lala", "bla"]),
147
set(self.map.missing_revisions(["myrevid", "lala", "bla"])))
150
class DictGitShaMapTests(TestCase,TestGitShaMap):
154
self.cache = DictBzrGitCache()
155
self.map = self.cache.idmap
158
class SqliteGitShaMapTests(TestCaseInTempDir,TestGitShaMap):
161
TestCaseInTempDir.setUp(self)
162
self.cache = SqliteBzrGitCache(os.path.join(self.test_dir, 'foo.db'))
163
self.map = self.cache.idmap
166
class TdbGitShaMapTests(TestCaseInTempDir,TestGitShaMap):
169
TestCaseInTempDir.setUp(self)
171
self.cache = TdbBzrGitCache(
172
os.path.join(self.test_dir, 'foo.tdb').encode(osutils._fs_enc))
174
raise UnavailableFeature("Missing tdb")
175
self.map = self.cache.idmap
178
class IndexGitShaMapTests(TestCaseInTempDir,TestGitShaMap):
181
TestCaseInTempDir.setUp(self)
182
transport = get_transport(self.test_dir)
183
IndexGitCacheFormat().initialize(transport)
184
self.cache = IndexBzrGitCache(transport)
185
self.map = self.cache.idmap