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')
414
425
self.assertEqual('tree-root-321', inv2['nested-id'].parent_id)
415
426
self.assertEqual('rev-outer', inv2['nested-id'].revision)
416
427
self.assertEqual('rev-inner', inv2['nested-id'].reference_revision)
428
self.assertRaises(errors.UnsupportedInventoryKind,
429
s_v6.read_inventory_from_string,
430
txt.replace('format="7"', 'format="6"'))
431
self.assertRaises(errors.UnsupportedInventoryKind,
432
s_v5.read_inventory_from_string,
433
txt.replace('format="7"', 'format="5"'))
418
435
def test_roundtrip_inventory_v8(self):
419
436
inv = self.get_sample_inventory()
503
520
TestCase.setUp(self)
504
521
# Keep the cache clear before and after the test
505
bzrlib.xml_serializer._clear_cache()
506
self.addCleanup(bzrlib.xml_serializer._clear_cache)
522
bzrlib.xml8._ensure_utf8_re()
523
bzrlib.xml8._clear_cache()
524
self.addCleanup(bzrlib.xml8._clear_cache)
508
526
def test_simple_ascii(self):
509
527
# _encode_and_escape always appends a final ", because these parameters
510
528
# are being used in xml attributes, and by returning it now, we have to
511
529
# do fewer string operations later.
512
val = bzrlib.xml_serializer.encode_and_escape('foo bar')
530
val = bzrlib.xml8._encode_and_escape('foo bar')
513
531
self.assertEqual('foo bar"', val)
514
532
# The second time should be cached
515
val2 = bzrlib.xml_serializer.encode_and_escape('foo bar')
533
val2 = bzrlib.xml8._encode_and_escape('foo bar')
516
534
self.assertIs(val2, val)
518
536
def test_ascii_with_xml(self):
519
537
self.assertEqual('&'"<>"',
520
bzrlib.xml_serializer.encode_and_escape('&\'"<>'))
538
bzrlib.xml8._encode_and_escape('&\'"<>'))
522
540
def test_utf8_with_xml(self):
523
541
# u'\xb5\xe5&\u062c'
524
542
utf8_str = '\xc2\xb5\xc3\xa5&\xd8\xac'
525
543
self.assertEqual('µå&ج"',
526
bzrlib.xml_serializer.encode_and_escape(utf8_str))
544
bzrlib.xml8._encode_and_escape(utf8_str))
528
546
def test_unicode(self):
529
547
uni_str = u'\xb5\xe5&\u062c'
530
548
self.assertEqual('µå&ج"',
531
bzrlib.xml_serializer.encode_and_escape(uni_str))
534
class TestMisc(TestCase):
536
def test_unescape_xml(self):
537
"""We get some kind of error when malformed entities are passed"""
538
self.assertRaises(KeyError, bzrlib.xml8._unescape_xml, 'foo&bar;')
549
bzrlib.xml8._encode_and_escape(uni_str))