+#endif // wxUSE_UNICODE
+
+ const char *xmlTextProlog =
+"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+"<!-- Prolog comment -->\n"
+"<?xml-stylesheet href=\"style.css\" type=\"text/css\"?>\n"
+"<resource xmlns=\"http://www.wxwidgets.org/wxxrc\" version=\"2.3.0.1\">\n"
+" <!-- Test comment -->\n"
+" <object class=\"wxDialog\" name=\"my_dialog\">\n"
+" <children>\n"
+" <grandchild id=\"1\"/>\n"
+" </children>\n"
+" <subobject/>\n"
+" </object>\n"
+"</resource>\n"
+"<!-- Trailing comment -->\n"
+ ;
+
+ wxStringInputStream sisp(xmlTextProlog);
+ CPPUNIT_ASSERT( doc.Load(sisp, "UTF-8") );
+
+ wxStringOutputStream sosp;
+ CPPUNIT_ASSERT( doc.Save(sosp) );
+
+ CPPUNIT_ASSERT_EQUAL( xmlTextProlog, sosp.GetString() );
+}
+
+void XmlTestCase::CDATA()
+{
+ const char *xmlText =
+ "<?xml version=\"1.0\" encoding=\"windows-1252\"?>\n"
+ "<name>\n"
+ " <![CDATA[Giovanni Mittone]]>\n"
+ "</name>\n"
+ ;
+
+ wxStringInputStream sis(xmlText);
+ wxXmlDocument doc;
+ CPPUNIT_ASSERT( doc.Load(sis) );
+
+ wxXmlNode *n = doc.GetRoot();
+ CPPUNIT_ASSERT( n );
+
+ n = n->GetChildren();
+ CPPUNIT_ASSERT( n );
+
+ // check that both leading (" ") and trailing white space is not part of
+ // the node contents when CDATA is used and wxXMLDOC_KEEP_WHITESPACE_NODES
+ // is not
+ CPPUNIT_ASSERT_EQUAL( "Giovanni Mittone", n->GetContent() );
+}
+
+void XmlTestCase::PI()
+{
+ const char *xmlText =
+ "<?xml version=\"1.0\" encoding=\"windows-1252\"?>\n"
+ "<root>\n"
+ " <?robot index=\"no\" follow=\"no\"?>\n"
+ "</root>\n"
+ ;
+
+ wxStringInputStream sis(xmlText);
+ wxXmlDocument doc;
+ CPPUNIT_ASSERT( doc.Load(sis) );
+
+ wxXmlNode *n = doc.GetRoot();
+ CPPUNIT_ASSERT( n );
+
+ n = n->GetChildren();
+ CPPUNIT_ASSERT( n );
+
+ CPPUNIT_ASSERT_EQUAL( "index=\"no\" follow=\"no\"", n->GetContent() );
+}
+
+void XmlTestCase::Escaping()
+{
+ // Verify that attribute values are escaped correctly, see
+ // http://trac.wxwidgets.org/ticket/12275
+
+ const char *xmlText =
+"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+"<root text=\"hello
this is a new line\">\n"
+" <x/>\n"
+"</root>\n"
+ ;
+
+ wxStringInputStream sis(xmlText);
+
+ wxXmlDocument doc;
+ CPPUNIT_ASSERT( doc.Load(sis) );
+
+ wxStringOutputStream sos;
+ CPPUNIT_ASSERT( doc.Save(sos) );
+
+ CPPUNIT_ASSERT_EQUAL( xmlText, sos.GetString() );
+}
+
+void XmlTestCase::DetachRoot()
+{
+ const char *xmlTextProlog =
+"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+"<!-- Prolog comment -->\n"
+"<?xml-stylesheet href=\"style.css\" type=\"text/css\"?>\n"
+"<resource xmlns=\"http://www.wxwidgets.org/wxxrc\" version=\"2.3.0.1\">\n"
+" <!-- Test comment -->\n"
+" <object class=\"wxDialog\" name=\"my_dialog\">\n"
+" <children>\n"
+" <grandchild id=\"1\"/>\n"
+" </children>\n"
+" <subobject/>\n"
+" </object>\n"
+"</resource>\n"
+"<!-- Trailing comment -->\n"
+ ;
+ const char *xmlTextHtm =
+"<?xml version=\"1.0\" encoding=\"windows-1252\"?>\n"
+"<html>\n"
+" <head>\n"
+" <title>Testing wxXml</title>\n"
+" </head>\n"
+" <body>\n"
+" <p>Some body text</p>\n"
+" </body>\n"
+"</html>\n"
+ ;
+ wxXmlDocument doc;
+
+ wxStringInputStream sish(xmlTextHtm);
+ CPPUNIT_ASSERT( doc.Load(sish) );
+
+ wxXmlNode *root = doc.DetachRoot();
+
+ wxStringInputStream sisp(xmlTextProlog);
+ CPPUNIT_ASSERT( doc.Load(sisp) );
+
+ doc.SetRoot(root);
+
+ wxStringOutputStream sos;
+ CPPUNIT_ASSERT( doc.Save(sos) );
+
+ const char *xmlTextResult1 =
+"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
+"<!-- Prolog comment -->\n"
+"<?xml-stylesheet href=\"style.css\" type=\"text/css\"?>\n"
+"<html>\n"
+" <head>\n"
+" <title>Testing wxXml</title>\n"
+" </head>\n"
+" <body>\n"
+" <p>Some body text</p>\n"
+" </body>\n"
+"</html>\n"
+"<!-- Trailing comment -->\n"
+ ;
+ CPPUNIT_ASSERT_EQUAL( xmlTextResult1, sos.GetString() );
+
+ wxStringInputStream sisp2(xmlTextProlog);
+ CPPUNIT_ASSERT( doc.Load(sisp2) );
+
+ root = doc.DetachRoot();
+
+ wxStringInputStream sish2(xmlTextHtm);
+ CPPUNIT_ASSERT( doc.Load(sish2) );
+
+ doc.SetRoot(root);
+
+ wxStringOutputStream sos2;
+ CPPUNIT_ASSERT( doc.Save(sos2) );
+
+ const char *xmlTextResult2 =
+"<?xml version=\"1.0\" encoding=\"windows-1252\"?>\n"
+"<resource xmlns=\"http://www.wxwidgets.org/wxxrc\" version=\"2.3.0.1\">\n"
+" <!-- Test comment -->\n"
+" <object class=\"wxDialog\" name=\"my_dialog\">\n"
+" <children>\n"
+" <grandchild id=\"1\"/>\n"
+" </children>\n"
+" <subobject/>\n"
+" </object>\n"
+"</resource>\n"
+ ;
+ CPPUNIT_ASSERT_EQUAL( xmlTextResult2, sos2.GetString() );