1
# Copyright (C) 2005 by Canonical Ltd
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
from cStringIO import StringIO
19
from bzrlib.selftest import TestCase
20
from bzrlib.inventory import Inventory, InventoryEntry
21
from bzrlib.xml import serializer_v4
23
_working_inventory_v4 = """<inventory file_id="TREE_ROOT">
24
<entry file_id="bar-20050901064931-73b4b1138abc9cd2" kind="file" name="bar" parent_id="TREE_ROOT" />
25
<entry file_id="foo-20050801201819-4139aa4a272f4250" kind="directory" name="foo" parent_id="TREE_ROOT" />
26
<entry file_id="bar-20050824000535-6bc48cfad47ed134" kind="file" name="bar" parent_id="foo-20050801201819-4139aa4a272f4250" />
30
_revision_v4 = """<revision committer="Martin Pool <mbp@sourcefrog.net>"
31
inventory_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
32
inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41"
33
revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
34
timestamp="1125907235.211783886"
36
<message>- start splitting code for xml (de)serialization away from objects
37
preparatory to supporting multiple formats by a single library
40
<revision_ref revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92" revision_sha1="7bdf4cc8c5bdac739f8cf9b10b78cf4b68f915ff" />
45
class TestSerializer(TestCase):
46
"""Test XML serialization"""
47
def test_canned_inventory(self):
48
"""Test unpacked a canned inventory v4 file."""
49
inp = StringIO(_working_inventory_v4)
50
inv = serializer_v4.read_inventory(inp)
51
self.assertEqual(len(inv), 4)
52
self.assert_('bar-20050901064931-73b4b1138abc9cd2' in inv)
54
def test_unpack_revision(self):
55
"""Test unpacking a canned revision v4"""
56
inp = StringIO(_revision_v4)
57
rev = serializer_v4.read_revision(inp)
60
"Martin Pool <mbp@sourcefrog.net>")
62
"mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9")
63
eq(len(rev.parents), 1)
64
eq(rev.parents[0].revision_id,
65
"mbp@sourcefrog.net-20050905063503-43948f59fa127d92")