VirtualBox

source: vbox/trunk/src/libs/libxml2-2.13.2/python/tests/cutnpaste.py@ 105420

Last change on this file since 105420 was 105420, checked in by vboxsync, 7 months ago

libxml2-2.12.6: Applied and adjusted our libxml2 changes to 2.12.6. bugref:10730

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 1.3 KB
Line 
1#!/usr/bin/env python3
2import sys
3import setup_test
4import libxml2
5
6# Memory debug specific
7libxml2.debugMemory(1)
8
9#
10# Testing XML document serialization
11#
12source = libxml2.parseDoc("""<?xml version="1.0"?>
13<root xmlns:foo="http://example.org/foo"
14 xmlns:bar="http://example.org/bar">
15<include xmlns="http://example.org/include">
16<fragment><foo:elem bar="tricky"/></fragment>
17</include>
18</root>
19""")
20
21target = libxml2.parseDoc("""<?xml version="1.0"?>
22<root xmlns:foobar="http://example.org/bar"/>""")
23
24fragment = source.xpathEval("//*[name()='fragment']")[0]
25dest = target.getRootElement()
26
27# do a cut and paste operation
28fragment.unlinkNode()
29dest.addChild(fragment)
30# do the namespace fixup
31dest.reconciliateNs(target)
32
33# The source tree can be freed at that point
34source.freeDoc()
35
36# check the resulting tree
37str = dest.serialize()
38if str != """<root xmlns:foobar="http://example.org/bar" xmlns:default="http://example.org/include" xmlns:foo="http://example.org/foo"><default:fragment><foo:elem bar="tricky"/></default:fragment></root>""":
39 print("reconciliateNs() failed")
40 sys.exit(1)
41target.freeDoc()
42
43# Memory debug specific
44libxml2.cleanupParser()
45if libxml2.debugMemory(1) == 0:
46 print("OK")
47else:
48 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette