1
# Copyright (C) 2005-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, see <http://www.gnu.org/licenses/>.
19
from bzrlib.tests import (
23
from versionedfiles import (
24
VirtualInventoryTexts,
26
VirtualSignatureTexts,
30
class BasicTextsTests:
32
def test_add_lines(self):
33
self.assertRaises(NotImplementedError,
34
self.texts.add_lines, "foo", [], [])
36
def test_add_mpdiffs(self):
37
self.assertRaises(NotImplementedError,
38
self.texts.add_mpdiffs, [])
41
self.assertTrue(self.texts.check())
43
def test_insert_record_stream(self):
44
self.assertRaises(NotImplementedError, self.texts.insert_record_stream,
48
class VirtualRevisionTextsTests(TestCase, BasicTextsTests):
50
def _make_parents_provider(self):
54
self.texts = VirtualRevisionTexts(self)
56
def get_parent_map(self, keys):
57
raise NotImplementedError
60
class VirtualInventoryTextsTests(TestCase, BasicTextsTests):
62
def _make_parents_provider(self):
65
def get_inventory_xml(self, key):
68
def get_parent_map(self, keys):
69
return {("A",): (("B",))}
72
self.texts = VirtualInventoryTexts(self)
74
def test_get_sha1s(self):
75
self.assertEquals({("A",): osutils.sha_strings(["FOO"])}, self.texts.get_sha1s([("A",)]))
78
class VirtualSignatureTextsTests(TestCase, BasicTextsTests):
80
def _make_parents_provider(self):
84
self.texts = VirtualSignatureTexts(self)
86
def get_parent_map(self, keys):
87
raise NotImplementedError