mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 19:45:41 -04:00

Among other things, this update adds in reporting of the location oc parsing errors, which was present in the original TinyXML but not earlier versions of TinyXML2.
2004 lines
61 KiB
C++
2004 lines
61 KiB
C++
#if defined( _MSC_VER )
|
|
#if !defined( _CRT_SECURE_NO_WARNINGS )
|
|
#define _CRT_SECURE_NO_WARNINGS // This test file is not intended to be secure.
|
|
#endif
|
|
#endif
|
|
|
|
#include "tinyxml2.h"
|
|
#include <cstdlib>
|
|
#include <cstring>
|
|
#include <ctime>
|
|
|
|
#if defined( _MSC_VER )
|
|
#include <crtdbg.h>
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
_CrtMemState startMemState;
|
|
_CrtMemState endMemState;
|
|
#endif
|
|
|
|
using namespace tinyxml2;
|
|
using namespace std;
|
|
int gPass = 0;
|
|
int gFail = 0;
|
|
|
|
|
|
bool XMLTest (const char* testString, const char* expected, const char* found, bool echo=true, bool extraNL=false )
|
|
{
|
|
bool pass;
|
|
if ( !expected && !found )
|
|
pass = true;
|
|
else if ( !expected || !found )
|
|
pass = false;
|
|
else
|
|
pass = !strcmp( expected, found );
|
|
if ( pass )
|
|
printf ("[pass]");
|
|
else
|
|
printf ("[fail]");
|
|
|
|
if ( !echo ) {
|
|
printf (" %s\n", testString);
|
|
}
|
|
else {
|
|
if ( extraNL ) {
|
|
printf( " %s\n", testString );
|
|
printf( "%s\n", expected );
|
|
printf( "%s\n", found );
|
|
}
|
|
else {
|
|
printf (" %s [%s][%s]\n", testString, expected, found);
|
|
}
|
|
}
|
|
|
|
if ( pass )
|
|
++gPass;
|
|
else
|
|
++gFail;
|
|
return pass;
|
|
}
|
|
|
|
bool XMLTest(const char* testString, XMLError expected, XMLError found, bool echo = true, bool extraNL = false)
|
|
{
|
|
return XMLTest(testString, XMLDocument::ErrorIDToName(expected), XMLDocument::ErrorIDToName(found), echo, extraNL);
|
|
}
|
|
|
|
bool XMLTest(const char* testString, bool expected, bool found, bool echo = true, bool extraNL = false)
|
|
{
|
|
return XMLTest(testString, expected ? "true" : "false", found ? "true" : "false", echo, extraNL);
|
|
}
|
|
|
|
template< class T > bool XMLTest( const char* testString, T expected, T found, bool echo=true )
|
|
{
|
|
bool pass = ( expected == found );
|
|
if ( pass )
|
|
printf ("[pass]");
|
|
else
|
|
printf ("[fail]");
|
|
|
|
if ( !echo )
|
|
printf (" %s\n", testString);
|
|
else
|
|
printf (" %s [%d][%d]\n", testString, static_cast<int>(expected), static_cast<int>(found) );
|
|
|
|
if ( pass )
|
|
++gPass;
|
|
else
|
|
++gFail;
|
|
return pass;
|
|
}
|
|
|
|
|
|
void NullLineEndings( char* p )
|
|
{
|
|
while( p && *p ) {
|
|
if ( *p == '\n' || *p == '\r' ) {
|
|
*p = 0;
|
|
return;
|
|
}
|
|
++p;
|
|
}
|
|
}
|
|
|
|
|
|
int example_1()
|
|
{
|
|
XMLDocument doc;
|
|
doc.LoadFile( "resources/dream.xml" );
|
|
|
|
return doc.ErrorID();
|
|
}
|
|
/** @page Example-1 Load an XML File
|
|
* @dontinclude ./xmltest.cpp
|
|
* Basic XML file loading.
|
|
* The basic syntax to load an XML file from
|
|
* disk and check for an error. (ErrorID()
|
|
* will return 0 for no error.)
|
|
* @skip example_1()
|
|
* @until }
|
|
*/
|
|
|
|
|
|
int example_2()
|
|
{
|
|
static const char* xml = "<element/>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
|
|
return doc.ErrorID();
|
|
}
|
|
/** @page Example-2 Parse an XML from char buffer
|
|
* @dontinclude ./xmltest.cpp
|
|
* Basic XML string parsing.
|
|
* The basic syntax to parse an XML for
|
|
* a char* and check for an error. (ErrorID()
|
|
* will return 0 for no error.)
|
|
* @skip example_2()
|
|
* @until }
|
|
*/
|
|
|
|
|
|
int example_3()
|
|
{
|
|
static const char* xml =
|
|
"<?xml version=\"1.0\"?>"
|
|
"<!DOCTYPE PLAY SYSTEM \"play.dtd\">"
|
|
"<PLAY>"
|
|
"<TITLE>A Midsummer Night's Dream</TITLE>"
|
|
"</PLAY>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
|
|
XMLElement* titleElement = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" );
|
|
const char* title = titleElement->GetText();
|
|
printf( "Name of play (1): %s\n", title );
|
|
|
|
XMLText* textNode = titleElement->FirstChild()->ToText();
|
|
title = textNode->Value();
|
|
printf( "Name of play (2): %s\n", title );
|
|
|
|
return doc.ErrorID();
|
|
}
|
|
/** @page Example-3 Get information out of XML
|
|
@dontinclude ./xmltest.cpp
|
|
In this example, we navigate a simple XML
|
|
file, and read some interesting text. Note
|
|
that this example doesn't use error
|
|
checking; working code should check for null
|
|
pointers when walking an XML tree, or use
|
|
XMLHandle.
|
|
|
|
(The XML is an excerpt from "dream.xml").
|
|
|
|
@skip example_3()
|
|
@until </PLAY>";
|
|
|
|
The structure of the XML file is:
|
|
|
|
<ul>
|
|
<li>(declaration)</li>
|
|
<li>(dtd stuff)</li>
|
|
<li>Element "PLAY"</li>
|
|
<ul>
|
|
<li>Element "TITLE"</li>
|
|
<ul>
|
|
<li>Text "A Midsummer Night's Dream"</li>
|
|
</ul>
|
|
</ul>
|
|
</ul>
|
|
|
|
For this example, we want to print out the
|
|
title of the play. The text of the title (what
|
|
we want) is child of the "TITLE" element which
|
|
is a child of the "PLAY" element.
|
|
|
|
We want to skip the declaration and dtd, so the
|
|
method FirstChildElement() is a good choice. The
|
|
FirstChildElement() of the Document is the "PLAY"
|
|
Element, the FirstChildElement() of the "PLAY" Element
|
|
is the "TITLE" Element.
|
|
|
|
@until ( "TITLE" );
|
|
|
|
We can then use the convenience function GetText()
|
|
to get the title of the play.
|
|
|
|
@until title );
|
|
|
|
Text is just another Node in the XML DOM. And in
|
|
fact you should be a little cautious with it, as
|
|
text nodes can contain elements.
|
|
|
|
@verbatim
|
|
Consider: A Midsummer Night's <b>Dream</b>
|
|
@endverbatim
|
|
|
|
It is more correct to actually query the Text Node
|
|
if in doubt:
|
|
|
|
@until title );
|
|
|
|
Noting that here we use FirstChild() since we are
|
|
looking for XMLText, not an element, and ToText()
|
|
is a cast from a Node to a XMLText.
|
|
*/
|
|
|
|
|
|
bool example_4()
|
|
{
|
|
static const char* xml =
|
|
"<information>"
|
|
" <attributeApproach v='2' />"
|
|
" <textApproach>"
|
|
" <v>2</v>"
|
|
" </textApproach>"
|
|
"</information>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
|
|
int v0 = 0;
|
|
int v1 = 0;
|
|
|
|
XMLElement* attributeApproachElement = doc.FirstChildElement()->FirstChildElement( "attributeApproach" );
|
|
attributeApproachElement->QueryIntAttribute( "v", &v0 );
|
|
|
|
XMLElement* textApproachElement = doc.FirstChildElement()->FirstChildElement( "textApproach" );
|
|
textApproachElement->FirstChildElement( "v" )->QueryIntText( &v1 );
|
|
|
|
printf( "Both values are the same: %d and %d\n", v0, v1 );
|
|
|
|
return !doc.Error() && ( v0 == v1 );
|
|
}
|
|
/** @page Example-4 Read attributes and text information.
|
|
@dontinclude ./xmltest.cpp
|
|
|
|
There are fundamentally 2 ways of writing a key-value
|
|
pair into an XML file. (Something that's always annoyed
|
|
me about XML.) Either by using attributes, or by writing
|
|
the key name into an element and the value into
|
|
the text node wrapped by the element. Both approaches
|
|
are illustrated in this example, which shows two ways
|
|
to encode the value "2" into the key "v":
|
|
|
|
@skip example_4()
|
|
@until "</information>";
|
|
|
|
TinyXML-2 has accessors for both approaches.
|
|
|
|
When using an attribute, you navigate to the XMLElement
|
|
with that attribute and use the QueryIntAttribute()
|
|
group of methods. (Also QueryFloatAttribute(), etc.)
|
|
|
|
@skip XMLElement* attributeApproachElement
|
|
@until &v0 );
|
|
|
|
When using the text approach, you need to navigate
|
|
down one more step to the XMLElement that contains
|
|
the text. Note the extra FirstChildElement( "v" )
|
|
in the code below. The value of the text can then
|
|
be safely queried with the QueryIntText() group
|
|
of methods. (Also QueryFloatText(), etc.)
|
|
|
|
@skip XMLElement* textApproachElement
|
|
@until &v1 );
|
|
*/
|
|
|
|
|
|
int main( int argc, const char ** argv )
|
|
{
|
|
#if defined( _MSC_VER ) && defined( DEBUG )
|
|
_CrtMemCheckpoint( &startMemState );
|
|
// Enable MS Visual C++ debug heap memory leaks dump on exit
|
|
_CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
|
|
{
|
|
int leaksOnStart = _CrtDumpMemoryLeaks();
|
|
XMLTest( "No leaks on start?", FALSE, leaksOnStart );
|
|
}
|
|
#endif
|
|
|
|
{
|
|
TIXMLASSERT( true );
|
|
}
|
|
|
|
if ( argc > 1 ) {
|
|
XMLDocument* doc = new XMLDocument();
|
|
clock_t startTime = clock();
|
|
doc->LoadFile( argv[1] );
|
|
clock_t loadTime = clock();
|
|
int errorID = doc->ErrorID();
|
|
delete doc; doc = 0;
|
|
clock_t deleteTime = clock();
|
|
|
|
printf( "Test file '%s' loaded. ErrorID=%d\n", argv[1], errorID );
|
|
if ( !errorID ) {
|
|
printf( "Load time=%u\n", (unsigned)(loadTime - startTime) );
|
|
printf( "Delete time=%u\n", (unsigned)(deleteTime - loadTime) );
|
|
printf( "Total time=%u\n", (unsigned)(deleteTime - startTime) );
|
|
}
|
|
exit(0);
|
|
}
|
|
|
|
FILE* fp = fopen( "resources/dream.xml", "r" );
|
|
if ( !fp ) {
|
|
printf( "Error opening test file 'dream.xml'.\n"
|
|
"Is your working directory the same as where \n"
|
|
"the xmltest.cpp and dream.xml file are?\n\n"
|
|
#if defined( _MSC_VER )
|
|
"In windows Visual Studio you may need to set\n"
|
|
"Properties->Debugging->Working Directory to '..'\n"
|
|
#endif
|
|
);
|
|
exit( 1 );
|
|
}
|
|
fclose( fp );
|
|
|
|
XMLTest( "Example-1", 0, example_1() );
|
|
XMLTest( "Example-2", 0, example_2() );
|
|
XMLTest( "Example-3", 0, example_3() );
|
|
XMLTest( "Example-4", true, example_4() );
|
|
|
|
/* ------ Example 2: Lookup information. ---- */
|
|
|
|
{
|
|
static const char* test[] = { "<element />",
|
|
"<element></element>",
|
|
"<element><subelement/></element>",
|
|
"<element><subelement></subelement></element>",
|
|
"<element><subelement><subsub/></subelement></element>",
|
|
"<!--comment beside elements--><element><subelement></subelement></element>",
|
|
"<!--comment beside elements, this time with spaces--> \n <element> <subelement> \n </subelement> </element>",
|
|
"<element attrib1='foo' attrib2=\"bar\" ></element>",
|
|
"<element attrib1='foo' attrib2=\"bar\" ><subelement attrib3='yeehaa' /></element>",
|
|
"<element>Text inside element.</element>",
|
|
"<element><b></b></element>",
|
|
"<element>Text inside and <b>bolded</b> in the element.</element>",
|
|
"<outer><element>Text inside and <b>bolded</b> in the element.</element></outer>",
|
|
"<element>This & That.</element>",
|
|
"<element attrib='This<That' />",
|
|
0
|
|
};
|
|
for( int i=0; test[i]; ++i ) {
|
|
XMLDocument doc;
|
|
doc.Parse( test[i] );
|
|
doc.Print();
|
|
printf( "----------------------------------------------\n" );
|
|
}
|
|
}
|
|
#if 1
|
|
{
|
|
static const char* test = "<!--hello world\n"
|
|
" line 2\r"
|
|
" line 3\r\n"
|
|
" line 4\n\r"
|
|
" line 5\r-->";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( test );
|
|
doc.Print();
|
|
}
|
|
|
|
{
|
|
static const char* test = "<element>Text before.</element>";
|
|
XMLDocument doc;
|
|
doc.Parse( test );
|
|
XMLElement* root = doc.FirstChildElement();
|
|
XMLElement* newElement = doc.NewElement( "Subelement" );
|
|
root->InsertEndChild( newElement );
|
|
doc.Print();
|
|
}
|
|
{
|
|
XMLDocument* doc = new XMLDocument();
|
|
static const char* test = "<element><sub/></element>";
|
|
doc->Parse( test );
|
|
delete doc;
|
|
}
|
|
{
|
|
// Test: Programmatic DOM
|
|
// Build:
|
|
// <element>
|
|
// <!--comment-->
|
|
// <sub attrib="1" />
|
|
// <sub attrib="2" />
|
|
// <sub attrib="3" >& Text!</sub>
|
|
// <element>
|
|
|
|
XMLDocument* doc = new XMLDocument();
|
|
XMLNode* element = doc->InsertEndChild( doc->NewElement( "element" ) );
|
|
|
|
XMLElement* sub[3] = { doc->NewElement( "sub" ), doc->NewElement( "sub" ), doc->NewElement( "sub" ) };
|
|
for( int i=0; i<3; ++i ) {
|
|
sub[i]->SetAttribute( "attrib", i );
|
|
}
|
|
element->InsertEndChild( sub[2] );
|
|
XMLNode* comment = element->InsertFirstChild( doc->NewComment( "comment" ) );
|
|
comment->SetUserData((void*)2);
|
|
element->InsertAfterChild( comment, sub[0] );
|
|
element->InsertAfterChild( sub[0], sub[1] );
|
|
sub[2]->InsertFirstChild( doc->NewText( "& Text!" ));
|
|
doc->Print();
|
|
XMLTest( "Programmatic DOM", "comment", doc->FirstChildElement( "element" )->FirstChild()->Value() );
|
|
XMLTest( "Programmatic DOM", "0", doc->FirstChildElement( "element" )->FirstChildElement()->Attribute( "attrib" ) );
|
|
XMLTest( "Programmatic DOM", 2, doc->FirstChildElement()->LastChildElement( "sub" )->IntAttribute( "attrib" ) );
|
|
XMLTest( "Programmatic DOM", "& Text!",
|
|
doc->FirstChildElement()->LastChildElement( "sub" )->FirstChild()->ToText()->Value() );
|
|
XMLTest("User data", (void*)2 == comment->GetUserData(), true, false);
|
|
|
|
// And now deletion:
|
|
element->DeleteChild( sub[2] );
|
|
doc->DeleteNode( comment );
|
|
|
|
element->FirstChildElement()->SetAttribute( "attrib", true );
|
|
element->LastChildElement()->DeleteAttribute( "attrib" );
|
|
|
|
XMLTest( "Programmatic DOM", true, doc->FirstChildElement()->FirstChildElement()->BoolAttribute( "attrib" ) );
|
|
int value1 = 10;
|
|
int value2 = doc->FirstChildElement()->LastChildElement()->IntAttribute( "attrib", 10 );
|
|
int result = doc->FirstChildElement()->LastChildElement()->QueryIntAttribute( "attrib", &value1 );
|
|
XMLTest( "Programmatic DOM", result, (int)XML_NO_ATTRIBUTE );
|
|
XMLTest( "Programmatic DOM", value1, 10 );
|
|
XMLTest( "Programmatic DOM", value2, 10 );
|
|
|
|
doc->Print();
|
|
|
|
{
|
|
XMLPrinter streamer;
|
|
doc->Print( &streamer );
|
|
printf( "%s", streamer.CStr() );
|
|
}
|
|
{
|
|
XMLPrinter streamer( 0, true );
|
|
doc->Print( &streamer );
|
|
XMLTest( "Compact mode", "<element><sub attrib=\"true\"/><sub/></element>", streamer.CStr(), false );
|
|
}
|
|
doc->SaveFile( "./resources/out/pretty.xml" );
|
|
doc->SaveFile( "./resources/out/compact.xml", true );
|
|
delete doc;
|
|
}
|
|
{
|
|
// Test: Dream
|
|
// XML1 : 1,187,569 bytes in 31,209 allocations
|
|
// XML2 : 469,073 bytes in 323 allocations
|
|
//int newStart = gNew;
|
|
XMLDocument doc;
|
|
doc.LoadFile( "resources/dream.xml" );
|
|
|
|
doc.SaveFile( "resources/out/dreamout.xml" );
|
|
doc.PrintError();
|
|
|
|
XMLTest( "Dream", "xml version=\"1.0\"",
|
|
doc.FirstChild()->ToDeclaration()->Value() );
|
|
XMLTest( "Dream", true, doc.FirstChild()->NextSibling()->ToUnknown() ? true : false );
|
|
XMLTest( "Dream", "DOCTYPE PLAY SYSTEM \"play.dtd\"",
|
|
doc.FirstChild()->NextSibling()->ToUnknown()->Value() );
|
|
XMLTest( "Dream", "And Robin shall restore amends.",
|
|
doc.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() );
|
|
XMLTest( "Dream", "And Robin shall restore amends.",
|
|
doc.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() );
|
|
|
|
XMLDocument doc2;
|
|
doc2.LoadFile( "resources/out/dreamout.xml" );
|
|
XMLTest( "Dream-out", "xml version=\"1.0\"",
|
|
doc2.FirstChild()->ToDeclaration()->Value() );
|
|
XMLTest( "Dream-out", true, doc2.FirstChild()->NextSibling()->ToUnknown() ? true : false );
|
|
XMLTest( "Dream-out", "DOCTYPE PLAY SYSTEM \"play.dtd\"",
|
|
doc2.FirstChild()->NextSibling()->ToUnknown()->Value() );
|
|
XMLTest( "Dream-out", "And Robin shall restore amends.",
|
|
doc2.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() );
|
|
|
|
//gNewTotal = gNew - newStart;
|
|
}
|
|
|
|
|
|
{
|
|
const char* error = "<?xml version=\"1.0\" standalone=\"no\" ?>\n"
|
|
"<passages count=\"006\" formatversion=\"20020620\">\n"
|
|
" <wrong error>\n"
|
|
"</passages>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( error );
|
|
XMLTest( "Bad XML", doc.ErrorID(), XML_ERROR_PARSING_ATTRIBUTE );
|
|
}
|
|
|
|
{
|
|
const char* str = "<doc attr0='1' attr1='2.0' attr2='foo' />";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
|
|
XMLElement* ele = doc.FirstChildElement();
|
|
|
|
int iVal, result;
|
|
double dVal;
|
|
|
|
result = ele->QueryDoubleAttribute( "attr0", &dVal );
|
|
XMLTest( "Query attribute: int as double", result, (int)XML_SUCCESS);
|
|
XMLTest( "Query attribute: int as double", (int)dVal, 1 );
|
|
XMLTest( "Query attribute: int as double", (int)ele->DoubleAttribute("attr0"), 1);
|
|
|
|
result = ele->QueryDoubleAttribute( "attr1", &dVal );
|
|
XMLTest( "Query attribute: double as double", result, (int)XML_SUCCESS);
|
|
XMLTest( "Query attribute: double as double", dVal, 2.0 );
|
|
XMLTest( "Query attribute: double as double", ele->DoubleAttribute("attr1"), 2.0 );
|
|
|
|
result = ele->QueryIntAttribute( "attr1", &iVal );
|
|
XMLTest( "Query attribute: double as int", result, (int)XML_SUCCESS);
|
|
XMLTest( "Query attribute: double as int", iVal, 2 );
|
|
|
|
result = ele->QueryIntAttribute( "attr2", &iVal );
|
|
XMLTest( "Query attribute: not a number", result, (int)XML_WRONG_ATTRIBUTE_TYPE );
|
|
XMLTest( "Query attribute: not a number", ele->DoubleAttribute("attr2", 4.0), 4.0 );
|
|
|
|
result = ele->QueryIntAttribute( "bar", &iVal );
|
|
XMLTest( "Query attribute: does not exist", result, (int)XML_NO_ATTRIBUTE );
|
|
XMLTest( "Query attribute: does not exist", ele->BoolAttribute("bar", true), true );
|
|
}
|
|
|
|
{
|
|
const char* str = "<doc/>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
|
|
XMLElement* ele = doc.FirstChildElement();
|
|
|
|
int iVal, iVal2;
|
|
double dVal, dVal2;
|
|
|
|
ele->SetAttribute( "str", "strValue" );
|
|
ele->SetAttribute( "int", 1 );
|
|
ele->SetAttribute( "double", -1.0 );
|
|
|
|
const char* cStr = ele->Attribute( "str" );
|
|
ele->QueryIntAttribute( "int", &iVal );
|
|
ele->QueryDoubleAttribute( "double", &dVal );
|
|
|
|
ele->QueryAttribute( "int", &iVal2 );
|
|
ele->QueryAttribute( "double", &dVal2 );
|
|
|
|
XMLTest( "Attribute match test", ele->Attribute( "str", "strValue" ), "strValue" );
|
|
XMLTest( "Attribute round trip. c-string.", "strValue", cStr );
|
|
XMLTest( "Attribute round trip. int.", 1, iVal );
|
|
XMLTest( "Attribute round trip. double.", -1, (int)dVal );
|
|
XMLTest( "Alternate query", true, iVal == iVal2 );
|
|
XMLTest( "Alternate query", true, dVal == dVal2 );
|
|
XMLTest( "Alternate query", true, iVal == ele->IntAttribute("int") );
|
|
XMLTest( "Alternate query", true, dVal == ele->DoubleAttribute("double") );
|
|
}
|
|
|
|
{
|
|
XMLDocument doc;
|
|
doc.LoadFile( "resources/utf8test.xml" );
|
|
|
|
// Get the attribute "value" from the "Russian" element and check it.
|
|
XMLElement* element = doc.FirstChildElement( "document" )->FirstChildElement( "Russian" );
|
|
const unsigned char correctValue[] = { 0xd1U, 0x86U, 0xd0U, 0xb5U, 0xd0U, 0xbdU, 0xd0U, 0xbdU,
|
|
0xd0U, 0xbeU, 0xd1U, 0x81U, 0xd1U, 0x82U, 0xd1U, 0x8cU, 0 };
|
|
|
|
XMLTest( "UTF-8: Russian value.", (const char*)correctValue, element->Attribute( "value" ) );
|
|
|
|
const unsigned char russianElementName[] = { 0xd0U, 0xa0U, 0xd1U, 0x83U,
|
|
0xd1U, 0x81U, 0xd1U, 0x81U,
|
|
0xd0U, 0xbaU, 0xd0U, 0xb8U,
|
|
0xd0U, 0xb9U, 0 };
|
|
const char russianText[] = "<\xD0\xB8\xD0\xBC\xD0\xB5\xD0\xB5\xD1\x82>";
|
|
|
|
XMLText* text = doc.FirstChildElement( "document" )->FirstChildElement( (const char*) russianElementName )->FirstChild()->ToText();
|
|
XMLTest( "UTF-8: Browsing russian element name.",
|
|
russianText,
|
|
text->Value() );
|
|
|
|
// Now try for a round trip.
|
|
doc.SaveFile( "resources/out/utf8testout.xml" );
|
|
|
|
// Check the round trip.
|
|
int okay = 0;
|
|
|
|
FILE* saved = fopen( "resources/out/utf8testout.xml", "r" );
|
|
FILE* verify = fopen( "resources/utf8testverify.xml", "r" );
|
|
|
|
if ( saved && verify )
|
|
{
|
|
okay = 1;
|
|
char verifyBuf[256];
|
|
while ( fgets( verifyBuf, 256, verify ) )
|
|
{
|
|
char savedBuf[256];
|
|
fgets( savedBuf, 256, saved );
|
|
NullLineEndings( verifyBuf );
|
|
NullLineEndings( savedBuf );
|
|
|
|
if ( strcmp( verifyBuf, savedBuf ) )
|
|
{
|
|
printf( "verify:%s<\n", verifyBuf );
|
|
printf( "saved :%s<\n", savedBuf );
|
|
okay = 0;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if ( saved )
|
|
fclose( saved );
|
|
if ( verify )
|
|
fclose( verify );
|
|
XMLTest( "UTF-8: Verified multi-language round trip.", 1, okay );
|
|
}
|
|
|
|
// --------GetText()-----------
|
|
{
|
|
const char* str = "<foo>This is text</foo>";
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
const XMLElement* element = doc.RootElement();
|
|
|
|
XMLTest( "GetText() normal use.", "This is text", element->GetText() );
|
|
|
|
str = "<foo><b>This is text</b></foo>";
|
|
doc.Parse( str );
|
|
element = doc.RootElement();
|
|
|
|
XMLTest( "GetText() contained element.", element->GetText() == 0, true );
|
|
}
|
|
|
|
|
|
// --------SetText()-----------
|
|
{
|
|
const char* str = "<foo></foo>";
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
XMLElement* element = doc.RootElement();
|
|
|
|
element->SetText("darkness.");
|
|
XMLTest( "SetText() normal use (open/close).", "darkness.", element->GetText() );
|
|
|
|
element->SetText("blue flame.");
|
|
XMLTest( "SetText() replace.", "blue flame.", element->GetText() );
|
|
|
|
str = "<foo/>";
|
|
doc.Parse( str );
|
|
element = doc.RootElement();
|
|
|
|
element->SetText("The driver");
|
|
XMLTest( "SetText() normal use. (self-closing)", "The driver", element->GetText() );
|
|
|
|
element->SetText("<b>horses</b>");
|
|
XMLTest( "SetText() replace with tag-like text.", "<b>horses</b>", element->GetText() );
|
|
//doc.Print();
|
|
|
|
str = "<foo><bar>Text in nested element</bar></foo>";
|
|
doc.Parse( str );
|
|
element = doc.RootElement();
|
|
|
|
element->SetText("wolves");
|
|
XMLTest( "SetText() prefix to nested non-text children.", "wolves", element->GetText() );
|
|
|
|
str = "<foo/>";
|
|
doc.Parse( str );
|
|
element = doc.RootElement();
|
|
|
|
element->SetText( "str" );
|
|
XMLTest( "SetText types", "str", element->GetText() );
|
|
|
|
element->SetText( 1 );
|
|
XMLTest( "SetText types", "1", element->GetText() );
|
|
|
|
element->SetText( 1U );
|
|
XMLTest( "SetText types", "1", element->GetText() );
|
|
|
|
element->SetText( true );
|
|
XMLTest( "SetText types", "true", element->GetText() );
|
|
|
|
element->SetText( 1.5f );
|
|
XMLTest( "SetText types", "1.5", element->GetText() );
|
|
|
|
element->SetText( 1.5 );
|
|
XMLTest( "SetText types", "1.5", element->GetText() );
|
|
}
|
|
|
|
// ---------- Attributes ---------
|
|
{
|
|
static const int64_t BIG = -123456789012345678;
|
|
XMLDocument doc;
|
|
XMLElement* element = doc.NewElement("element");
|
|
doc.InsertFirstChild(element);
|
|
|
|
{
|
|
element->SetAttribute("attrib", int(-100));
|
|
int v = 0;
|
|
element->QueryIntAttribute("attrib", &v);
|
|
XMLTest("Attribute: int", -100, v, true);
|
|
element->QueryAttribute("attrib", &v);
|
|
XMLTest("Attribute: int", -100, v, true);
|
|
XMLTest("Attribute: int", -100, element->IntAttribute("attrib"), true);
|
|
}
|
|
{
|
|
element->SetAttribute("attrib", unsigned(100));
|
|
unsigned v = 0;
|
|
element->QueryUnsignedAttribute("attrib", &v);
|
|
XMLTest("Attribute: unsigned", unsigned(100), v, true);
|
|
element->QueryAttribute("attrib", &v);
|
|
XMLTest("Attribute: unsigned", unsigned(100), v, true);
|
|
XMLTest("Attribute: unsigned", unsigned(100), element->UnsignedAttribute("attrib"), true);
|
|
}
|
|
{
|
|
element->SetAttribute("attrib", BIG);
|
|
int64_t v = 0;
|
|
element->QueryInt64Attribute("attrib", &v);
|
|
XMLTest("Attribute: int64_t", BIG, v, true);
|
|
element->QueryAttribute("attrib", &v);
|
|
XMLTest("Attribute: int64_t", BIG, v, true);
|
|
XMLTest("Attribute: int64_t", BIG, element->Int64Attribute("attrib"), true);
|
|
}
|
|
{
|
|
element->SetAttribute("attrib", true);
|
|
bool v = false;
|
|
element->QueryBoolAttribute("attrib", &v);
|
|
XMLTest("Attribute: bool", true, v, true);
|
|
element->QueryAttribute("attrib", &v);
|
|
XMLTest("Attribute: bool", true, v, true);
|
|
XMLTest("Attribute: bool", true, element->BoolAttribute("attrib"), true);
|
|
}
|
|
{
|
|
element->SetAttribute("attrib", true);
|
|
const char* result = element->Attribute("attrib");
|
|
XMLTest("Bool true is 'true'", "true", result);
|
|
|
|
XMLUtil::SetBoolSerialization("1", "0");
|
|
element->SetAttribute("attrib", true);
|
|
result = element->Attribute("attrib");
|
|
XMLTest("Bool true is '1'", "1", result);
|
|
|
|
XMLUtil::SetBoolSerialization(0, 0);
|
|
}
|
|
{
|
|
element->SetAttribute("attrib", 100.0);
|
|
double v = 0;
|
|
element->QueryDoubleAttribute("attrib", &v);
|
|
XMLTest("Attribute: double", 100.0, v, true);
|
|
element->QueryAttribute("attrib", &v);
|
|
XMLTest("Attribute: double", 100.0, v, true);
|
|
XMLTest("Attribute: double", 100.0, element->DoubleAttribute("attrib"), true);
|
|
}
|
|
{
|
|
element->SetAttribute("attrib", 100.0f);
|
|
float v = 0;
|
|
element->QueryFloatAttribute("attrib", &v);
|
|
XMLTest("Attribute: float", 100.0f, v, true);
|
|
element->QueryAttribute("attrib", &v);
|
|
XMLTest("Attribute: float", 100.0f, v, true);
|
|
XMLTest("Attribute: float", 100.0f, element->FloatAttribute("attrib"), true);
|
|
}
|
|
{
|
|
element->SetText(BIG);
|
|
int64_t v = 0;
|
|
element->QueryInt64Text(&v);
|
|
XMLTest("Element: int64_t", BIG, v, true);
|
|
}
|
|
}
|
|
|
|
// ---------- XMLPrinter stream mode ------
|
|
{
|
|
{
|
|
FILE* printerfp = fopen("resources/printer.xml", "w");
|
|
XMLPrinter printer(printerfp);
|
|
printer.OpenElement("foo");
|
|
printer.PushAttribute("attrib-text", "text");
|
|
printer.PushAttribute("attrib-int", int(1));
|
|
printer.PushAttribute("attrib-unsigned", unsigned(2));
|
|
printer.PushAttribute("attrib-int64", int64_t(3));
|
|
printer.PushAttribute("attrib-bool", true);
|
|
printer.PushAttribute("attrib-double", 4.0);
|
|
printer.CloseElement();
|
|
fclose(printerfp);
|
|
}
|
|
{
|
|
XMLDocument doc;
|
|
doc.LoadFile("resources/printer.xml");
|
|
XMLTest("XMLPrinter Stream mode: load", doc.ErrorID(), XML_SUCCESS, true);
|
|
|
|
const XMLDocument& cdoc = doc;
|
|
|
|
const XMLAttribute* attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-text");
|
|
XMLTest("attrib-text", "text", attrib->Value(), true);
|
|
attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-int");
|
|
XMLTest("attrib-int", int(1), attrib->IntValue(), true);
|
|
attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-unsigned");
|
|
XMLTest("attrib-unsigned", unsigned(2), attrib->UnsignedValue(), true);
|
|
attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-int64");
|
|
XMLTest("attrib-int64", int64_t(3), attrib->Int64Value(), true);
|
|
attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-bool");
|
|
XMLTest("attrib-bool", true, attrib->BoolValue(), true);
|
|
attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-double");
|
|
XMLTest("attrib-double", 4.0, attrib->DoubleValue(), true);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
// ---------- CDATA ---------------
|
|
{
|
|
const char* str = "<xmlElement>"
|
|
"<![CDATA["
|
|
"I am > the rules!\n"
|
|
"...since I make symbolic puns"
|
|
"]]>"
|
|
"</xmlElement>";
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
doc.Print();
|
|
|
|
XMLTest( "CDATA parse.", doc.FirstChildElement()->FirstChild()->Value(),
|
|
"I am > the rules!\n...since I make symbolic puns",
|
|
false );
|
|
}
|
|
|
|
// ----------- CDATA -------------
|
|
{
|
|
const char* str = "<xmlElement>"
|
|
"<![CDATA["
|
|
"<b>I am > the rules!</b>\n"
|
|
"...since I make symbolic puns"
|
|
"]]>"
|
|
"</xmlElement>";
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
doc.Print();
|
|
|
|
XMLTest( "CDATA parse. [ tixml1:1480107 ]", doc.FirstChildElement()->FirstChild()->Value(),
|
|
"<b>I am > the rules!</b>\n...since I make symbolic puns",
|
|
false );
|
|
}
|
|
|
|
// InsertAfterChild causes crash.
|
|
{
|
|
// InsertBeforeChild and InsertAfterChild causes crash.
|
|
XMLDocument doc;
|
|
XMLElement* parent = doc.NewElement( "Parent" );
|
|
doc.InsertFirstChild( parent );
|
|
|
|
XMLElement* childText0 = doc.NewElement( "childText0" );
|
|
XMLElement* childText1 = doc.NewElement( "childText1" );
|
|
|
|
XMLNode* childNode0 = parent->InsertEndChild( childText0 );
|
|
XMLNode* childNode1 = parent->InsertAfterChild( childNode0, childText1 );
|
|
|
|
XMLTest( "Test InsertAfterChild on empty node. ", ( childNode1 == parent->LastChild() ), true );
|
|
}
|
|
|
|
{
|
|
// Entities not being written correctly.
|
|
// From Lynn Allen
|
|
|
|
const char* passages =
|
|
"<?xml version=\"1.0\" standalone=\"no\" ?>"
|
|
"<passages count=\"006\" formatversion=\"20020620\">"
|
|
"<psg context=\"Line 5 has "quotation marks" and 'apostrophe marks'."
|
|
" It also has <, >, and &, as well as a fake copyright ©.\"> </psg>"
|
|
"</passages>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( passages );
|
|
XMLElement* psg = doc.RootElement()->FirstChildElement();
|
|
const char* context = psg->Attribute( "context" );
|
|
const char* expected = "Line 5 has \"quotation marks\" and 'apostrophe marks'. It also has <, >, and &, as well as a fake copyright \xC2\xA9.";
|
|
|
|
XMLTest( "Entity transformation: read. ", expected, context, true );
|
|
|
|
FILE* textfile = fopen( "resources/out/textfile.txt", "w" );
|
|
if ( textfile )
|
|
{
|
|
XMLPrinter streamer( textfile );
|
|
psg->Accept( &streamer );
|
|
fclose( textfile );
|
|
}
|
|
|
|
textfile = fopen( "resources/out/textfile.txt", "r" );
|
|
TIXMLASSERT( textfile );
|
|
if ( textfile )
|
|
{
|
|
char buf[ 1024 ];
|
|
fgets( buf, 1024, textfile );
|
|
XMLTest( "Entity transformation: write. ",
|
|
"<psg context=\"Line 5 has "quotation marks" and 'apostrophe marks'."
|
|
" It also has <, >, and &, as well as a fake copyright \xC2\xA9.\"/>\n",
|
|
buf, false );
|
|
fclose( textfile );
|
|
}
|
|
}
|
|
|
|
{
|
|
// Suppress entities.
|
|
const char* passages =
|
|
"<?xml version=\"1.0\" standalone=\"no\" ?>"
|
|
"<passages count=\"006\" formatversion=\"20020620\">"
|
|
"<psg context=\"Line 5 has "quotation marks" and 'apostrophe marks'.\">Crazy &ttk;</psg>"
|
|
"</passages>";
|
|
|
|
XMLDocument doc( false );
|
|
doc.Parse( passages );
|
|
|
|
XMLTest( "No entity parsing.", doc.FirstChildElement()->FirstChildElement()->Attribute( "context" ),
|
|
"Line 5 has "quotation marks" and 'apostrophe marks'." );
|
|
XMLTest( "No entity parsing.", doc.FirstChildElement()->FirstChildElement()->FirstChild()->Value(),
|
|
"Crazy &ttk;" );
|
|
doc.Print();
|
|
}
|
|
|
|
{
|
|
const char* test = "<?xml version='1.0'?><a.elem xmi.version='2.0'/>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( test );
|
|
XMLTest( "dot in names", doc.Error(), false );
|
|
XMLTest( "dot in names", doc.FirstChildElement()->Name(), "a.elem" );
|
|
XMLTest( "dot in names", doc.FirstChildElement()->Attribute( "xmi.version" ), "2.0" );
|
|
}
|
|
|
|
{
|
|
const char* test = "<element><Name>1.1 Start easy ignore fin thickness
</Name></element>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( test );
|
|
|
|
XMLText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText();
|
|
XMLTest( "Entity with one digit.",
|
|
text->Value(), "1.1 Start easy ignore fin thickness\n",
|
|
false );
|
|
}
|
|
|
|
{
|
|
// DOCTYPE not preserved (950171)
|
|
//
|
|
const char* doctype =
|
|
"<?xml version=\"1.0\" ?>"
|
|
"<!DOCTYPE PLAY SYSTEM 'play.dtd'>"
|
|
"<!ELEMENT title (#PCDATA)>"
|
|
"<!ELEMENT books (title,authors)>"
|
|
"<element />";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( doctype );
|
|
doc.SaveFile( "resources/out/test7.xml" );
|
|
doc.DeleteChild( doc.RootElement() );
|
|
doc.LoadFile( "resources/out/test7.xml" );
|
|
doc.Print();
|
|
|
|
const XMLUnknown* decl = doc.FirstChild()->NextSibling()->ToUnknown();
|
|
XMLTest( "Correct value of unknown.", "DOCTYPE PLAY SYSTEM 'play.dtd'", decl->Value() );
|
|
|
|
}
|
|
|
|
{
|
|
// Comments do not stream out correctly.
|
|
const char* doctype =
|
|
"<!-- Somewhat<evil> -->";
|
|
XMLDocument doc;
|
|
doc.Parse( doctype );
|
|
|
|
XMLComment* comment = doc.FirstChild()->ToComment();
|
|
|
|
XMLTest( "Comment formatting.", " Somewhat<evil> ", comment->Value() );
|
|
}
|
|
{
|
|
// Double attributes
|
|
const char* doctype = "<element attr='red' attr='blue' />";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( doctype );
|
|
|
|
XMLTest( "Parsing repeated attributes.", XML_ERROR_PARSING_ATTRIBUTE, doc.ErrorID() ); // is an error to tinyxml (didn't use to be, but caused issues)
|
|
doc.PrintError();
|
|
}
|
|
|
|
{
|
|
// Embedded null in stream.
|
|
const char* doctype = "<element att\0r='red' attr='blue' />";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( doctype );
|
|
XMLTest( "Embedded null throws error.", true, doc.Error() );
|
|
}
|
|
|
|
{
|
|
// Empty documents should return TIXML_XML_ERROR_PARSING_EMPTY, bug 1070717
|
|
const char* str = "";
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
XMLTest( "Empty document error", XML_ERROR_EMPTY_DOCUMENT, doc.ErrorID() );
|
|
}
|
|
|
|
{
|
|
// Documents with all whitespaces should return TIXML_XML_ERROR_PARSING_EMPTY, bug 1070717
|
|
const char* str = " ";
|
|
XMLDocument doc;
|
|
doc.Parse( str );
|
|
XMLTest( "All whitespaces document error", XML_ERROR_EMPTY_DOCUMENT, doc.ErrorID() );
|
|
}
|
|
|
|
{
|
|
// Low entities
|
|
XMLDocument doc;
|
|
doc.Parse( "<test></test>" );
|
|
const char result[] = { 0x0e, 0 };
|
|
XMLTest( "Low entities.", doc.FirstChildElement()->GetText(), result );
|
|
doc.Print();
|
|
}
|
|
|
|
{
|
|
// Attribute values with trailing quotes not handled correctly
|
|
XMLDocument doc;
|
|
doc.Parse( "<foo attribute=bar\" />" );
|
|
XMLTest( "Throw error with bad end quotes.", doc.Error(), true );
|
|
}
|
|
|
|
{
|
|
// [ 1663758 ] Failure to report error on bad XML
|
|
XMLDocument xml;
|
|
xml.Parse("<x>");
|
|
XMLTest("Missing end tag at end of input", xml.Error(), true);
|
|
xml.Parse("<x> ");
|
|
XMLTest("Missing end tag with trailing whitespace", xml.Error(), true);
|
|
xml.Parse("<x></y>");
|
|
XMLTest("Mismatched tags", xml.ErrorID(), XML_ERROR_MISMATCHED_ELEMENT);
|
|
}
|
|
|
|
|
|
{
|
|
// [ 1475201 ] TinyXML parses entities in comments
|
|
XMLDocument xml;
|
|
xml.Parse("<!-- declarations for <head> & <body> -->"
|
|
"<!-- far & away -->" );
|
|
|
|
XMLNode* e0 = xml.FirstChild();
|
|
XMLNode* e1 = e0->NextSibling();
|
|
XMLComment* c0 = e0->ToComment();
|
|
XMLComment* c1 = e1->ToComment();
|
|
|
|
XMLTest( "Comments ignore entities.", " declarations for <head> & <body> ", c0->Value(), true );
|
|
XMLTest( "Comments ignore entities.", " far & away ", c1->Value(), true );
|
|
}
|
|
|
|
{
|
|
XMLDocument xml;
|
|
xml.Parse( "<Parent>"
|
|
"<child1 att=''/>"
|
|
"<!-- With this comment, child2 will not be parsed! -->"
|
|
"<child2 att=''/>"
|
|
"</Parent>" );
|
|
xml.Print();
|
|
|
|
int count = 0;
|
|
|
|
for( XMLNode* ele = xml.FirstChildElement( "Parent" )->FirstChild();
|
|
ele;
|
|
ele = ele->NextSibling() )
|
|
{
|
|
++count;
|
|
}
|
|
|
|
XMLTest( "Comments iterate correctly.", 3, count );
|
|
}
|
|
|
|
{
|
|
// trying to repro ]1874301]. If it doesn't go into an infinite loop, all is well.
|
|
unsigned char buf[] = "<?xml version=\"1.0\" encoding=\"utf-8\"?><feed><![CDATA[Test XMLblablablalblbl";
|
|
buf[60] = 239;
|
|
buf[61] = 0;
|
|
|
|
XMLDocument doc;
|
|
doc.Parse( (const char*)buf);
|
|
}
|
|
|
|
|
|
{
|
|
// bug 1827248 Error while parsing a little bit malformed file
|
|
// Actually not malformed - should work.
|
|
XMLDocument xml;
|
|
xml.Parse( "<attributelist> </attributelist >" );
|
|
XMLTest( "Handle end tag whitespace", false, xml.Error() );
|
|
}
|
|
|
|
{
|
|
// This one must not result in an infinite loop
|
|
XMLDocument xml;
|
|
xml.Parse( "<infinite>loop" );
|
|
XMLTest( "Infinite loop test.", true, true );
|
|
}
|
|
#endif
|
|
{
|
|
const char* pub = "<?xml version='1.0'?> <element><sub/></element> <!--comment--> <!DOCTYPE>";
|
|
XMLDocument doc;
|
|
doc.Parse( pub );
|
|
|
|
XMLDocument clone;
|
|
for( const XMLNode* node=doc.FirstChild(); node; node=node->NextSibling() ) {
|
|
XMLNode* copy = node->ShallowClone( &clone );
|
|
clone.InsertEndChild( copy );
|
|
}
|
|
|
|
clone.Print();
|
|
|
|
int count=0;
|
|
const XMLNode* a=clone.FirstChild();
|
|
const XMLNode* b=doc.FirstChild();
|
|
for( ; a && b; a=a->NextSibling(), b=b->NextSibling() ) {
|
|
++count;
|
|
XMLTest( "Clone and Equal", true, a->ShallowEqual( b ));
|
|
}
|
|
XMLTest( "Clone and Equal", 4, count );
|
|
}
|
|
|
|
{
|
|
// Deep Cloning of root element.
|
|
XMLDocument doc2;
|
|
XMLPrinter printer1;
|
|
{
|
|
// Make sure doc1 is deleted before we test doc2
|
|
const char* xml =
|
|
"<root>"
|
|
" <child1 foo='bar'/>"
|
|
" <!-- comment thing -->"
|
|
" <child2 val='1'>Text</child2>"
|
|
"</root>";
|
|
XMLDocument doc;
|
|
doc.Parse(xml);
|
|
|
|
doc.Print(&printer1);
|
|
XMLNode* root = doc.RootElement()->DeepClone(&doc2);
|
|
doc2.InsertFirstChild(root);
|
|
}
|
|
XMLPrinter printer2;
|
|
doc2.Print(&printer2);
|
|
|
|
XMLTest("Deep clone of element.", printer1.CStr(), printer2.CStr(), true);
|
|
}
|
|
|
|
{
|
|
// Deep Cloning of sub element.
|
|
XMLDocument doc2;
|
|
XMLPrinter printer1;
|
|
{
|
|
// Make sure doc1 is deleted before we test doc2
|
|
const char* xml =
|
|
"<?xml version ='1.0'?>"
|
|
"<root>"
|
|
" <child1 foo='bar'/>"
|
|
" <!-- comment thing -->"
|
|
" <child2 val='1'>Text</child2>"
|
|
"</root>";
|
|
XMLDocument doc;
|
|
doc.Parse(xml);
|
|
|
|
const XMLElement* subElement = doc.FirstChildElement("root")->FirstChildElement("child2");
|
|
subElement->Accept(&printer1);
|
|
|
|
XMLNode* clonedSubElement = subElement->DeepClone(&doc2);
|
|
doc2.InsertFirstChild(clonedSubElement);
|
|
}
|
|
XMLPrinter printer2;
|
|
doc2.Print(&printer2);
|
|
|
|
XMLTest("Deep clone of sub-element.", printer1.CStr(), printer2.CStr(), true);
|
|
}
|
|
|
|
{
|
|
// Deep cloning of document.
|
|
XMLDocument doc2;
|
|
XMLPrinter printer1;
|
|
{
|
|
// Make sure doc1 is deleted before we test doc2
|
|
const char* xml =
|
|
"<?xml version ='1.0'?>"
|
|
"<!-- Top level comment. -->"
|
|
"<root>"
|
|
" <child1 foo='bar'/>"
|
|
" <!-- comment thing -->"
|
|
" <child2 val='1'>Text</child2>"
|
|
"</root>";
|
|
XMLDocument doc;
|
|
doc.Parse(xml);
|
|
doc.Print(&printer1);
|
|
|
|
doc.DeepCopy(&doc2);
|
|
}
|
|
XMLPrinter printer2;
|
|
doc2.Print(&printer2);
|
|
|
|
XMLTest("DeepCopy of document.", printer1.CStr(), printer2.CStr(), true);
|
|
}
|
|
|
|
|
|
{
|
|
// This shouldn't crash.
|
|
XMLDocument doc;
|
|
if(XML_SUCCESS != doc.LoadFile( "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" ))
|
|
{
|
|
doc.PrintError();
|
|
}
|
|
XMLTest( "Error in snprinf handling.", true, doc.Error() );
|
|
}
|
|
|
|
{
|
|
// Attribute ordering.
|
|
static const char* xml = "<element attrib1=\"1\" attrib2=\"2\" attrib3=\"3\" />";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLElement* ele = doc.FirstChildElement();
|
|
|
|
const XMLAttribute* a = ele->FirstAttribute();
|
|
XMLTest( "Attribute order", "1", a->Value() );
|
|
a = a->Next();
|
|
XMLTest( "Attribute order", "2", a->Value() );
|
|
a = a->Next();
|
|
XMLTest( "Attribute order", "3", a->Value() );
|
|
XMLTest( "Attribute order", "attrib3", a->Name() );
|
|
|
|
ele->DeleteAttribute( "attrib2" );
|
|
a = ele->FirstAttribute();
|
|
XMLTest( "Attribute order", "1", a->Value() );
|
|
a = a->Next();
|
|
XMLTest( "Attribute order", "3", a->Value() );
|
|
|
|
ele->DeleteAttribute( "attrib1" );
|
|
ele->DeleteAttribute( "attrib3" );
|
|
XMLTest( "Attribute order (empty)", false, ele->FirstAttribute() ? true : false );
|
|
}
|
|
|
|
{
|
|
// Make sure an attribute with a space in it succeeds.
|
|
static const char* xml0 = "<element attribute1= \"Test Attribute\"/>";
|
|
static const char* xml1 = "<element attribute1 =\"Test Attribute\"/>";
|
|
static const char* xml2 = "<element attribute1 = \"Test Attribute\"/>";
|
|
XMLDocument doc0;
|
|
doc0.Parse( xml0 );
|
|
XMLDocument doc1;
|
|
doc1.Parse( xml1 );
|
|
XMLDocument doc2;
|
|
doc2.Parse( xml2 );
|
|
|
|
XMLElement* ele = 0;
|
|
ele = doc0.FirstChildElement();
|
|
XMLTest( "Attribute with space #1", "Test Attribute", ele->Attribute( "attribute1" ) );
|
|
ele = doc1.FirstChildElement();
|
|
XMLTest( "Attribute with space #2", "Test Attribute", ele->Attribute( "attribute1" ) );
|
|
ele = doc2.FirstChildElement();
|
|
XMLTest( "Attribute with space #3", "Test Attribute", ele->Attribute( "attribute1" ) );
|
|
}
|
|
|
|
{
|
|
// Make sure we don't go into an infinite loop.
|
|
static const char* xml = "<doc><element attribute='attribute'/><element attribute='attribute'/></doc>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLElement* ele0 = doc.FirstChildElement()->FirstChildElement();
|
|
XMLElement* ele1 = ele0->NextSiblingElement();
|
|
bool equal = ele0->ShallowEqual( ele1 );
|
|
|
|
XMLTest( "Infinite loop in shallow equal.", true, equal );
|
|
}
|
|
|
|
// -------- Handles ------------
|
|
{
|
|
static const char* xml = "<element attrib='bar'><sub>Text</sub></element>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
|
|
XMLElement* ele = XMLHandle( doc ).FirstChildElement( "element" ).FirstChild().ToElement();
|
|
XMLTest( "Handle, success, mutable", ele->Value(), "sub" );
|
|
|
|
XMLHandle docH( doc );
|
|
ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement();
|
|
XMLTest( "Handle, dne, mutable", false, ele != 0 );
|
|
}
|
|
|
|
{
|
|
static const char* xml = "<element attrib='bar'><sub>Text</sub></element>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLConstHandle docH( doc );
|
|
|
|
const XMLElement* ele = docH.FirstChildElement( "element" ).FirstChild().ToElement();
|
|
XMLTest( "Handle, success, const", ele->Value(), "sub" );
|
|
|
|
ele = docH.FirstChildElement( "none" ).FirstChildElement( "element" ).ToElement();
|
|
XMLTest( "Handle, dne, const", false, ele != 0 );
|
|
}
|
|
{
|
|
// Default Declaration & BOM
|
|
XMLDocument doc;
|
|
doc.InsertEndChild( doc.NewDeclaration() );
|
|
doc.SetBOM( true );
|
|
|
|
XMLPrinter printer;
|
|
doc.Print( &printer );
|
|
|
|
static const char* result = "\xef\xbb\xbf<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
|
|
XMLTest( "BOM and default declaration", printer.CStr(), result, false );
|
|
XMLTest( "CStrSize", printer.CStrSize(), 42, false );
|
|
}
|
|
{
|
|
const char* xml = "<ipxml ws='1'><info bla=' /></ipxml>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLTest( "Ill formed XML", true, doc.Error() );
|
|
}
|
|
|
|
// QueryXYZText
|
|
{
|
|
const char* xml = "<point> <x>1.2</x> <y>1</y> <z>38</z> <valid>true</valid> </point>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
|
|
const XMLElement* pointElement = doc.RootElement();
|
|
|
|
int intValue = 0;
|
|
unsigned unsignedValue = 0;
|
|
float floatValue = 0;
|
|
double doubleValue = 0;
|
|
bool boolValue = false;
|
|
|
|
pointElement->FirstChildElement( "y" )->QueryIntText( &intValue );
|
|
pointElement->FirstChildElement( "y" )->QueryUnsignedText( &unsignedValue );
|
|
pointElement->FirstChildElement( "x" )->QueryFloatText( &floatValue );
|
|
pointElement->FirstChildElement( "x" )->QueryDoubleText( &doubleValue );
|
|
pointElement->FirstChildElement( "valid" )->QueryBoolText( &boolValue );
|
|
|
|
|
|
XMLTest( "QueryIntText", intValue, 1, false );
|
|
XMLTest( "QueryUnsignedText", unsignedValue, (unsigned)1, false );
|
|
XMLTest( "QueryFloatText", floatValue, 1.2f, false );
|
|
XMLTest( "QueryDoubleText", doubleValue, 1.2, false );
|
|
XMLTest( "QueryBoolText", boolValue, true, false );
|
|
}
|
|
|
|
{
|
|
const char* xml = "<element><_sub/><:sub/><sub:sub/><sub-sub/></element>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLTest( "Non-alpha element lead letter parses.", doc.Error(), false );
|
|
}
|
|
|
|
{
|
|
const char* xml = "<element _attr1=\"foo\" :attr2=\"bar\"></element>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLTest("Non-alpha attribute lead character parses.", doc.Error(), false);
|
|
}
|
|
|
|
{
|
|
const char* xml = "<3lement></3lement>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLTest("Element names with lead digit fail to parse.", doc.Error(), true);
|
|
}
|
|
|
|
{
|
|
const char* xml = "<element/>WOA THIS ISN'T GOING TO PARSE";
|
|
XMLDocument doc;
|
|
doc.Parse( xml, 10 );
|
|
XMLTest( "Set length of incoming data", doc.Error(), false );
|
|
}
|
|
|
|
{
|
|
XMLDocument doc;
|
|
XMLTest( "Document is initially empty", doc.NoChildren(), true );
|
|
doc.Clear();
|
|
XMLTest( "Empty is empty after Clear()", doc.NoChildren(), true );
|
|
doc.LoadFile( "resources/dream.xml" );
|
|
XMLTest( "Document has something to Clear()", doc.NoChildren(), false );
|
|
doc.Clear();
|
|
XMLTest( "Document Clear()'s", doc.NoChildren(), true );
|
|
}
|
|
|
|
// ----------- Whitespace ------------
|
|
{
|
|
const char* xml = "<element>"
|
|
"<a> This \nis ' text ' </a>"
|
|
"<b> This is ' text ' \n</b>"
|
|
"<c>This is ' \n\n text '</c>"
|
|
"</element>";
|
|
XMLDocument doc( true, COLLAPSE_WHITESPACE );
|
|
doc.Parse( xml );
|
|
|
|
const XMLElement* element = doc.FirstChildElement();
|
|
for( const XMLElement* parent = element->FirstChildElement();
|
|
parent;
|
|
parent = parent->NextSiblingElement() )
|
|
{
|
|
XMLTest( "Whitespace collapse", "This is ' text '", parent->GetText() );
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
{
|
|
// Passes if assert doesn't fire.
|
|
XMLDocument xmlDoc;
|
|
|
|
xmlDoc.NewDeclaration();
|
|
xmlDoc.NewComment("Configuration file");
|
|
|
|
XMLElement *root = xmlDoc.NewElement("settings");
|
|
root->SetAttribute("version", 2);
|
|
}
|
|
#endif
|
|
|
|
{
|
|
const char* xml = "<element> </element>";
|
|
XMLDocument doc( true, COLLAPSE_WHITESPACE );
|
|
doc.Parse( xml );
|
|
XMLTest( "Whitespace all space", true, 0 == doc.FirstChildElement()->FirstChild() );
|
|
}
|
|
|
|
{
|
|
// An assert should not fire.
|
|
const char* xml = "<element/>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLElement* ele = doc.NewElement( "unused" ); // This will get cleaned up with the 'doc' going out of scope.
|
|
XMLTest( "Tracking unused elements", true, ele != 0, false );
|
|
}
|
|
|
|
|
|
{
|
|
const char* xml = "<parent><child>abc</child></parent>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
XMLElement* ele = doc.FirstChildElement( "parent")->FirstChildElement( "child");
|
|
|
|
XMLPrinter printer;
|
|
ele->Accept( &printer );
|
|
XMLTest( "Printing of sub-element", "<child>abc</child>\n", printer.CStr(), false );
|
|
}
|
|
|
|
|
|
{
|
|
XMLDocument doc;
|
|
XMLError error = doc.LoadFile( "resources/empty.xml" );
|
|
XMLTest( "Loading an empty file", XML_ERROR_EMPTY_DOCUMENT, error );
|
|
XMLTest( "Loading an empty file and ErrorName as string", "XML_ERROR_EMPTY_DOCUMENT", doc.ErrorName() );
|
|
doc.PrintError();
|
|
}
|
|
|
|
{
|
|
// BOM preservation
|
|
static const char* xml_bom_preservation = "\xef\xbb\xbf<element/>\n";
|
|
{
|
|
XMLDocument doc;
|
|
XMLTest( "BOM preservation (parse)", XML_SUCCESS, doc.Parse( xml_bom_preservation ), false );
|
|
XMLPrinter printer;
|
|
doc.Print( &printer );
|
|
|
|
XMLTest( "BOM preservation (compare)", xml_bom_preservation, printer.CStr(), false, true );
|
|
doc.SaveFile( "resources/bomtest.xml" );
|
|
}
|
|
{
|
|
XMLDocument doc;
|
|
doc.LoadFile( "resources/bomtest.xml" );
|
|
XMLTest( "BOM preservation (load)", true, doc.HasBOM(), false );
|
|
|
|
XMLPrinter printer;
|
|
doc.Print( &printer );
|
|
XMLTest( "BOM preservation (compare)", xml_bom_preservation, printer.CStr(), false, true );
|
|
}
|
|
}
|
|
|
|
{
|
|
// Insertion with Removal
|
|
const char* xml = "<?xml version=\"1.0\" ?>"
|
|
"<root>"
|
|
"<one>"
|
|
"<subtree>"
|
|
"<elem>element 1</elem>text<!-- comment -->"
|
|
"</subtree>"
|
|
"</one>"
|
|
"<two/>"
|
|
"</root>";
|
|
const char* xmlInsideTwo = "<?xml version=\"1.0\" ?>"
|
|
"<root>"
|
|
"<one/>"
|
|
"<two>"
|
|
"<subtree>"
|
|
"<elem>element 1</elem>text<!-- comment -->"
|
|
"</subtree>"
|
|
"</two>"
|
|
"</root>";
|
|
const char* xmlAfterOne = "<?xml version=\"1.0\" ?>"
|
|
"<root>"
|
|
"<one/>"
|
|
"<subtree>"
|
|
"<elem>element 1</elem>text<!-- comment -->"
|
|
"</subtree>"
|
|
"<two/>"
|
|
"</root>";
|
|
const char* xmlAfterTwo = "<?xml version=\"1.0\" ?>"
|
|
"<root>"
|
|
"<one/>"
|
|
"<two/>"
|
|
"<subtree>"
|
|
"<elem>element 1</elem>text<!-- comment -->"
|
|
"</subtree>"
|
|
"</root>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse(xml);
|
|
XMLElement* subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree");
|
|
XMLElement* two = doc.RootElement()->FirstChildElement("two");
|
|
two->InsertFirstChild(subtree);
|
|
XMLPrinter printer1(0, true);
|
|
doc.Accept(&printer1);
|
|
XMLTest("Move node from within <one> to <two>", xmlInsideTwo, printer1.CStr());
|
|
|
|
doc.Parse(xml);
|
|
subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree");
|
|
two = doc.RootElement()->FirstChildElement("two");
|
|
doc.RootElement()->InsertAfterChild(two, subtree);
|
|
XMLPrinter printer2(0, true);
|
|
doc.Accept(&printer2);
|
|
XMLTest("Move node from within <one> after <two>", xmlAfterTwo, printer2.CStr(), false);
|
|
|
|
doc.Parse(xml);
|
|
XMLNode* one = doc.RootElement()->FirstChildElement("one");
|
|
subtree = one->FirstChildElement("subtree");
|
|
doc.RootElement()->InsertAfterChild(one, subtree);
|
|
XMLPrinter printer3(0, true);
|
|
doc.Accept(&printer3);
|
|
XMLTest("Move node from within <one> after <one>", xmlAfterOne, printer3.CStr(), false);
|
|
|
|
doc.Parse(xml);
|
|
subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree");
|
|
two = doc.RootElement()->FirstChildElement("two");
|
|
doc.RootElement()->InsertEndChild(subtree);
|
|
XMLPrinter printer4(0, true);
|
|
doc.Accept(&printer4);
|
|
XMLTest("Move node from within <one> after <two>", xmlAfterTwo, printer4.CStr(), false);
|
|
}
|
|
|
|
{
|
|
const char* xml = "<svg width = \"128\" height = \"128\">"
|
|
" <text> </text>"
|
|
"</svg>";
|
|
XMLDocument doc;
|
|
doc.Parse(xml);
|
|
doc.Print();
|
|
}
|
|
|
|
{
|
|
// Test that it doesn't crash.
|
|
const char* xml = "<?xml version=\"1.0\"?><root><sample><field0><1</field0><field1>2</field1></sample></root>";
|
|
XMLDocument doc;
|
|
doc.Parse(xml);
|
|
doc.PrintError();
|
|
}
|
|
|
|
#if 1
|
|
// the question being explored is what kind of print to use:
|
|
// https://github.com/leethomason/tinyxml2/issues/63
|
|
{
|
|
//const char* xml = "<element attrA='123456789.123456789' attrB='1.001e9' attrC='1.0e-10' attrD='1001000000.000000' attrE='0.1234567890123456789'/>";
|
|
const char* xml = "<element/>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
doc.FirstChildElement()->SetAttribute( "attrA-f64", 123456789.123456789 );
|
|
doc.FirstChildElement()->SetAttribute( "attrB-f64", 1.001e9 );
|
|
doc.FirstChildElement()->SetAttribute( "attrC-f64", 1.0e9 );
|
|
doc.FirstChildElement()->SetAttribute( "attrC-f64", 1.0e20 );
|
|
doc.FirstChildElement()->SetAttribute( "attrD-f64", 1.0e-10 );
|
|
doc.FirstChildElement()->SetAttribute( "attrD-f64", 0.123456789 );
|
|
|
|
doc.FirstChildElement()->SetAttribute( "attrA-f32", 123456789.123456789f );
|
|
doc.FirstChildElement()->SetAttribute( "attrB-f32", 1.001e9f );
|
|
doc.FirstChildElement()->SetAttribute( "attrC-f32", 1.0e9f );
|
|
doc.FirstChildElement()->SetAttribute( "attrC-f32", 1.0e20f );
|
|
doc.FirstChildElement()->SetAttribute( "attrD-f32", 1.0e-10f );
|
|
doc.FirstChildElement()->SetAttribute( "attrD-f32", 0.123456789f );
|
|
|
|
doc.Print();
|
|
|
|
/* The result of this test is platform, compiler, and library version dependent. :("
|
|
XMLPrinter printer;
|
|
doc.Print( &printer );
|
|
XMLTest( "Float and double formatting.",
|
|
"<element attrA-f64=\"123456789.12345679\" attrB-f64=\"1001000000\" attrC-f64=\"1e+20\" attrD-f64=\"0.123456789\" attrA-f32=\"1.2345679e+08\" attrB-f32=\"1.001e+09\" attrC-f32=\"1e+20\" attrD-f32=\"0.12345679\"/>\n",
|
|
printer.CStr(),
|
|
true );
|
|
*/
|
|
}
|
|
#endif
|
|
|
|
{
|
|
// Issue #184
|
|
// If it doesn't assert, it passes. Caused by objects
|
|
// getting created during parsing which are then
|
|
// inaccessible in the memory pools.
|
|
{
|
|
XMLDocument doc;
|
|
doc.Parse("<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>");
|
|
}
|
|
{
|
|
XMLDocument doc;
|
|
doc.Parse("<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>");
|
|
doc.Clear();
|
|
}
|
|
}
|
|
|
|
{
|
|
// If this doesn't assert in DEBUG, all is well.
|
|
tinyxml2::XMLDocument doc;
|
|
tinyxml2::XMLElement *pRoot = doc.NewElement("Root");
|
|
doc.DeleteNode(pRoot);
|
|
}
|
|
|
|
{
|
|
// Should not assert in DEBUG
|
|
XMLPrinter printer;
|
|
}
|
|
|
|
{
|
|
// Issue 291. Should not crash
|
|
const char* xml = "�</a>";
|
|
XMLDocument doc;
|
|
doc.Parse( xml );
|
|
|
|
XMLPrinter printer;
|
|
doc.Print( &printer );
|
|
}
|
|
{
|
|
// Issue 299. Can print elements that are not linked in.
|
|
// Will crash if issue not fixed.
|
|
XMLDocument doc;
|
|
XMLElement* newElement = doc.NewElement( "printme" );
|
|
XMLPrinter printer;
|
|
newElement->Accept( &printer );
|
|
// Delete the node to avoid possible memory leak report in debug output
|
|
doc.DeleteNode( newElement );
|
|
}
|
|
{
|
|
// Issue 302. Clear errors from LoadFile/SaveFile
|
|
XMLDocument doc;
|
|
XMLTest( "Issue 302. Should be no error initially", "XML_SUCCESS", doc.ErrorName() );
|
|
doc.SaveFile( "./no/such/path/pretty.xml" );
|
|
XMLTest( "Issue 302. Fail to save", "XML_ERROR_FILE_COULD_NOT_BE_OPENED", doc.ErrorName() );
|
|
doc.SaveFile( "./resources/out/compact.xml", true );
|
|
XMLTest( "Issue 302. Subsequent success in saving", "XML_SUCCESS", doc.ErrorName() );
|
|
}
|
|
|
|
{
|
|
// If a document fails to load then subsequent
|
|
// successful loads should clear the error
|
|
XMLDocument doc;
|
|
XMLTest( "Should be no error initially", false, doc.Error() );
|
|
doc.LoadFile( "resources/no-such-file.xml" );
|
|
XMLTest( "No such file - should fail", true, doc.Error() );
|
|
|
|
doc.LoadFile( "resources/dream.xml" );
|
|
XMLTest( "Error should be cleared", false, doc.Error() );
|
|
}
|
|
|
|
{
|
|
// Check that declarations are allowed only at beginning of document
|
|
const char* xml0 = "<?xml version=\"1.0\" ?>"
|
|
" <!-- xml version=\"1.1\" -->"
|
|
"<first />";
|
|
const char* xml1 = "<?xml version=\"1.0\" ?>"
|
|
"<?xml-stylesheet type=\"text/xsl\" href=\"Anything.xsl\"?>"
|
|
"<first />";
|
|
const char* xml2 = "<first />"
|
|
"<?xml version=\"1.0\" ?>";
|
|
const char* xml3 = "<first></first>"
|
|
"<?xml version=\"1.0\" ?>";
|
|
|
|
const char* xml4 = "<first><?xml version=\"1.0\" ?></first>";
|
|
|
|
XMLDocument doc;
|
|
doc.Parse(xml0);
|
|
XMLTest("Test that the code changes do not affect normal parsing", doc.Error(), false);
|
|
doc.Parse(xml1);
|
|
XMLTest("Test that the second declaration is allowed", doc.Error(), false);
|
|
doc.Parse(xml2);
|
|
XMLTest("Test that declaration after a child is not allowed", doc.ErrorID(), XML_ERROR_PARSING_DECLARATION);
|
|
doc.Parse(xml3);
|
|
XMLTest("Test that declaration after a child is not allowed", doc.ErrorID(), XML_ERROR_PARSING_DECLARATION);
|
|
doc.Parse(xml4);
|
|
XMLTest("Test that declaration inside a child is not allowed", doc.ErrorID(), XML_ERROR_PARSING_DECLARATION);
|
|
}
|
|
|
|
{
|
|
// No matter - before or after successfully parsing a text -
|
|
// calling XMLDocument::Value() causes an assert in debug.
|
|
const char* validXml = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>"
|
|
"<first />"
|
|
"<second />";
|
|
XMLDocument* doc = new XMLDocument();
|
|
XMLTest( "XMLDocument::Value() returns null?", NULL, doc->Value() );
|
|
doc->Parse( validXml );
|
|
XMLTest( "XMLDocument::Value() returns null?", NULL, doc->Value() );
|
|
delete doc;
|
|
}
|
|
|
|
{
|
|
XMLDocument doc;
|
|
for( int i = 0; i < XML_ERROR_COUNT; i++ ) {
|
|
doc.SetError( (XMLError)i, 0, 0, 0 );
|
|
doc.ErrorName();
|
|
}
|
|
}
|
|
|
|
{
|
|
// Evil memory leaks.
|
|
// If an XMLElement (etc) is allocated via NewElement() (etc.)
|
|
// and NOT added to the XMLDocument, what happens?
|
|
//
|
|
// Previously (buggy):
|
|
// The memory would be free'd when the XMLDocument is
|
|
// destructed. But the destructor wasn't called, so that
|
|
// memory allocated by the XMLElement would not be free'd.
|
|
// In practice this meant strings allocated by the XMLElement
|
|
// would leak. An edge case, but annoying.
|
|
// Now:
|
|
// The destructor is called. But the list of unlinked nodes
|
|
// has to be tracked. This has a minor performance impact
|
|
// that can become significant if you have a lot. (But why
|
|
// would you do that?)
|
|
// The only way to see this bug is in a leak tracker. This
|
|
// is compiled in by default on Windows Debug.
|
|
{
|
|
XMLDocument doc;
|
|
doc.NewElement("LEAK 1");
|
|
}
|
|
{
|
|
XMLDocument doc;
|
|
XMLElement* ele = doc.NewElement("LEAK 2");
|
|
doc.DeleteNode(ele);
|
|
}
|
|
}
|
|
|
|
{
|
|
// Crashing reported via email.
|
|
const char* xml =
|
|
"<playlist id='playlist1'>"
|
|
"<property name='track_name'>voice</property>"
|
|
"<property name='audio_track'>1</property>"
|
|
"<entry out = '604' producer = '4_playlist1' in = '0' />"
|
|
"<blank length = '1' />"
|
|
"<entry out = '1625' producer = '3_playlist' in = '0' />"
|
|
"<blank length = '2' />"
|
|
"<entry out = '946' producer = '2_playlist1' in = '0' />"
|
|
"<blank length = '1' />"
|
|
"<entry out = '128' producer = '1_playlist1' in = '0' />"
|
|
"</playlist>";
|
|
|
|
// It's not a good idea to delete elements as you walk the
|
|
// list. I'm not sure this technically should work; but it's
|
|
// an interesting test case.
|
|
XMLDocument doc;
|
|
XMLError err = doc.Parse(xml);
|
|
XMLElement* playlist = doc.FirstChildElement("playlist");
|
|
|
|
XMLTest("Crash bug parsing", err, XML_SUCCESS);
|
|
XMLTest("Crash bug parsing", true, playlist != 0);
|
|
|
|
tinyxml2::XMLElement* entry = playlist->FirstChildElement("entry");
|
|
XMLTest("Crash bug parsing", true, entry != 0);
|
|
while (entry) {
|
|
tinyxml2::XMLElement* todelete = entry;
|
|
entry = entry->NextSiblingElement("entry");
|
|
playlist->DeleteChild(todelete);
|
|
};
|
|
tinyxml2::XMLElement* blank = playlist->FirstChildElement("blank");
|
|
while (blank) {
|
|
tinyxml2::XMLElement* todelete = blank;
|
|
blank = blank->NextSiblingElement("blank");
|
|
playlist->DeleteChild(todelete);
|
|
};
|
|
|
|
tinyxml2::XMLPrinter printer;
|
|
playlist->Accept(&printer);
|
|
printf("%s\n", printer.CStr());
|
|
|
|
// No test; it only need to not crash.
|
|
// Still, wrap it up with a sanity check
|
|
int nProperty = 0;
|
|
for (const XMLElement* p = playlist->FirstChildElement("property"); p; p = p->NextSiblingElement("property")) {
|
|
nProperty++;
|
|
}
|
|
XMLTest("Crash bug parsing", nProperty, 2);
|
|
}
|
|
|
|
// ----------- Line Number Tracking --------------
|
|
{
|
|
struct TestUtil: XMLVisitor
|
|
{
|
|
void TestParseError(const char *testString, const char *docStr, XMLError expected_error, int expectedLine)
|
|
{
|
|
XMLDocument doc;
|
|
XMLError err = doc.Parse(docStr);
|
|
|
|
XMLTest(testString, true, doc.Error());
|
|
XMLTest(testString, expected_error, err);
|
|
XMLTest(testString, expectedLine, doc.GetErrorLineNum());
|
|
};
|
|
|
|
void TestStringLines(const char *testString, const char *docStr, const char *expectedLines)
|
|
{
|
|
XMLDocument doc;
|
|
doc.Parse(docStr);
|
|
XMLTest(testString, false, doc.Error());
|
|
TestDocLines(testString, doc, expectedLines);
|
|
}
|
|
|
|
void TestFileLines(const char *testString, const char *file_name, const char *expectedLines)
|
|
{
|
|
XMLDocument doc;
|
|
doc.LoadFile(file_name);
|
|
XMLTest(testString, false, doc.Error());
|
|
TestDocLines(testString, doc, expectedLines);
|
|
}
|
|
|
|
private:
|
|
DynArray<char, 10> str;
|
|
|
|
void Push(char type, int lineNum)
|
|
{
|
|
str.Push(type);
|
|
str.Push(char('0' + (lineNum / 10)));
|
|
str.Push(char('0' + (lineNum % 10)));
|
|
}
|
|
|
|
bool VisitEnter(const XMLDocument& doc)
|
|
{
|
|
Push('D', doc.GetLineNum());
|
|
return true;
|
|
}
|
|
bool VisitEnter(const XMLElement& element, const XMLAttribute* firstAttribute)
|
|
{
|
|
Push('E', element.GetLineNum());
|
|
for (const XMLAttribute *attr = firstAttribute; attr != 0; attr = attr->Next())
|
|
Push('A', attr->GetLineNum());
|
|
return true;
|
|
}
|
|
bool Visit(const XMLDeclaration& declaration)
|
|
{
|
|
Push('L', declaration.GetLineNum());
|
|
return true;
|
|
}
|
|
bool Visit(const XMLText& text)
|
|
{
|
|
Push('T', text.GetLineNum());
|
|
return true;
|
|
}
|
|
bool Visit(const XMLComment& comment)
|
|
{
|
|
Push('C', comment.GetLineNum());
|
|
return true;
|
|
}
|
|
bool Visit(const XMLUnknown& unknown)
|
|
{
|
|
Push('U', unknown.GetLineNum());
|
|
return true;
|
|
}
|
|
|
|
void TestDocLines(const char *testString, XMLDocument &doc, const char *expectedLines)
|
|
{
|
|
str.Clear();
|
|
doc.Accept(this);
|
|
str.Push(0);
|
|
XMLTest(testString, expectedLines, str.Mem());
|
|
}
|
|
} tester;
|
|
|
|
tester.TestParseError("ErrorLine-Parsing", "\n<root>\n foo \n<unclosed/>", XML_ERROR_PARSING, 2);
|
|
tester.TestParseError("ErrorLine-Declaration", "<root>\n<?xml version=\"1.0\"?>", XML_ERROR_PARSING_DECLARATION, 2);
|
|
tester.TestParseError("ErrorLine-Mismatch", "\n<root>\n</mismatch>", XML_ERROR_MISMATCHED_ELEMENT, 2);
|
|
tester.TestParseError("ErrorLine-CData", "\n<root><![CDATA[ \n foo bar \n", XML_ERROR_PARSING_CDATA, 2);
|
|
tester.TestParseError("ErrorLine-Text", "\n<root>\n foo bar \n", XML_ERROR_PARSING_TEXT, 3);
|
|
tester.TestParseError("ErrorLine-Comment", "\n<root>\n<!-- >\n", XML_ERROR_PARSING_COMMENT, 3);
|
|
tester.TestParseError("ErrorLine-Declaration", "\n<root>\n<? >\n", XML_ERROR_PARSING_DECLARATION, 3);
|
|
tester.TestParseError("ErrorLine-Unknown", "\n<root>\n<! \n", XML_ERROR_PARSING_UNKNOWN, 3);
|
|
tester.TestParseError("ErrorLine-Element", "\n<root>\n<unclosed \n", XML_ERROR_PARSING_ELEMENT, 3);
|
|
tester.TestParseError("ErrorLine-Attribute", "\n<root>\n<unclosed \n att\n", XML_ERROR_PARSING_ATTRIBUTE, 4);
|
|
tester.TestParseError("ErrorLine-ElementClose", "\n<root>\n<unclosed \n/unexpected", XML_ERROR_PARSING_ELEMENT, 3);
|
|
|
|
tester.TestStringLines(
|
|
"LineNumbers-String",
|
|
|
|
"<?xml version=\"1.0\"?>\n" // 1 Doc, DecL
|
|
"<root a='b' \n" // 2 Element Attribute
|
|
"c='d'> d <blah/> \n" // 3 Attribute Text Element
|
|
"newline in text \n" // 4 Text
|
|
"and second <zxcv/><![CDATA[\n" // 5 Element Text
|
|
" cdata test ]]><!-- comment -->\n" // 6 Comment
|
|
"<! unknown></root>", // 7 Unknown
|
|
|
|
"D01L01E02A02A03T03E03T04E05T05C06U07");
|
|
|
|
tester.TestStringLines(
|
|
"LineNumbers-CRLF",
|
|
|
|
"\r\n" // 1 Doc (arguably should be line 2)
|
|
"<?xml version=\"1.0\"?>\n" // 2 DecL
|
|
"<root>\r\n" // 3 Element
|
|
"\n" // 4
|
|
"text contining new line \n" // 5 Text
|
|
" and also containing crlf \r\n" // 6
|
|
"<sub><![CDATA[\n" // 7 Element Text
|
|
"cdata containing new line \n" // 8
|
|
" and also containing cflr\r\n" // 9
|
|
"]]></sub><sub2/></root>", // 10 Element
|
|
|
|
"D01L02E03T05E07T07E10");
|
|
|
|
tester.TestFileLines(
|
|
"LineNumbers-File",
|
|
"resources/utf8test.xml",
|
|
"D01L01E02E03A03A03T03E04A04A04T04E05A05A05T05E06A06A06T06E07A07A07T07E08A08A08T08E09T09E10T10");
|
|
}
|
|
|
|
// ----------- Performance tracking --------------
|
|
{
|
|
#if defined( _MSC_VER )
|
|
__int64 start, end, freq;
|
|
QueryPerformanceFrequency((LARGE_INTEGER*)&freq);
|
|
#endif
|
|
|
|
FILE* perfFP = fopen("resources/dream.xml", "r");
|
|
fseek(perfFP, 0, SEEK_END);
|
|
long size = ftell(perfFP);
|
|
fseek(perfFP, 0, SEEK_SET);
|
|
|
|
char* mem = new char[size + 1];
|
|
fread(mem, size, 1, perfFP);
|
|
fclose(perfFP);
|
|
mem[size] = 0;
|
|
|
|
#if defined( _MSC_VER )
|
|
QueryPerformanceCounter((LARGE_INTEGER*)&start);
|
|
#else
|
|
clock_t cstart = clock();
|
|
#endif
|
|
static const int COUNT = 10;
|
|
for (int i = 0; i < COUNT; ++i) {
|
|
XMLDocument doc;
|
|
doc.Parse(mem);
|
|
}
|
|
#if defined( _MSC_VER )
|
|
QueryPerformanceCounter((LARGE_INTEGER*)&end);
|
|
#else
|
|
clock_t cend = clock();
|
|
#endif
|
|
|
|
delete[] mem;
|
|
|
|
static const char* note =
|
|
#ifdef DEBUG
|
|
"DEBUG";
|
|
#else
|
|
"Release";
|
|
#endif
|
|
|
|
#if defined( _MSC_VER )
|
|
printf("\nParsing %s of dream.xml: %.3f milli-seconds\n", note, 1000.0 * (double)(end - start) / ((double)freq * (double)COUNT));
|
|
#else
|
|
printf("\nParsing %s of dream.xml: %.3f milli-seconds\n", note, (double)(cend - cstart) / (double)COUNT);
|
|
#endif
|
|
}
|
|
|
|
#if defined( _MSC_VER ) && defined( DEBUG )
|
|
_CrtMemCheckpoint( &endMemState );
|
|
|
|
_CrtMemState diffMemState;
|
|
_CrtMemDifference( &diffMemState, &startMemState, &endMemState );
|
|
_CrtMemDumpStatistics( &diffMemState );
|
|
|
|
{
|
|
int leaksBeforeExit = _CrtDumpMemoryLeaks();
|
|
XMLTest( "No leaks before exit?", FALSE, leaksBeforeExit );
|
|
}
|
|
#endif
|
|
|
|
printf ("\nPass %d, Fail %d\n", gPass, gFail);
|
|
|
|
return gFail;
|
|
}
|