1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/xml/xmltest.cpp
3 // Purpose: XML classes unit test
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2008 Vaclav Slavik
8 ///////////////////////////////////////////////////////////////////////////////
10 // ----------------------------------------------------------------------------
12 // ----------------------------------------------------------------------------
24 #include "wx/xml/xml.h"
25 #include "wx/sstream.h"
29 // ----------------------------------------------------------------------------
30 // helpers for testing XML tree
31 // ----------------------------------------------------------------------------
36 void CheckXml(wxXmlNode
*n
, ...)
41 wxXmlNode
*child
= n
->GetChildren();
45 const char *childName
= va_arg(args
, char*);
46 if ( childName
== NULL
)
49 CPPUNIT_ASSERT( child
);
50 CPPUNIT_ASSERT_EQUAL( childName
, child
->GetName() );
51 CPPUNIT_ASSERT( child
->GetChildren() == NULL
);
52 CPPUNIT_ASSERT( child
->GetParent() == n
);
54 child
= child
->GetNext();
59 CPPUNIT_ASSERT( child
== NULL
); // no more children
64 // ----------------------------------------------------------------------------
66 // ----------------------------------------------------------------------------
68 class XmlTestCase
: public CppUnit::TestCase
74 CPPUNIT_TEST_SUITE( XmlTestCase
);
75 CPPUNIT_TEST( InsertChild
);
76 CPPUNIT_TEST( InsertChildAfter
);
77 CPPUNIT_TEST( LoadSave
);
78 CPPUNIT_TEST( CDATA
);
79 CPPUNIT_TEST_SUITE_END();
82 void InsertChildAfter();
86 DECLARE_NO_COPY_CLASS(XmlTestCase
)
89 // register in the unnamed registry so that these tests are run by default
90 CPPUNIT_TEST_SUITE_REGISTRATION( XmlTestCase
);
92 // also include in it's own registry so that these tests can be run alone
93 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( XmlTestCase
, "XmlTestCase" );
95 void XmlTestCase::InsertChild()
97 wxXmlNode
*root
= new wxXmlNode(wxXML_ELEMENT_NODE
, "root");
98 root
->AddChild(new wxXmlNode(wxXML_ELEMENT_NODE
, "1"));
99 wxXmlNode
*two
= new wxXmlNode(wxXML_ELEMENT_NODE
, "2");
101 root
->AddChild(new wxXmlNode(wxXML_ELEMENT_NODE
, "3"));
102 CheckXml(root
, "1", "2", "3", NULL
);
104 // check inserting in front:
105 root
->InsertChild(new wxXmlNode(wxXML_ELEMENT_NODE
, "A"), NULL
);
106 CheckXml(root
, "A", "1", "2", "3", NULL
);
107 root
->InsertChild(new wxXmlNode(wxXML_ELEMENT_NODE
, "B"), root
->GetChildren());
108 CheckXml(root
, "B", "A", "1", "2", "3", NULL
);
110 // and in the middle:
111 root
->InsertChild(new wxXmlNode(wxXML_ELEMENT_NODE
, "C"), two
);
112 CheckXml(root
, "B", "A", "1", "C", "2", "3", NULL
);
115 void XmlTestCase::InsertChildAfter()
117 wxXmlNode
*root
= new wxXmlNode(wxXML_ELEMENT_NODE
, "root");
119 root
->InsertChildAfter(new wxXmlNode(wxXML_ELEMENT_NODE
, "1"), NULL
);
120 CheckXml(root
, "1", NULL
);
122 wxXmlNode
*two
= new wxXmlNode(wxXML_ELEMENT_NODE
, "2");
124 wxXmlNode
*three
= new wxXmlNode(wxXML_ELEMENT_NODE
, "3");
125 root
->AddChild(three
);
126 CheckXml(root
, "1", "2", "3", NULL
);
128 // check inserting in the middle:
129 root
->InsertChildAfter(new wxXmlNode(wxXML_ELEMENT_NODE
, "A"), root
->GetChildren());
130 CheckXml(root
, "1", "A", "2", "3", NULL
);
131 root
->InsertChildAfter(new wxXmlNode(wxXML_ELEMENT_NODE
, "B"), two
);
132 CheckXml(root
, "1", "A", "2", "B", "3", NULL
);
135 root
->InsertChildAfter(new wxXmlNode(wxXML_ELEMENT_NODE
, "C"), three
);
136 CheckXml(root
, "1", "A", "2", "B", "3", "C", NULL
);
139 void XmlTestCase::LoadSave()
141 // NB: this is not real XRC but rather some XRC-like XML fragment which
142 // exercises different XML constructs to check that they're saved back
145 // Also note that there should be no blank lines here as they disappear
147 const char *xmlText
=
148 "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n"
149 "<resource xmlns=\"http://www.wxwidgets.org/wxxrc\" version=\"2.3.0.1\">\n"
150 " <object class=\"wxDialog\" name=\"my_dialog\">\n"
152 " <grandchild id=\"1\"/>\n"
159 wxStringInputStream
sis(xmlText
);
162 CPPUNIT_ASSERT( doc
.Load(sis
) );
164 wxStringOutputStream sos
;
165 CPPUNIT_ASSERT( doc
.Save(sos
) );
167 CPPUNIT_ASSERT_EQUAL( xmlText
, sos
.GetString() );
170 const char *utf8xmlText
=
171 "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
173 " <lang name=\"fr\">\xc3\xa9t\xc3\xa9</lang>\n"
174 " <lang name=\"ru\">\xd0\xbb\xd0\xb5\xd1\x82\xd0\xbe</lang>\n"
178 wxStringInputStream
sis8(wxString::FromUTF8(utf8xmlText
));
179 CPPUNIT_ASSERT( doc
.Load(sis8
) );
181 // this contents can't be represented in Latin-1 as it contains Cyrillic
183 doc
.SetFileEncoding("ISO-8859-1");
184 CPPUNIT_ASSERT( !doc
.Save(sos
) );
186 // but it should work in UTF-8
187 wxStringOutputStream sos8
;
188 doc
.SetFileEncoding("UTF-8");
189 CPPUNIT_ASSERT( doc
.Save(sos8
) );
190 CPPUNIT_ASSERT_EQUAL( wxString(utf8xmlText
),
191 wxString(sos8
.GetString().ToUTF8()) );
194 void XmlTestCase::CDATA()
196 const char *xmlText
=
197 "<?xml version=\"1.0\" encoding=\"windows-1252\"?>\n"
199 " <![CDATA[Giovanni Mittone]]>\n"
203 wxStringInputStream
sis(xmlText
);
205 CPPUNIT_ASSERT( doc
.Load(sis
) );
207 wxXmlNode
*n
= doc
.GetRoot();
210 n
= n
->GetChildren();
213 // check that both leading (" ") and trailing white space is not part of
214 // the node contents when CDATA is used and wxXMLDOC_KEEP_WHITESPACE_NODES
216 CPPUNIT_ASSERT_EQUAL( "Giovanni Mittone", n
->GetContent() );