1
# Copyright (C) 2005-2011 Canonical Ltd
1
# Copyright (C) 2005 Canonical Ltd
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
19
19
from bzrlib import (
27
27
from bzrlib.tests import TestCase
28
from bzrlib.inventory import Inventory
28
from bzrlib.inventory import Inventory, InventoryEntry
29
from bzrlib.xml4 import serializer_v4
32
_working_inventory_v4 = """<inventory file_id="TREE_ROOT">
33
<entry file_id="bar-20050901064931-73b4b1138abc9cd2" kind="file" name="bar" parent_id="TREE_ROOT" />
34
<entry file_id="foo-20050801201819-4139aa4a272f4250" kind="directory" name="foo" parent_id="TREE_ROOT" />
35
<entry file_id="bar-20050824000535-6bc48cfad47ed134" kind="file" name="bar" parent_id="foo-20050801201819-4139aa4a272f4250" />
39
_revision_v4 = """<revision committer="Martin Pool <mbp@sourcefrog.net>"
40
inventory_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
41
inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41"
42
revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
43
timestamp="1125907235.212"
45
<message>- start splitting code for xml (de)serialization away from objects
46
preparatory to supporting multiple formats by a single library
49
<revision_ref revision_id="mbp@sourcefrog.net-20050905063503-43948f59fa127d92" revision_sha1="7bdf4cc8c5bdac739f8cf9b10b78cf4b68f915ff" />
31
54
_revision_v5 = """<revision committer="Martin Pool <mbp@sourcefrog.net>"
32
55
inventory_sha1="e79c31c1deb64c163cf660fdedd476dd579ffd41"
33
56
revision_id="mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9"
194
217
class TestSerializer(TestCase):
195
218
"""Test XML serialization"""
220
def test_canned_inventory(self):
221
"""Test unpacked a canned inventory v4 file."""
222
inp = StringIO(_working_inventory_v4)
223
inv = serializer_v4.read_inventory(inp)
224
self.assertEqual(len(inv), 4)
225
self.assert_('bar-20050901064931-73b4b1138abc9cd2' in inv)
227
def test_unpack_revision(self):
228
"""Test unpacking a canned revision v4"""
229
inp = StringIO(_revision_v4)
230
rev = serializer_v4.read_revision(inp)
231
eq = self.assertEqual
233
"Martin Pool <mbp@sourcefrog.net>")
235
"mbp@sourcefrog.net-20050905080035-e0439293f8b6b9f9")
236
eq(len(rev.parent_ids), 1)
237
eq(rev.parent_ids[0],
238
"mbp@sourcefrog.net-20050905063503-43948f59fa127d92")
197
240
def test_unpack_revision_5(self):
198
241
"""Test unpacking a canned revision v5"""
199
242
inp = StringIO(_revision_v5)
247
290
_inventory_v5a, revision_id='test-rev-id')
248
291
self.assertEqual('test-rev-id', inv.root.revision)
250
def test_unpack_inventory_5a_cache_and_copy(self):
251
# Passing an entry_cache should get populated with the objects
252
# But the returned objects should be copies if return_from_cache is
254
entry_cache = fifo_cache.FIFOCache()
255
inv = bzrlib.xml5.serializer_v5.read_inventory_from_string(
256
_inventory_v5a, revision_id='test-rev-id',
257
entry_cache=entry_cache, return_from_cache=False)
258
for entry in inv.iter_just_entries():
259
key = (entry.file_id, entry.revision)
260
if entry.file_id is inv.root.file_id:
261
# The root id is inferred for xml v5
262
self.assertFalse(key in entry_cache)
264
self.assertIsNot(entry, entry_cache[key])
266
def test_unpack_inventory_5a_cache_no_copy(self):
267
# Passing an entry_cache should get populated with the objects
268
# The returned objects should be exact if return_from_cache is
270
entry_cache = fifo_cache.FIFOCache()
271
inv = bzrlib.xml5.serializer_v5.read_inventory_from_string(
272
_inventory_v5a, revision_id='test-rev-id',
273
entry_cache=entry_cache, return_from_cache=True)
274
for entry in inv.iter_just_entries():
275
key = (entry.file_id, entry.revision)
276
if entry.file_id is inv.root.file_id:
277
# The root id is inferred for xml v5
278
self.assertFalse(key in entry_cache)
280
self.assertIs(entry, entry_cache[key])
282
293
def test_unpack_inventory_5b(self):
283
294
inv = bzrlib.xml5.serializer_v5.read_inventory_from_string(
284
295
_inventory_v5b, revision_id='test-rev-id')
536
547
uni_str = u'\xb5\xe5&\u062c'
537
548
self.assertEqual('µå&ج"',
538
549
bzrlib.xml8._encode_and_escape(uni_str))
541
class TestMisc(TestCase):
543
def test_unescape_xml(self):
544
"""We get some kind of error when malformed entities are passed"""
545
self.assertRaises(KeyError, bzrlib.xml8._unescape_xml, 'foo&bar;')