Lee Thomason | 5b0a677 | 2012-11-19 13:54:42 -0800 | [diff] [blame] | 1 | #if defined( _MSC_VER )
|
Serhat Eser Erdem | ca5d684 | 2014-04-17 14:06:15 +0200 | [diff] [blame] | 2 | #if !defined( _CRT_SECURE_NO_WARNINGS )
|
| 3 | #define _CRT_SECURE_NO_WARNINGS // This test file is not intended to be secure.
|
| 4 | #endif
|
Lee Thomason | 5b0a677 | 2012-11-19 13:54:42 -0800 | [diff] [blame] | 5 | #endif
|
U-Lama\Lee | e13c3e6 | 2011-12-28 14:36:55 -0800 | [diff] [blame] | 6 |
|
Lee Thomason | 5b0a677 | 2012-11-19 13:54:42 -0800 | [diff] [blame] | 7 | #include "tinyxml2.h"
|
kbinny62 | bf29a15 | 2017-06-23 18:15:25 +0000 | [diff] [blame] | 8 | #include <cerrno>
|
Guillermo A. Amaral | 2eb7003 | 2012-03-20 11:26:57 -0700 | [diff] [blame] | 9 | #include <cstdlib>
|
| 10 | #include <cstring>
|
| 11 | #include <ctime>
|
U-Lama\Lee | e13c3e6 | 2011-12-28 14:36:55 -0800 | [diff] [blame] | 12 |
|
kbinny62 | bf29a15 | 2017-06-23 18:15:25 +0000 | [diff] [blame] | 13 | #if defined( _MSC_VER ) || defined (WIN32)
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 14 | #include <crtdbg.h>
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 15 | #define WIN32_LEAN_AND_MEAN
|
| 16 | #include <windows.h>
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 17 | _CrtMemState startMemState;
|
Lee Thomason | 53858b4 | 2017-06-01 19:09:16 -0700 | [diff] [blame] | 18 | _CrtMemState endMemState;
|
kbinny62 | bf29a15 | 2017-06-23 18:15:25 +0000 | [diff] [blame] | 19 | #else
|
| 20 | #include <sys/stat.h>
|
| 21 | #include <sys/types.h>
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 22 | #endif
|
Lee Thomason | e9ecdab | 2012-02-13 18:11:20 -0800 | [diff] [blame] | 23 |
|
U-Lama\Lee | e13c3e6 | 2011-12-28 14:36:55 -0800 | [diff] [blame] | 24 | using namespace tinyxml2;
|
Anton Indrawan | 8a0006c | 2014-11-20 18:27:07 +0100 | [diff] [blame] | 25 | using namespace std;
|
Lee Thomason | ec5a7b4 | 2012-02-13 18:16:52 -0800 | [diff] [blame] | 26 | int gPass = 0;
|
| 27 | int gFail = 0;
|
| 28 |
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 29 |
|
Lee Thomason (grinliz) | d0a38c3 | 2013-04-29 09:15:37 -0700 | [diff] [blame] | 30 | bool XMLTest (const char* testString, const char* expected, const char* found, bool echo=true, bool extraNL=false )
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 31 | {
|
Sarat Addepalli | 13b2d73 | 2015-05-19 12:44:57 +0530 | [diff] [blame] | 32 | bool pass;
|
| 33 | if ( !expected && !found )
|
| 34 | pass = true;
|
| 35 | else if ( !expected || !found )
|
| 36 | pass = false;
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 37 | else
|
Sarat Addepalli | d608c56 | 2015-05-20 10:19:00 +0530 | [diff] [blame] | 38 | pass = !strcmp( expected, found );
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 39 | if ( pass )
|
| 40 | printf ("[pass]");
|
| 41 | else
|
| 42 | printf ("[fail]");
|
| 43 |
|
Lee Thomason (grinliz) | d0a38c3 | 2013-04-29 09:15:37 -0700 | [diff] [blame] | 44 | if ( !echo ) {
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 45 | printf (" %s\n", testString);
|
Lee Thomason (grinliz) | d0a38c3 | 2013-04-29 09:15:37 -0700 | [diff] [blame] | 46 | }
|
| 47 | else {
|
| 48 | if ( extraNL ) {
|
| 49 | printf( " %s\n", testString );
|
| 50 | printf( "%s\n", expected );
|
| 51 | printf( "%s\n", found );
|
| 52 | }
|
| 53 | else {
|
| 54 | printf (" %s [%s][%s]\n", testString, expected, found);
|
| 55 | }
|
| 56 | }
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 57 |
|
| 58 | if ( pass )
|
| 59 | ++gPass;
|
| 60 | else
|
| 61 | ++gFail;
|
| 62 | return pass;
|
| 63 | }
|
| 64 |
|
kezenator | 5a70071 | 2016-11-26 13:54:42 +1000 | [diff] [blame] | 65 | bool XMLTest(const char* testString, XMLError expected, XMLError found, bool echo = true, bool extraNL = false)
|
| 66 | {
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 67 | return XMLTest(testString, XMLDocument::ErrorIDToName(expected), XMLDocument::ErrorIDToName(found), echo, extraNL);
|
kezenator | 5a70071 | 2016-11-26 13:54:42 +1000 | [diff] [blame] | 68 | }
|
| 69 |
|
| 70 | bool XMLTest(const char* testString, bool expected, bool found, bool echo = true, bool extraNL = false)
|
| 71 | {
|
| 72 | return XMLTest(testString, expected ? "true" : "false", found ? "true" : "false", echo, extraNL);
|
| 73 | }
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 74 |
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 75 | template< class T > bool XMLTest( const char* testString, T expected, T found, bool echo=true )
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 76 | {
|
| 77 | bool pass = ( expected == found );
|
| 78 | if ( pass )
|
| 79 | printf ("[pass]");
|
| 80 | else
|
| 81 | printf ("[fail]");
|
| 82 |
|
U-Stream\Lee | 09a11c5 | 2012-02-17 08:31:16 -0800 | [diff] [blame] | 83 | if ( !echo )
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 84 | printf (" %s\n", testString);
|
Dmitry-Me | ed3e9dc | 2018-10-17 00:27:33 +0300 | [diff] [blame] | 85 | else {
|
| 86 | char expectedAsString[64];
|
| 87 | XMLUtil::ToStr(expected, expectedAsString, sizeof(expectedAsString));
|
| 88 |
|
| 89 | char foundAsString[64];
|
| 90 | XMLUtil::ToStr(found, foundAsString, sizeof(foundAsString));
|
| 91 |
|
| 92 | printf (" %s [%s][%s]\n", testString, expectedAsString, foundAsString );
|
| 93 | }
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 94 |
|
| 95 | if ( pass )
|
| 96 | ++gPass;
|
| 97 | else
|
| 98 | ++gFail;
|
| 99 | return pass;
|
| 100 | }
|
Lee Thomason | ec5a7b4 | 2012-02-13 18:16:52 -0800 | [diff] [blame] | 101 |
|
U-Lama\Lee | e13c3e6 | 2011-12-28 14:36:55 -0800 | [diff] [blame] | 102 |
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 103 | void NullLineEndings( char* p )
|
| 104 | {
|
| 105 | while( p && *p ) {
|
| 106 | if ( *p == '\n' || *p == '\r' ) {
|
| 107 | *p = 0;
|
| 108 | return;
|
| 109 | }
|
| 110 | ++p;
|
| 111 | }
|
| 112 | }
|
| 113 |
|
| 114 |
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 115 | int example_1()
|
| 116 | {
|
| 117 | XMLDocument doc;
|
Bruno Dias | a2d4e6e | 2012-05-07 04:58:11 -0300 | [diff] [blame] | 118 | doc.LoadFile( "resources/dream.xml" );
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 119 |
|
| 120 | return doc.ErrorID();
|
| 121 | }
|
Lee Thomason | cf10069 | 2017-12-10 20:03:39 -0800 | [diff] [blame] | 122 | /** @page Example_1 Load an XML File
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 123 | * @dontinclude ./xmltest.cpp
|
| 124 | * Basic XML file loading.
|
| 125 | * The basic syntax to load an XML file from
|
| 126 | * disk and check for an error. (ErrorID()
|
| 127 | * will return 0 for no error.)
|
| 128 | * @skip example_1()
|
| 129 | * @until }
|
| 130 | */
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 131 |
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 132 |
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 133 | int example_2()
|
| 134 | {
|
| 135 | static const char* xml = "<element/>";
|
| 136 | XMLDocument doc;
|
| 137 | doc.Parse( xml );
|
| 138 |
|
| 139 | return doc.ErrorID();
|
| 140 | }
|
Lee Thomason | cf10069 | 2017-12-10 20:03:39 -0800 | [diff] [blame] | 141 | /** @page Example_2 Parse an XML from char buffer
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 142 | * @dontinclude ./xmltest.cpp
|
| 143 | * Basic XML string parsing.
|
| 144 | * The basic syntax to parse an XML for
|
| 145 | * a char* and check for an error. (ErrorID()
|
| 146 | * will return 0 for no error.)
|
| 147 | * @skip example_2()
|
| 148 | * @until }
|
| 149 | */
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 150 |
|
| 151 |
|
| 152 | int example_3()
|
| 153 | {
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 154 | static const char* xml =
|
Lee Thomason (grinliz) | a4a36ba | 2012-04-06 21:24:29 -0700 | [diff] [blame] | 155 | "<?xml version=\"1.0\"?>"
|
| 156 | "<!DOCTYPE PLAY SYSTEM \"play.dtd\">"
|
| 157 | "<PLAY>"
|
| 158 | "<TITLE>A Midsummer Night's Dream</TITLE>"
|
| 159 | "</PLAY>";
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 160 |
|
| 161 | XMLDocument doc;
|
| 162 | doc.Parse( xml );
|
| 163 |
|
| 164 | XMLElement* titleElement = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" );
|
| 165 | const char* title = titleElement->GetText();
|
| 166 | printf( "Name of play (1): %s\n", title );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 167 |
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 168 | XMLText* textNode = titleElement->FirstChild()->ToText();
|
| 169 | title = textNode->Value();
|
| 170 | printf( "Name of play (2): %s\n", title );
|
| 171 |
|
| 172 | return doc.ErrorID();
|
| 173 | }
|
Lee Thomason | cf10069 | 2017-12-10 20:03:39 -0800 | [diff] [blame] | 174 | /** @page Example_3 Get information out of XML
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 175 | @dontinclude ./xmltest.cpp
|
| 176 | In this example, we navigate a simple XML
|
| 177 | file, and read some interesting text. Note
|
Andrew C. Martin | 0fd8746 | 2013-03-09 20:09:45 -0700 | [diff] [blame] | 178 | that this example doesn't use error
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 179 | checking; working code should check for null
|
| 180 | pointers when walking an XML tree, or use
|
| 181 | XMLHandle.
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 182 |
|
| 183 | (The XML is an excerpt from "dream.xml").
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 184 |
|
| 185 | @skip example_3()
|
| 186 | @until </PLAY>";
|
| 187 |
|
| 188 | The structure of the XML file is:
|
| 189 |
|
| 190 | <ul>
|
| 191 | <li>(declaration)</li>
|
| 192 | <li>(dtd stuff)</li>
|
| 193 | <li>Element "PLAY"</li>
|
| 194 | <ul>
|
| 195 | <li>Element "TITLE"</li>
|
| 196 | <ul>
|
| 197 | <li>Text "A Midsummer Night's Dream"</li>
|
| 198 | </ul>
|
| 199 | </ul>
|
| 200 | </ul>
|
| 201 |
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 202 | For this example, we want to print out the
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 203 | title of the play. The text of the title (what
|
| 204 | we want) is child of the "TITLE" element which
|
| 205 | is a child of the "PLAY" element.
|
| 206 |
|
| 207 | We want to skip the declaration and dtd, so the
|
| 208 | method FirstChildElement() is a good choice. The
|
| 209 | FirstChildElement() of the Document is the "PLAY"
|
| 210 | Element, the FirstChildElement() of the "PLAY" Element
|
| 211 | is the "TITLE" Element.
|
| 212 |
|
| 213 | @until ( "TITLE" );
|
| 214 |
|
| 215 | We can then use the convenience function GetText()
|
| 216 | to get the title of the play.
|
| 217 |
|
| 218 | @until title );
|
| 219 |
|
| 220 | Text is just another Node in the XML DOM. And in
|
| 221 | fact you should be a little cautious with it, as
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 222 | text nodes can contain elements.
|
| 223 |
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 224 | @verbatim
|
| 225 | Consider: A Midsummer Night's <b>Dream</b>
|
| 226 | @endverbatim
|
| 227 |
|
| 228 | It is more correct to actually query the Text Node
|
| 229 | if in doubt:
|
| 230 |
|
| 231 | @until title );
|
| 232 |
|
| 233 | Noting that here we use FirstChild() since we are
|
| 234 | looking for XMLText, not an element, and ToText()
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 235 | is a cast from a Node to a XMLText.
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 236 | */
|
Lee Thomason (grinliz) | 6a22be2 | 2012-04-04 12:39:05 -0700 | [diff] [blame] | 237 |
|
| 238 |
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 239 | bool example_4()
|
| 240 | {
|
| 241 | static const char* xml =
|
| 242 | "<information>"
|
| 243 | " <attributeApproach v='2' />"
|
| 244 | " <textApproach>"
|
| 245 | " <v>2</v>"
|
| 246 | " </textApproach>"
|
| 247 | "</information>";
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 248 |
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 249 | XMLDocument doc;
|
| 250 | doc.Parse( xml );
|
| 251 |
|
| 252 | int v0 = 0;
|
| 253 | int v1 = 0;
|
| 254 |
|
| 255 | XMLElement* attributeApproachElement = doc.FirstChildElement()->FirstChildElement( "attributeApproach" );
|
| 256 | attributeApproachElement->QueryIntAttribute( "v", &v0 );
|
| 257 |
|
| 258 | XMLElement* textApproachElement = doc.FirstChildElement()->FirstChildElement( "textApproach" );
|
| 259 | textApproachElement->FirstChildElement( "v" )->QueryIntText( &v1 );
|
| 260 |
|
| 261 | printf( "Both values are the same: %d and %d\n", v0, v1 );
|
| 262 |
|
| 263 | return !doc.Error() && ( v0 == v1 );
|
| 264 | }
|
Lee Thomason | cf10069 | 2017-12-10 20:03:39 -0800 | [diff] [blame] | 265 | /** @page Example_4 Read attributes and text information.
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 266 | @dontinclude ./xmltest.cpp
|
| 267 |
|
| 268 | There are fundamentally 2 ways of writing a key-value
|
| 269 | pair into an XML file. (Something that's always annoyed
|
| 270 | me about XML.) Either by using attributes, or by writing
|
| 271 | the key name into an element and the value into
|
| 272 | the text node wrapped by the element. Both approaches
|
| 273 | are illustrated in this example, which shows two ways
|
| 274 | to encode the value "2" into the key "v":
|
| 275 |
|
| 276 | @skip example_4()
|
| 277 | @until "</information>";
|
| 278 |
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 279 | TinyXML-2 has accessors for both approaches.
|
Martinsh Shaiters | c9c8b77 | 2013-01-16 02:08:19 +0200 | [diff] [blame] | 280 |
|
| 281 | When using an attribute, you navigate to the XMLElement
|
| 282 | with that attribute and use the QueryIntAttribute()
|
| 283 | group of methods. (Also QueryFloatAttribute(), etc.)
|
| 284 |
|
| 285 | @skip XMLElement* attributeApproachElement
|
| 286 | @until &v0 );
|
| 287 |
|
| 288 | When using the text approach, you need to navigate
|
| 289 | down one more step to the XMLElement that contains
|
| 290 | the text. Note the extra FirstChildElement( "v" )
|
| 291 | in the code below. The value of the text can then
|
| 292 | be safely queried with the QueryIntText() group
|
| 293 | of methods. (Also QueryFloatText(), etc.)
|
| 294 |
|
| 295 | @skip XMLElement* textApproachElement
|
| 296 | @until &v1 );
|
| 297 | */
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 298 |
|
| 299 |
|
Lee Thomason | 178e4cc | 2013-01-25 16:19:05 -0800 | [diff] [blame] | 300 | int main( int argc, const char ** argv )
|
U-Lama\Lee | e13c3e6 | 2011-12-28 14:36:55 -0800 | [diff] [blame] | 301 | {
|
Peter Matula | 5068991 | 2018-01-09 12:52:26 +0100 | [diff] [blame] | 302 | #if defined( _MSC_VER ) && defined( TINYXML2_DEBUG )
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 303 | _CrtMemCheckpoint( &startMemState );
|
Dmitry-Me | 9991659 | 2014-10-23 11:37:03 +0400 | [diff] [blame] | 304 | // Enable MS Visual C++ debug heap memory leaks dump on exit
|
| 305 | _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
|
Dmitry-Me | ed78570 | 2017-06-15 13:39:53 +0300 | [diff] [blame] | 306 | {
|
| 307 | int leaksOnStart = _CrtDumpMemoryLeaks();
|
| 308 | XMLTest( "No leaks on start?", FALSE, leaksOnStart );
|
| 309 | }
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 310 | #endif
|
Lee Thomason | 8a5dfee | 2012-01-18 17:43:40 -0800 | [diff] [blame] | 311 |
|
Dmitry-Me | 4bcbf14 | 2014-12-25 19:05:18 +0300 | [diff] [blame] | 312 | {
|
| 313 | TIXMLASSERT( true );
|
| 314 | }
|
| 315 |
|
Lee Thomason | 178e4cc | 2013-01-25 16:19:05 -0800 | [diff] [blame] | 316 | if ( argc > 1 ) {
|
| 317 | XMLDocument* doc = new XMLDocument();
|
| 318 | clock_t startTime = clock();
|
| 319 | doc->LoadFile( argv[1] );
|
Anton Indrawan | 8a0006c | 2014-11-20 18:27:07 +0100 | [diff] [blame] | 320 | clock_t loadTime = clock();
|
Lee Thomason | 178e4cc | 2013-01-25 16:19:05 -0800 | [diff] [blame] | 321 | int errorID = doc->ErrorID();
|
| 322 | delete doc; doc = 0;
|
Anton Indrawan | 8a0006c | 2014-11-20 18:27:07 +0100 | [diff] [blame] | 323 | clock_t deleteTime = clock();
|
Lee Thomason | 178e4cc | 2013-01-25 16:19:05 -0800 | [diff] [blame] | 324 |
|
| 325 | printf( "Test file '%s' loaded. ErrorID=%d\n", argv[1], errorID );
|
| 326 | if ( !errorID ) {
|
Lee Thomason (grinliz) | d6bd736 | 2013-05-11 20:23:13 -0700 | [diff] [blame] | 327 | printf( "Load time=%u\n", (unsigned)(loadTime - startTime) );
|
| 328 | printf( "Delete time=%u\n", (unsigned)(deleteTime - loadTime) );
|
| 329 | printf( "Total time=%u\n", (unsigned)(deleteTime - startTime) );
|
Lee Thomason | 178e4cc | 2013-01-25 16:19:05 -0800 | [diff] [blame] | 330 | }
|
| 331 | exit(0);
|
| 332 | }
|
| 333 |
|
Bruno Dias | a2d4e6e | 2012-05-07 04:58:11 -0300 | [diff] [blame] | 334 | FILE* fp = fopen( "resources/dream.xml", "r" );
|
Lee Thomason | 7f7b162 | 2012-03-24 12:49:03 -0700 | [diff] [blame] | 335 | if ( !fp ) {
|
| 336 | printf( "Error opening test file 'dream.xml'.\n"
|
| 337 | "Is your working directory the same as where \n"
|
| 338 | "the xmltest.cpp and dream.xml file are?\n\n"
|
| 339 | #if defined( _MSC_VER )
|
| 340 | "In windows Visual Studio you may need to set\n"
|
| 341 | "Properties->Debugging->Working Directory to '..'\n"
|
| 342 | #endif
|
| 343 | );
|
| 344 | exit( 1 );
|
| 345 | }
|
| 346 | fclose( fp );
|
| 347 |
|
Lee Thomason | cf10069 | 2017-12-10 20:03:39 -0800 | [diff] [blame] | 348 | XMLTest( "Example_1", 0, example_1() );
|
| 349 | XMLTest( "Example_2", 0, example_2() );
|
| 350 | XMLTest( "Example_3", 0, example_3() );
|
| 351 | XMLTest( "Example_4", true, example_4() );
|
Lee Thomason | 87e475a | 2012-03-20 11:55:29 -0700 | [diff] [blame] | 352 |
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 353 | /* ------ Example 2: Lookup information. ---- */
|
Lee Thomason | 87e475a | 2012-03-20 11:55:29 -0700 | [diff] [blame] | 354 |
|
Lee Thomason | 8a5dfee | 2012-01-18 17:43:40 -0800 | [diff] [blame] | 355 | {
|
Lee Thomason | 43f5930 | 2012-02-06 18:18:11 -0800 | [diff] [blame] | 356 | static const char* test[] = { "<element />",
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 357 | "<element></element>",
|
Lee Thomason | 43f5930 | 2012-02-06 18:18:11 -0800 | [diff] [blame] | 358 | "<element><subelement/></element>",
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 359 | "<element><subelement></subelement></element>",
|
| 360 | "<element><subelement><subsub/></subelement></element>",
|
| 361 | "<!--comment beside elements--><element><subelement></subelement></element>",
|
| 362 | "<!--comment beside elements, this time with spaces--> \n <element> <subelement> \n </subelement> </element>",
|
| 363 | "<element attrib1='foo' attrib2=\"bar\" ></element>",
|
| 364 | "<element attrib1='foo' attrib2=\"bar\" ><subelement attrib3='yeehaa' /></element>",
|
Lee Thomason | 43f5930 | 2012-02-06 18:18:11 -0800 | [diff] [blame] | 365 | "<element>Text inside element.</element>",
|
| 366 | "<element><b></b></element>",
|
| 367 | "<element>Text inside and <b>bolded</b> in the element.</element>",
|
| 368 | "<outer><element>Text inside and <b>bolded</b> in the element.</element></outer>",
|
Lee Thomason | 8ee7989 | 2012-01-25 17:44:30 -0800 | [diff] [blame] | 369 | "<element>This & That.</element>",
|
Lee Thomason | 18d68bd | 2012-01-26 18:17:26 -0800 | [diff] [blame] | 370 | "<element attrib='This<That' />",
|
Lee Thomason | dadcdfa | 2012-01-18 17:55:48 -0800 | [diff] [blame] | 371 | 0
|
| 372 | };
|
Lee Thomason | 6ee99fc | 2012-01-21 18:45:16 -0800 | [diff] [blame] | 373 | for( int i=0; test[i]; ++i ) {
|
Lee Thomason | dadcdfa | 2012-01-18 17:55:48 -0800 | [diff] [blame] | 374 | XMLDocument doc;
|
Lee Thomason | 6ee99fc | 2012-01-21 18:45:16 -0800 | [diff] [blame] | 375 | doc.Parse( test[i] );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 376 | XMLTest( "Element test", false, doc.Error() );
|
Lee Thomason | 5cae897 | 2012-01-24 18:03:07 -0800 | [diff] [blame] | 377 | doc.Print();
|
Lee Thomason | ec975ce | 2012-01-23 11:42:06 -0800 | [diff] [blame] | 378 | printf( "----------------------------------------------\n" );
|
Lee Thomason | dadcdfa | 2012-01-18 17:55:48 -0800 | [diff] [blame] | 379 | }
|
U-Lama\Lee | 4cee611 | 2011-12-31 14:58:18 -0800 | [diff] [blame] | 380 | }
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 381 | #if 1
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 382 | {
|
| 383 | static const char* test = "<!--hello world\n"
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 384 | " line 2\r"
|
| 385 | " line 3\r\n"
|
| 386 | " line 4\n\r"
|
| 387 | " line 5\r-->";
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 388 |
|
| 389 | XMLDocument doc;
|
| 390 | doc.Parse( test );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 391 | XMLTest( "Hello world declaration", false, doc.Error() );
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 392 | doc.Print();
|
| 393 | }
|
| 394 |
|
Lee Thomason | 2c85a71 | 2012-01-31 08:24:24 -0800 | [diff] [blame] | 395 | {
|
Dmitry-Me | e8f4a8b | 2017-09-15 19:34:36 +0300 | [diff] [blame] | 396 | // This test is pre-test for the next one
|
| 397 | // (where Element1 is inserted "after itself".
|
| 398 | // This code didn't use to crash.
|
| 399 | XMLDocument doc;
|
| 400 | XMLElement* element1 = doc.NewElement("Element1");
|
| 401 | XMLElement* element2 = doc.NewElement("Element2");
|
| 402 | doc.InsertEndChild(element1);
|
| 403 | doc.InsertEndChild(element2);
|
| 404 | doc.InsertAfterChild(element2, element2);
|
| 405 | doc.InsertAfterChild(element2, element2);
|
| 406 | }
|
| 407 |
|
| 408 | {
|
| 409 | XMLDocument doc;
|
| 410 | XMLElement* element1 = doc.NewElement("Element1");
|
| 411 | XMLElement* element2 = doc.NewElement("Element2");
|
| 412 | doc.InsertEndChild(element1);
|
| 413 | doc.InsertEndChild(element2);
|
| 414 |
|
| 415 | // This insertion "after itself"
|
| 416 | // used to cause invalid memory access and crash
|
| 417 | doc.InsertAfterChild(element1, element1);
|
| 418 | doc.InsertAfterChild(element1, element1);
|
| 419 | doc.InsertAfterChild(element2, element2);
|
| 420 | doc.InsertAfterChild(element2, element2);
|
| 421 | }
|
| 422 |
|
| 423 | {
|
Lee Thomason | 2c85a71 | 2012-01-31 08:24:24 -0800 | [diff] [blame] | 424 | static const char* test = "<element>Text before.</element>";
|
| 425 | XMLDocument doc;
|
| 426 | doc.Parse( test );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 427 | XMLTest( "Element text before", false, doc.Error() );
|
Lee Thomason | 2c85a71 | 2012-01-31 08:24:24 -0800 | [diff] [blame] | 428 | XMLElement* root = doc.FirstChildElement();
|
| 429 | XMLElement* newElement = doc.NewElement( "Subelement" );
|
| 430 | root->InsertEndChild( newElement );
|
| 431 | doc.Print();
|
| 432 | }
|
Lee Thomason | d198322 | 2012-02-06 08:41:24 -0800 | [diff] [blame] | 433 | {
|
| 434 | XMLDocument* doc = new XMLDocument();
|
| 435 | static const char* test = "<element><sub/></element>";
|
| 436 | doc->Parse( test );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 437 | XMLTest( "Element with sub element", false, doc->Error() );
|
Lee Thomason | d198322 | 2012-02-06 08:41:24 -0800 | [diff] [blame] | 438 | delete doc;
|
| 439 | }
|
Lee Thomason | e9ecdab | 2012-02-13 18:11:20 -0800 | [diff] [blame] | 440 | {
|
Dmitry-Me | 8e06370 | 2017-08-01 17:40:40 +0300 | [diff] [blame] | 441 | // Test: Programmatic DOM nodes insertion return values
|
| 442 | XMLDocument doc;
|
| 443 |
|
| 444 | XMLNode* first = doc.NewElement( "firstElement" );
|
| 445 | XMLTest( "New element", true, first != 0 );
|
| 446 | XMLNode* firstAfterInsertion = doc.InsertFirstChild( first );
|
| 447 | XMLTest( "New element inserted first", true, firstAfterInsertion == first );
|
| 448 |
|
| 449 | XMLNode* last = doc.NewElement( "lastElement" );
|
| 450 | XMLTest( "New element", true, last != 0 );
|
| 451 | XMLNode* lastAfterInsertion = doc.InsertEndChild( last );
|
| 452 | XMLTest( "New element inserted last", true, lastAfterInsertion == last );
|
| 453 |
|
| 454 | XMLNode* middle = doc.NewElement( "middleElement" );
|
| 455 | XMLTest( "New element", true, middle != 0 );
|
| 456 | XMLNode* middleAfterInsertion = doc.InsertAfterChild( first, middle );
|
| 457 | XMLTest( "New element inserted middle", true, middleAfterInsertion == middle );
|
| 458 | }
|
| 459 | {
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 460 | // Test: Programmatic DOM
|
Lee Thomason | ec5a7b4 | 2012-02-13 18:16:52 -0800 | [diff] [blame] | 461 | // Build:
|
| 462 | // <element>
|
| 463 | // <!--comment-->
|
Wang Kirin | 4add958 | 2019-04-29 09:54:45 +0800 | [diff] [blame] | 464 | // <sub attrib="0" />
|
Lee Thomason | ec5a7b4 | 2012-02-13 18:16:52 -0800 | [diff] [blame] | 465 | // <sub attrib="1" />
|
Wang Kirin | 4add958 | 2019-04-29 09:54:45 +0800 | [diff] [blame] | 466 | // <sub attrib="2" >& Text!</sub>
|
Lee Thomason | ec5a7b4 | 2012-02-13 18:16:52 -0800 | [diff] [blame] | 467 | // <element>
|
| 468 |
|
Lee Thomason | e9ecdab | 2012-02-13 18:11:20 -0800 | [diff] [blame] | 469 | XMLDocument* doc = new XMLDocument();
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 470 | XMLNode* element = doc->InsertEndChild( doc->NewElement( "element" ) );
|
| 471 |
|
| 472 | XMLElement* sub[3] = { doc->NewElement( "sub" ), doc->NewElement( "sub" ), doc->NewElement( "sub" ) };
|
| 473 | for( int i=0; i<3; ++i ) {
|
| 474 | sub[i]->SetAttribute( "attrib", i );
|
| 475 | }
|
| 476 | element->InsertEndChild( sub[2] );
|
Dmitry-Me | 7d8dfb9 | 2017-08-01 17:48:54 +0300 | [diff] [blame] | 477 |
|
| 478 | const int dummyInitialValue = 1000;
|
| 479 | int dummyValue = dummyInitialValue;
|
| 480 |
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 481 | XMLNode* comment = element->InsertFirstChild( doc->NewComment( "comment" ) );
|
Dmitry-Me | 7d8dfb9 | 2017-08-01 17:48:54 +0300 | [diff] [blame] | 482 | comment->SetUserData(&dummyValue);
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 483 | element->InsertAfterChild( comment, sub[0] );
|
| 484 | element->InsertAfterChild( sub[0], sub[1] );
|
U-Stream\Lee | 09a11c5 | 2012-02-17 08:31:16 -0800 | [diff] [blame] | 485 | sub[2]->InsertFirstChild( doc->NewText( "& Text!" ));
|
Lee Thomason | e9ecdab | 2012-02-13 18:11:20 -0800 | [diff] [blame] | 486 | doc->Print();
|
U-Stream\Lee | 09a11c5 | 2012-02-17 08:31:16 -0800 | [diff] [blame] | 487 | XMLTest( "Programmatic DOM", "comment", doc->FirstChildElement( "element" )->FirstChild()->Value() );
|
| 488 | XMLTest( "Programmatic DOM", "0", doc->FirstChildElement( "element" )->FirstChildElement()->Attribute( "attrib" ) );
|
| 489 | XMLTest( "Programmatic DOM", 2, doc->FirstChildElement()->LastChildElement( "sub" )->IntAttribute( "attrib" ) );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 490 | XMLTest( "Programmatic DOM", "& Text!",
|
U-Stream\Lee | 09a11c5 | 2012-02-17 08:31:16 -0800 | [diff] [blame] | 491 | doc->FirstChildElement()->LastChildElement( "sub" )->FirstChild()->ToText()->Value() );
|
Dmitry-Me | caed4ec | 2017-08-11 17:39:47 +0300 | [diff] [blame] | 492 | XMLTest("User data - pointer", true, &dummyValue == comment->GetUserData(), false);
|
| 493 | XMLTest("User data - value behind pointer", dummyInitialValue, dummyValue, false);
|
U-Stream\Lee | ae25a44 | 2012-02-17 17:48:16 -0800 | [diff] [blame] | 494 |
|
| 495 | // And now deletion:
|
| 496 | element->DeleteChild( sub[2] );
|
| 497 | doc->DeleteNode( comment );
|
| 498 |
|
| 499 | element->FirstChildElement()->SetAttribute( "attrib", true );
|
| 500 | element->LastChildElement()->DeleteAttribute( "attrib" );
|
| 501 |
|
| 502 | XMLTest( "Programmatic DOM", true, doc->FirstChildElement()->FirstChildElement()->BoolAttribute( "attrib" ) );
|
Dmitry-Me | 3d20c5d | 2017-07-10 18:28:19 +0300 | [diff] [blame] | 503 | const int defaultIntValue = 10;
|
| 504 | const int replacementIntValue = 20;
|
| 505 | int value1 = defaultIntValue;
|
| 506 | int value2 = doc->FirstChildElement()->LastChildElement()->IntAttribute( "attrib", replacementIntValue );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 507 | XMLError result = doc->FirstChildElement()->LastChildElement()->QueryIntAttribute( "attrib", &value1 );
|
| 508 | XMLTest( "Programmatic DOM", XML_NO_ATTRIBUTE, result );
|
Dmitry-Me | 3d20c5d | 2017-07-10 18:28:19 +0300 | [diff] [blame] | 509 | XMLTest( "Programmatic DOM", defaultIntValue, value1 );
|
| 510 | XMLTest( "Programmatic DOM", replacementIntValue, value2 );
|
U-Stream\Lee | ae25a44 | 2012-02-17 17:48:16 -0800 | [diff] [blame] | 511 |
|
| 512 | doc->Print();
|
| 513 |
|
Lee Thomason | 7b1b86a | 2012-06-04 17:01:38 -0700 | [diff] [blame] | 514 | {
|
| 515 | XMLPrinter streamer;
|
| 516 | doc->Print( &streamer );
|
| 517 | printf( "%s", streamer.CStr() );
|
| 518 | }
|
| 519 | {
|
| 520 | XMLPrinter streamer( 0, true );
|
| 521 | doc->Print( &streamer );
|
Doruk Turak | 1f212f3 | 2016-08-28 20:54:17 +0200 | [diff] [blame] | 522 | XMLTest( "Compact mode", "<element><sub attrib=\"true\"/><sub/></element>", streamer.CStr(), false );
|
Lee Thomason | 7b1b86a | 2012-06-04 17:01:38 -0700 | [diff] [blame] | 523 | }
|
Lee Thomason (grinliz) | 6b8b012 | 2012-09-08 21:21:00 -0700 | [diff] [blame] | 524 | doc->SaveFile( "./resources/out/pretty.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 525 | XMLTest( "Save pretty.xml", false, doc->Error() );
|
Lee Thomason (grinliz) | 6b8b012 | 2012-09-08 21:21:00 -0700 | [diff] [blame] | 526 | doc->SaveFile( "./resources/out/compact.xml", true );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 527 | XMLTest( "Save compact.xml", false, doc->Error() );
|
Lee Thomason | e9ecdab | 2012-02-13 18:11:20 -0800 | [diff] [blame] | 528 | delete doc;
|
| 529 | }
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 530 | {
|
| 531 | // Test: Dream
|
| 532 | // XML1 : 1,187,569 bytes in 31,209 allocations
|
| 533 | // XML2 : 469,073 bytes in 323 allocations
|
| 534 | //int newStart = gNew;
|
| 535 | XMLDocument doc;
|
Bruno Dias | a2d4e6e | 2012-05-07 04:58:11 -0300 | [diff] [blame] | 536 | doc.LoadFile( "resources/dream.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 537 | XMLTest( "Load dream.xml", false, doc.Error() );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 538 |
|
Arkadiy Shapkin | ff72d1f | 2012-07-24 00:24:07 +0400 | [diff] [blame] | 539 | doc.SaveFile( "resources/out/dreamout.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 540 | XMLTest( "Save dreamout.xml", false, doc.Error() );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 541 | doc.PrintError();
|
| 542 |
|
| 543 | XMLTest( "Dream", "xml version=\"1.0\"",
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 544 | doc.FirstChild()->ToDeclaration()->Value() );
|
Dmitry-Me | f5af951 | 2018-03-23 21:01:25 +0300 | [diff] [blame] | 545 | XMLTest( "Dream", true, doc.FirstChild()->NextSibling()->ToUnknown() != 0 );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 546 | XMLTest( "Dream", "DOCTYPE PLAY SYSTEM \"play.dtd\"",
|
| 547 | doc.FirstChild()->NextSibling()->ToUnknown()->Value() );
|
| 548 | XMLTest( "Dream", "And Robin shall restore amends.",
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 549 | doc.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 550 | XMLTest( "Dream", "And Robin shall restore amends.",
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 551 | doc.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 552 |
|
| 553 | XMLDocument doc2;
|
Arkadiy Shapkin | ff72d1f | 2012-07-24 00:24:07 +0400 | [diff] [blame] | 554 | doc2.LoadFile( "resources/out/dreamout.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 555 | XMLTest( "Load dreamout.xml", false, doc2.Error() );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 556 | XMLTest( "Dream-out", "xml version=\"1.0\"",
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 557 | doc2.FirstChild()->ToDeclaration()->Value() );
|
Dmitry-Me | f5af951 | 2018-03-23 21:01:25 +0300 | [diff] [blame] | 558 | XMLTest( "Dream-out", true, doc2.FirstChild()->NextSibling()->ToUnknown() != 0 );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 559 | XMLTest( "Dream-out", "DOCTYPE PLAY SYSTEM \"play.dtd\"",
|
| 560 | doc2.FirstChild()->NextSibling()->ToUnknown()->Value() );
|
| 561 | XMLTest( "Dream-out", "And Robin shall restore amends.",
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 562 | doc2.LastChild()->LastChild()->LastChild()->LastChild()->LastChildElement()->GetText() );
|
Lee Thomason (grinliz) | bd0a8ac | 2012-02-20 20:14:33 -0800 | [diff] [blame] | 563 |
|
| 564 | //gNewTotal = gNew - newStart;
|
| 565 | }
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 566 |
|
| 567 |
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 568 | {
|
| 569 | const char* error = "<?xml version=\"1.0\" standalone=\"no\" ?>\n"
|
| 570 | "<passages count=\"006\" formatversion=\"20020620\">\n"
|
| 571 | " <wrong error>\n"
|
| 572 | "</passages>";
|
| 573 |
|
| 574 | XMLDocument doc;
|
| 575 | doc.Parse( error );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 576 | XMLTest( "Bad XML", XML_ERROR_PARSING_ATTRIBUTE, doc.ErrorID() );
|
Lee Thomason | a36f7ac | 2017-12-28 13:48:54 -0800 | [diff] [blame] | 577 | const char* errorStr = doc.ErrorStr();
|
| 578 | XMLTest("Formatted error string",
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 579 | "Error=XML_ERROR_PARSING_ATTRIBUTE ErrorID=7 (0x7) Line number=3: XMLElement name=wrong",
|
Lee Thomason | a36f7ac | 2017-12-28 13:48:54 -0800 | [diff] [blame] | 580 | errorStr);
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 581 | }
|
| 582 |
|
| 583 | {
|
| 584 | const char* str = "<doc attr0='1' attr1='2.0' attr2='foo' />";
|
| 585 |
|
| 586 | XMLDocument doc;
|
| 587 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 588 | XMLTest( "Top level attributes", false, doc.Error() );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 589 |
|
| 590 | XMLElement* ele = doc.FirstChildElement();
|
| 591 |
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 592 | int iVal;
|
| 593 | XMLError result;
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 594 | double dVal;
|
| 595 |
|
| 596 | result = ele->QueryDoubleAttribute( "attr0", &dVal );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 597 | XMLTest( "Query attribute: int as double", XML_SUCCESS, result);
|
| 598 | XMLTest( "Query attribute: int as double", 1, (int)dVal );
|
| 599 | XMLTest( "Query attribute: int as double", 1, (int)ele->DoubleAttribute("attr0"));
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 600 |
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 601 | result = ele->QueryDoubleAttribute( "attr1", &dVal );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 602 | XMLTest( "Query attribute: double as double", XML_SUCCESS, result);
|
| 603 | XMLTest( "Query attribute: double as double", 2.0, dVal );
|
| 604 | XMLTest( "Query attribute: double as double", 2.0, ele->DoubleAttribute("attr1") );
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 605 |
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 606 | result = ele->QueryIntAttribute( "attr1", &iVal );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 607 | XMLTest( "Query attribute: double as int", XML_SUCCESS, result);
|
| 608 | XMLTest( "Query attribute: double as int", 2, iVal );
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 609 |
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 610 | result = ele->QueryIntAttribute( "attr2", &iVal );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 611 | XMLTest( "Query attribute: not a number", XML_WRONG_ATTRIBUTE_TYPE, result );
|
| 612 | XMLTest( "Query attribute: not a number", 4.0, ele->DoubleAttribute("attr2", 4.0) );
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 613 |
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 614 | result = ele->QueryIntAttribute( "bar", &iVal );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 615 | XMLTest( "Query attribute: does not exist", XML_NO_ATTRIBUTE, result );
|
| 616 | XMLTest( "Query attribute: does not exist", true, ele->BoolAttribute("bar", true) );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 617 | }
|
| 618 |
|
| 619 | {
|
| 620 | const char* str = "<doc/>";
|
| 621 |
|
| 622 | XMLDocument doc;
|
| 623 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 624 | XMLTest( "Empty top element", false, doc.Error() );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 625 |
|
| 626 | XMLElement* ele = doc.FirstChildElement();
|
| 627 |
|
Lee Thomason (grinliz) | 5efaa5f | 2013-02-01 19:26:30 -0800 | [diff] [blame] | 628 | int iVal, iVal2;
|
| 629 | double dVal, dVal2;
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 630 |
|
| 631 | ele->SetAttribute( "str", "strValue" );
|
| 632 | ele->SetAttribute( "int", 1 );
|
| 633 | ele->SetAttribute( "double", -1.0 );
|
| 634 |
|
| 635 | const char* cStr = ele->Attribute( "str" );
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 636 | {
|
| 637 | XMLError queryResult = ele->QueryIntAttribute( "int", &iVal );
|
| 638 | XMLTest( "Query int attribute", XML_SUCCESS, queryResult);
|
| 639 | }
|
| 640 | {
|
| 641 | XMLError queryResult = ele->QueryDoubleAttribute( "double", &dVal );
|
| 642 | XMLTest( "Query double attribute", XML_SUCCESS, queryResult);
|
| 643 | }
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 644 |
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 645 | {
|
| 646 | int queryResult = ele->QueryAttribute( "int", &iVal2 );
|
| 647 | XMLTest( "Query int attribute generic", (int)XML_SUCCESS, queryResult);
|
| 648 | }
|
| 649 | {
|
| 650 | int queryResult = ele->QueryAttribute( "double", &dVal2 );
|
| 651 | XMLTest( "Query double attribute generic", (int)XML_SUCCESS, queryResult);
|
| 652 | }
|
Lee Thomason (grinliz) | 5efaa5f | 2013-02-01 19:26:30 -0800 | [diff] [blame] | 653 |
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 654 | XMLTest( "Attribute match test", "strValue", ele->Attribute( "str", "strValue" ) );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 655 | XMLTest( "Attribute round trip. c-string.", "strValue", cStr );
|
| 656 | XMLTest( "Attribute round trip. int.", 1, iVal );
|
| 657 | XMLTest( "Attribute round trip. double.", -1, (int)dVal );
|
Lee Thomason (grinliz) | 5efaa5f | 2013-02-01 19:26:30 -0800 | [diff] [blame] | 658 | XMLTest( "Alternate query", true, iVal == iVal2 );
|
| 659 | XMLTest( "Alternate query", true, dVal == dVal2 );
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 660 | XMLTest( "Alternate query", true, iVal == ele->IntAttribute("int") );
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 661 | XMLTest( "Alternate query", true, dVal == ele->DoubleAttribute("double") );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 662 | }
|
| 663 |
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 664 | {
|
| 665 | XMLDocument doc;
|
Bruno Dias | a2d4e6e | 2012-05-07 04:58:11 -0300 | [diff] [blame] | 666 | doc.LoadFile( "resources/utf8test.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 667 | XMLTest( "Load utf8test.xml", false, doc.Error() );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 668 |
|
| 669 | // Get the attribute "value" from the "Russian" element and check it.
|
| 670 | XMLElement* element = doc.FirstChildElement( "document" )->FirstChildElement( "Russian" );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 671 | const unsigned char correctValue[] = { 0xd1U, 0x86U, 0xd0U, 0xb5U, 0xd0U, 0xbdU, 0xd0U, 0xbdU,
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 672 | 0xd0U, 0xbeU, 0xd1U, 0x81U, 0xd1U, 0x82U, 0xd1U, 0x8cU, 0 };
|
| 673 |
|
| 674 | XMLTest( "UTF-8: Russian value.", (const char*)correctValue, element->Attribute( "value" ) );
|
| 675 |
|
| 676 | const unsigned char russianElementName[] = { 0xd0U, 0xa0U, 0xd1U, 0x83U,
|
| 677 | 0xd1U, 0x81U, 0xd1U, 0x81U,
|
| 678 | 0xd0U, 0xbaU, 0xd0U, 0xb8U,
|
| 679 | 0xd0U, 0xb9U, 0 };
|
| 680 | const char russianText[] = "<\xD0\xB8\xD0\xBC\xD0\xB5\xD0\xB5\xD1\x82>";
|
| 681 |
|
| 682 | XMLText* text = doc.FirstChildElement( "document" )->FirstChildElement( (const char*) russianElementName )->FirstChild()->ToText();
|
| 683 | XMLTest( "UTF-8: Browsing russian element name.",
|
| 684 | russianText,
|
| 685 | text->Value() );
|
| 686 |
|
| 687 | // Now try for a round trip.
|
Arkadiy Shapkin | ff72d1f | 2012-07-24 00:24:07 +0400 | [diff] [blame] | 688 | doc.SaveFile( "resources/out/utf8testout.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 689 | XMLTest( "UTF-8: Save testout.xml", false, doc.Error() );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 690 |
|
| 691 | // Check the round trip.
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 692 | bool roundTripOkay = false;
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 693 |
|
Thomas Roß | a6dd8c6 | 2012-07-26 20:42:18 +0200 | [diff] [blame] | 694 | FILE* saved = fopen( "resources/out/utf8testout.xml", "r" );
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 695 | XMLTest( "UTF-8: Open utf8testout.xml", true, saved != 0 );
|
| 696 |
|
Bruno Dias | a2d4e6e | 2012-05-07 04:58:11 -0300 | [diff] [blame] | 697 | FILE* verify = fopen( "resources/utf8testverify.xml", "r" );
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 698 | XMLTest( "UTF-8: Open utf8testverify.xml", true, verify != 0 );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 699 |
|
| 700 | if ( saved && verify )
|
| 701 | {
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 702 | roundTripOkay = true;
|
PKEuS | c28ba3a | 2012-07-16 03:08:47 -0700 | [diff] [blame] | 703 | char verifyBuf[256];
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 704 | while ( fgets( verifyBuf, 256, verify ) )
|
| 705 | {
|
PKEuS | c28ba3a | 2012-07-16 03:08:47 -0700 | [diff] [blame] | 706 | char savedBuf[256];
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 707 | fgets( savedBuf, 256, saved );
|
| 708 | NullLineEndings( verifyBuf );
|
| 709 | NullLineEndings( savedBuf );
|
| 710 |
|
| 711 | if ( strcmp( verifyBuf, savedBuf ) )
|
| 712 | {
|
| 713 | printf( "verify:%s<\n", verifyBuf );
|
| 714 | printf( "saved :%s<\n", savedBuf );
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 715 | roundTripOkay = false;
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 716 | break;
|
| 717 | }
|
| 718 | }
|
| 719 | }
|
| 720 | if ( saved )
|
| 721 | fclose( saved );
|
| 722 | if ( verify )
|
| 723 | fclose( verify );
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 724 | XMLTest( "UTF-8: Verified multi-language round trip.", true, roundTripOkay );
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 725 | }
|
| 726 |
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 727 | // --------GetText()-----------
|
| 728 | {
|
| 729 | const char* str = "<foo>This is text</foo>";
|
| 730 | XMLDocument doc;
|
| 731 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 732 | XMLTest( "Double whitespace", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 733 | const XMLElement* element = doc.RootElement();
|
| 734 |
|
| 735 | XMLTest( "GetText() normal use.", "This is text", element->GetText() );
|
| 736 |
|
| 737 | str = "<foo><b>This is text</b></foo>";
|
| 738 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 739 | XMLTest( "Bold text simulation", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 740 | element = doc.RootElement();
|
| 741 |
|
| 742 | XMLTest( "GetText() contained element.", element->GetText() == 0, true );
|
| 743 | }
|
Lee Thomason (grinliz) | 68db57e | 2012-02-21 09:08:12 -0800 | [diff] [blame] | 744 |
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 745 |
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 746 | // --------SetText()-----------
|
| 747 | {
|
| 748 | const char* str = "<foo></foo>";
|
| 749 | XMLDocument doc;
|
| 750 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 751 | XMLTest( "Empty closed element", false, doc.Error() );
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 752 | XMLElement* element = doc.RootElement();
|
| 753 |
|
Lee Thomason | 9c0678a | 2014-01-24 10:18:27 -0800 | [diff] [blame] | 754 | element->SetText("darkness.");
|
| 755 | XMLTest( "SetText() normal use (open/close).", "darkness.", element->GetText() );
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 756 |
|
Lee Thomason | 9c0678a | 2014-01-24 10:18:27 -0800 | [diff] [blame] | 757 | element->SetText("blue flame.");
|
| 758 | XMLTest( "SetText() replace.", "blue flame.", element->GetText() );
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 759 |
|
| 760 | str = "<foo/>";
|
| 761 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 762 | XMLTest( "Empty self-closed element", false, doc.Error() );
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 763 | element = doc.RootElement();
|
| 764 |
|
Lee Thomason | 9c0678a | 2014-01-24 10:18:27 -0800 | [diff] [blame] | 765 | element->SetText("The driver");
|
| 766 | XMLTest( "SetText() normal use. (self-closing)", "The driver", element->GetText() );
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 767 |
|
Lee Thomason | 9c0678a | 2014-01-24 10:18:27 -0800 | [diff] [blame] | 768 | element->SetText("<b>horses</b>");
|
| 769 | XMLTest( "SetText() replace with tag-like text.", "<b>horses</b>", element->GetText() );
|
| 770 | //doc.Print();
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 771 |
|
| 772 | str = "<foo><bar>Text in nested element</bar></foo>";
|
| 773 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 774 | XMLTest( "Text in nested element", false, doc.Error() );
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 775 | element = doc.RootElement();
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 776 |
|
Lee Thomason | 9c0678a | 2014-01-24 10:18:27 -0800 | [diff] [blame] | 777 | element->SetText("wolves");
|
| 778 | XMLTest( "SetText() prefix to nested non-text children.", "wolves", element->GetText() );
|
Lee Thomason | 5bb2d80 | 2014-01-24 10:42:57 -0800 | [diff] [blame] | 779 |
|
| 780 | str = "<foo/>";
|
| 781 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 782 | XMLTest( "Empty self-closed element round 2", false, doc.Error() );
|
Lee Thomason | 5bb2d80 | 2014-01-24 10:42:57 -0800 | [diff] [blame] | 783 | element = doc.RootElement();
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 784 |
|
Lee Thomason | 5bb2d80 | 2014-01-24 10:42:57 -0800 | [diff] [blame] | 785 | element->SetText( "str" );
|
| 786 | XMLTest( "SetText types", "str", element->GetText() );
|
| 787 |
|
| 788 | element->SetText( 1 );
|
| 789 | XMLTest( "SetText types", "1", element->GetText() );
|
| 790 |
|
| 791 | element->SetText( 1U );
|
| 792 | XMLTest( "SetText types", "1", element->GetText() );
|
| 793 |
|
| 794 | element->SetText( true );
|
Doruk Turak | 1f212f3 | 2016-08-28 20:54:17 +0200 | [diff] [blame] | 795 | XMLTest( "SetText types", "true", element->GetText() );
|
Lee Thomason | 5bb2d80 | 2014-01-24 10:42:57 -0800 | [diff] [blame] | 796 |
|
| 797 | element->SetText( 1.5f );
|
| 798 | XMLTest( "SetText types", "1.5", element->GetText() );
|
| 799 |
|
| 800 | element->SetText( 1.5 );
|
| 801 | XMLTest( "SetText types", "1.5", element->GetText() );
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 802 | }
|
| 803 |
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 804 | // ---------- Attributes ---------
|
| 805 | {
|
| 806 | static const int64_t BIG = -123456789012345678;
|
Lee Thomason | effdf95 | 2019-08-10 17:49:42 -0700 | [diff] [blame] | 807 | static const uint64_t BIG_POS = 123456789012345678;
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 808 | XMLDocument doc;
|
| 809 | XMLElement* element = doc.NewElement("element");
|
| 810 | doc.InsertFirstChild(element);
|
| 811 |
|
| 812 | {
|
| 813 | element->SetAttribute("attrib", int(-100));
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 814 | {
|
| 815 | int v = 0;
|
| 816 | XMLError queryResult = element->QueryIntAttribute("attrib", &v);
|
| 817 | XMLTest("Attribute: int", XML_SUCCESS, queryResult, true);
|
| 818 | XMLTest("Attribute: int", -100, v, true);
|
| 819 | }
|
| 820 | {
|
| 821 | int v = 0;
|
| 822 | int queryResult = element->QueryAttribute("attrib", &v);
|
| 823 | XMLTest("Attribute: int", (int)XML_SUCCESS, queryResult, true);
|
| 824 | XMLTest("Attribute: int", -100, v, true);
|
| 825 | }
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 826 | XMLTest("Attribute: int", -100, element->IntAttribute("attrib"), true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 827 | }
|
| 828 | {
|
| 829 | element->SetAttribute("attrib", unsigned(100));
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 830 | {
|
| 831 | unsigned v = 0;
|
| 832 | XMLError queryResult = element->QueryUnsignedAttribute("attrib", &v);
|
| 833 | XMLTest("Attribute: unsigned", XML_SUCCESS, queryResult, true);
|
| 834 | XMLTest("Attribute: unsigned", unsigned(100), v, true);
|
| 835 | }
|
| 836 | {
|
| 837 | unsigned v = 0;
|
| 838 | int queryResult = element->QueryAttribute("attrib", &v);
|
| 839 | XMLTest("Attribute: unsigned", (int)XML_SUCCESS, queryResult, true);
|
| 840 | XMLTest("Attribute: unsigned", unsigned(100), v, true);
|
| 841 | }
|
Lee Thomason | 5b00e06 | 2017-12-28 14:07:47 -0800 | [diff] [blame] | 842 | {
|
| 843 | const char* v = "failed";
|
Dmitry-Me | 63d8de6 | 2018-01-09 00:20:45 +0300 | [diff] [blame] | 844 | XMLError queryResult = element->QueryStringAttribute("not-attrib", &v);
|
Lee Thomason | 5b00e06 | 2017-12-28 14:07:47 -0800 | [diff] [blame] | 845 | XMLTest("Attribute: string default", false, queryResult == XML_SUCCESS);
|
| 846 | queryResult = element->QueryStringAttribute("attrib", &v);
|
Dmitry-Me | 63d8de6 | 2018-01-09 00:20:45 +0300 | [diff] [blame] | 847 | XMLTest("Attribute: string", XML_SUCCESS, queryResult, true);
|
Lee Thomason | 5b00e06 | 2017-12-28 14:07:47 -0800 | [diff] [blame] | 848 | XMLTest("Attribute: string", "100", v);
|
| 849 | }
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 850 | XMLTest("Attribute: unsigned", unsigned(100), element->UnsignedAttribute("attrib"), true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 851 | }
|
| 852 | {
|
| 853 | element->SetAttribute("attrib", BIG);
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 854 | {
|
| 855 | int64_t v = 0;
|
| 856 | XMLError queryResult = element->QueryInt64Attribute("attrib", &v);
|
| 857 | XMLTest("Attribute: int64_t", XML_SUCCESS, queryResult, true);
|
| 858 | XMLTest("Attribute: int64_t", BIG, v, true);
|
| 859 | }
|
| 860 | {
|
| 861 | int64_t v = 0;
|
| 862 | int queryResult = element->QueryAttribute("attrib", &v);
|
| 863 | XMLTest("Attribute: int64_t", (int)XML_SUCCESS, queryResult, true);
|
| 864 | XMLTest("Attribute: int64_t", BIG, v, true);
|
| 865 | }
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 866 | XMLTest("Attribute: int64_t", BIG, element->Int64Attribute("attrib"), true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 867 | }
|
Lee Thomason | effdf95 | 2019-08-10 17:49:42 -0700 | [diff] [blame] | 868 | {
|
| 869 | element->SetAttribute("attrib", BIG_POS);
|
| 870 | {
|
| 871 | uint64_t v = 0;
|
| 872 | XMLError queryResult = element->QueryUnsigned64Attribute("attrib", &v);
|
| 873 | XMLTest("Attribute: uint64_t", XML_SUCCESS, queryResult, true);
|
| 874 | XMLTest("Attribute: uint64_t", BIG_POS, v, true);
|
| 875 | }
|
| 876 | {
|
| 877 | uint64_t v = 0;
|
| 878 | int queryResult = element->QueryAttribute("attrib", &v);
|
| 879 | XMLTest("Attribute: uint64_t", (int)XML_SUCCESS, queryResult, true);
|
| 880 | XMLTest("Attribute: uint64_t", BIG_POS, v, true);
|
| 881 | }
|
| 882 | XMLTest("Attribute: uint64_t", BIG_POS, element->Unsigned64Attribute("attrib"), true);
|
| 883 | }
|
| 884 | {
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 885 | element->SetAttribute("attrib", true);
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 886 | {
|
| 887 | bool v = false;
|
| 888 | XMLError queryResult = element->QueryBoolAttribute("attrib", &v);
|
| 889 | XMLTest("Attribute: bool", XML_SUCCESS, queryResult, true);
|
| 890 | XMLTest("Attribute: bool", true, v, true);
|
| 891 | }
|
| 892 | {
|
| 893 | bool v = false;
|
| 894 | int queryResult = element->QueryAttribute("attrib", &v);
|
| 895 | XMLTest("Attribute: bool", (int)XML_SUCCESS, queryResult, true);
|
| 896 | XMLTest("Attribute: bool", true, v, true);
|
| 897 | }
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 898 | XMLTest("Attribute: bool", true, element->BoolAttribute("attrib"), true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 899 | }
|
| 900 | {
|
Lee Thomason | ce667c9 | 2016-12-26 16:45:30 -0800 | [diff] [blame] | 901 | element->SetAttribute("attrib", true);
|
| 902 | const char* result = element->Attribute("attrib");
|
| 903 | XMLTest("Bool true is 'true'", "true", result);
|
| 904 |
|
Lee Thomason | c5c99c2 | 2016-12-29 11:19:17 -0800 | [diff] [blame] | 905 | XMLUtil::SetBoolSerialization("1", "0");
|
Lee Thomason | ce667c9 | 2016-12-26 16:45:30 -0800 | [diff] [blame] | 906 | element->SetAttribute("attrib", true);
|
| 907 | result = element->Attribute("attrib");
|
| 908 | XMLTest("Bool true is '1'", "1", result);
|
| 909 |
|
Lee Thomason | c5c99c2 | 2016-12-29 11:19:17 -0800 | [diff] [blame] | 910 | XMLUtil::SetBoolSerialization(0, 0);
|
Lee Thomason | ce667c9 | 2016-12-26 16:45:30 -0800 | [diff] [blame] | 911 | }
|
| 912 | {
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 913 | element->SetAttribute("attrib", 100.0);
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 914 | {
|
| 915 | double v = 0;
|
| 916 | XMLError queryResult = element->QueryDoubleAttribute("attrib", &v);
|
| 917 | XMLTest("Attribute: double", XML_SUCCESS, queryResult, true);
|
| 918 | XMLTest("Attribute: double", 100.0, v, true);
|
| 919 | }
|
| 920 | {
|
| 921 | double v = 0;
|
| 922 | int queryResult = element->QueryAttribute("attrib", &v);
|
| 923 | XMLTest("Attribute: bool", (int)XML_SUCCESS, queryResult, true);
|
| 924 | XMLTest("Attribute: double", 100.0, v, true);
|
| 925 | }
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 926 | XMLTest("Attribute: double", 100.0, element->DoubleAttribute("attrib"), true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 927 | }
|
| 928 | {
|
| 929 | element->SetAttribute("attrib", 100.0f);
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 930 | {
|
| 931 | float v = 0;
|
| 932 | XMLError queryResult = element->QueryFloatAttribute("attrib", &v);
|
| 933 | XMLTest("Attribute: float", XML_SUCCESS, queryResult, true);
|
| 934 | XMLTest("Attribute: float", 100.0f, v, true);
|
| 935 | }
|
| 936 | {
|
| 937 | float v = 0;
|
| 938 | int queryResult = element->QueryAttribute("attrib", &v);
|
| 939 | XMLTest("Attribute: float", (int)XML_SUCCESS, queryResult, true);
|
| 940 | XMLTest("Attribute: float", 100.0f, v, true);
|
| 941 | }
|
Lee Thomason | 13cbc9a | 2016-10-27 14:55:07 -0700 | [diff] [blame] | 942 | XMLTest("Attribute: float", 100.0f, element->FloatAttribute("attrib"), true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 943 | }
|
| 944 | {
|
| 945 | element->SetText(BIG);
|
| 946 | int64_t v = 0;
|
Dmitry-Me | 2087a27 | 2017-07-10 18:13:07 +0300 | [diff] [blame] | 947 | XMLError queryResult = element->QueryInt64Text(&v);
|
| 948 | XMLTest("Element: int64_t", XML_SUCCESS, queryResult, true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 949 | XMLTest("Element: int64_t", BIG, v, true);
|
| 950 | }
|
Lee Thomason | effdf95 | 2019-08-10 17:49:42 -0700 | [diff] [blame] | 951 | {
|
| 952 | element->SetText(BIG_POS);
|
| 953 | uint64_t v = 0;
|
| 954 | XMLError queryResult = element->QueryUnsigned64Text(&v);
|
| 955 | XMLTest("Element: uint64_t", XML_SUCCESS, queryResult, true);
|
| 956 | XMLTest("Element: uint64_t", BIG_POS, v, true);
|
| 957 | }
|
| 958 | }
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 959 |
|
| 960 | // ---------- XMLPrinter stream mode ------
|
| 961 | {
|
| 962 | {
|
Dmitry-Me | c0fad29 | 2017-08-09 19:05:42 +0300 | [diff] [blame] | 963 | FILE* printerfp = fopen("resources/out/printer.xml", "w");
|
| 964 | XMLTest("Open printer.xml", true, printerfp != 0);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 965 | XMLPrinter printer(printerfp);
|
| 966 | printer.OpenElement("foo");
|
| 967 | printer.PushAttribute("attrib-text", "text");
|
| 968 | printer.PushAttribute("attrib-int", int(1));
|
| 969 | printer.PushAttribute("attrib-unsigned", unsigned(2));
|
| 970 | printer.PushAttribute("attrib-int64", int64_t(3));
|
Lee Thomason | 37ccc71 | 2020-03-01 16:52:42 -0800 | [diff] [blame] | 971 | printer.PushAttribute("attrib-uint64", uint64_t(37));
|
| 972 | printer.PushAttribute("attrib-bool", true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 973 | printer.PushAttribute("attrib-double", 4.0);
|
| 974 | printer.CloseElement();
|
| 975 | fclose(printerfp);
|
| 976 | }
|
| 977 | {
|
| 978 | XMLDocument doc;
|
Dmitry-Me | c0fad29 | 2017-08-09 19:05:42 +0300 | [diff] [blame] | 979 | doc.LoadFile("resources/out/printer.xml");
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 980 | XMLTest("XMLPrinter Stream mode: load", XML_SUCCESS, doc.ErrorID(), true);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 981 |
|
| 982 | const XMLDocument& cdoc = doc;
|
| 983 |
|
| 984 | const XMLAttribute* attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-text");
|
| 985 | XMLTest("attrib-text", "text", attrib->Value(), true);
|
| 986 | attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-int");
|
| 987 | XMLTest("attrib-int", int(1), attrib->IntValue(), true);
|
| 988 | attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-unsigned");
|
| 989 | XMLTest("attrib-unsigned", unsigned(2), attrib->UnsignedValue(), true);
|
| 990 | attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-int64");
|
| 991 | XMLTest("attrib-int64", int64_t(3), attrib->Int64Value(), true);
|
Lee Thomason | 37ccc71 | 2020-03-01 16:52:42 -0800 | [diff] [blame] | 992 | attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-uint64");
|
| 993 | XMLTest("attrib-uint64", uint64_t(37), attrib->Unsigned64Value(), true);
|
| 994 | attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-bool");
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 995 | XMLTest("attrib-bool", true, attrib->BoolValue(), true);
|
| 996 | attrib = cdoc.FirstChildElement("foo")->FindAttribute("attrib-double");
|
| 997 | XMLTest("attrib-double", 4.0, attrib->DoubleValue(), true);
|
| 998 | }
|
Lee Thomason | 37ccc71 | 2020-03-01 16:52:42 -0800 | [diff] [blame] | 999 | // Add API_testcatse :PushDeclaration();PushText();PushComment()
|
| 1000 | {
|
| 1001 | FILE* fp1 = fopen("resources/out/printer_1.xml", "w");
|
| 1002 | XMLPrinter printer(fp1);
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 1003 |
|
Lee Thomason | 37ccc71 | 2020-03-01 16:52:42 -0800 | [diff] [blame] | 1004 | printer.PushDeclaration("version = '1.0' enconding = 'utf-8'");
|
Alanscut | 7d9ca1e | 2019-09-27 15:46:45 +0800 | [diff] [blame] | 1005 |
|
Lee Thomason | 37ccc71 | 2020-03-01 16:52:42 -0800 | [diff] [blame] | 1006 | printer.OpenElement("foo");
|
| 1007 | printer.PushAttribute("attrib-text", "text");
|
Alanscut | 7d9ca1e | 2019-09-27 15:46:45 +0800 | [diff] [blame] | 1008 |
|
Lee Thomason | 37ccc71 | 2020-03-01 16:52:42 -0800 | [diff] [blame] | 1009 | printer.OpenElement("text");
|
| 1010 | printer.PushText("Tinyxml2");
|
| 1011 | printer.CloseElement();
|
Alanscut | 7d9ca1e | 2019-09-27 15:46:45 +0800 | [diff] [blame] | 1012 |
|
Lee Thomason | 37ccc71 | 2020-03-01 16:52:42 -0800 | [diff] [blame] | 1013 | printer.OpenElement("int");
|
| 1014 | printer.PushText(int(11));
|
| 1015 | printer.CloseElement();
|
| 1016 |
|
| 1017 | printer.OpenElement("unsigned");
|
| 1018 | printer.PushText(unsigned(12));
|
| 1019 | printer.CloseElement();
|
| 1020 |
|
| 1021 | printer.OpenElement("int64_t");
|
| 1022 | printer.PushText(int64_t(13));
|
| 1023 | printer.CloseElement();
|
| 1024 |
|
| 1025 | printer.OpenElement("uint64_t");
|
| 1026 | printer.PushText(uint64_t(14));
|
| 1027 | printer.CloseElement();
|
| 1028 |
|
| 1029 | printer.OpenElement("bool");
|
| 1030 | printer.PushText(true);
|
| 1031 | printer.CloseElement();
|
| 1032 |
|
| 1033 | printer.OpenElement("float");
|
| 1034 | printer.PushText("1.56");
|
| 1035 | printer.CloseElement();
|
| 1036 |
|
| 1037 | printer.OpenElement("double");
|
| 1038 | printer.PushText("12.12");
|
| 1039 | printer.CloseElement();
|
| 1040 |
|
| 1041 | printer.OpenElement("comment");
|
| 1042 | printer.PushComment("this is Tinyxml2");
|
| 1043 | printer.CloseElement();
|
| 1044 |
|
| 1045 | printer.CloseElement();
|
| 1046 | fclose(fp1);
|
| 1047 | }
|
| 1048 | {
|
| 1049 | XMLDocument doc;
|
| 1050 | doc.LoadFile("resources/out/printer_1.xml");
|
| 1051 | XMLTest("XMLPrinter Stream mode: load", XML_SUCCESS, doc.ErrorID(), true);
|
| 1052 |
|
| 1053 | const XMLDocument& cdoc = doc;
|
| 1054 |
|
| 1055 | const XMLElement* root = cdoc.FirstChildElement("foo");
|
| 1056 |
|
| 1057 | const char* text_value;
|
| 1058 | text_value = root->FirstChildElement("text")->GetText();
|
| 1059 | XMLTest("PushText( const char* text, bool cdata=false ) test", "Tinyxml2", text_value);
|
| 1060 |
|
| 1061 | int int_value;
|
| 1062 | int_value = root->FirstChildElement("int")->IntText();
|
| 1063 | XMLTest("PushText( int value ) test", 11, int_value);
|
| 1064 |
|
| 1065 | unsigned unsigned_value;
|
| 1066 | unsigned_value = root->FirstChildElement("unsigned")->UnsignedText();
|
| 1067 | XMLTest("PushText( unsigned value ) test", (unsigned)12, unsigned_value);
|
| 1068 |
|
| 1069 | int64_t int64_t_value;
|
| 1070 | int64_t_value = root->FirstChildElement("int64_t")->Int64Text();
|
| 1071 | XMLTest("PushText( int64_t value ) test", (int64_t) 13, int64_t_value);
|
| 1072 |
|
| 1073 | uint64_t uint64_t_value;
|
| 1074 | uint64_t_value = root->FirstChildElement("uint64_t")->Unsigned64Text();
|
| 1075 | XMLTest("PushText( uint64_t value ) test", (uint64_t) 14, uint64_t_value);
|
| 1076 |
|
| 1077 | float float_value;
|
| 1078 | float_value = root->FirstChildElement("float")->FloatText();
|
| 1079 | XMLTest("PushText( float value ) test", 1.56f, float_value);
|
| 1080 |
|
| 1081 | double double_value;
|
| 1082 | double_value = root->FirstChildElement("double")->DoubleText();
|
| 1083 | XMLTest("PushText( double value ) test", 12.12, double_value);
|
| 1084 |
|
| 1085 | bool bool_value;
|
| 1086 | bool_value = root->FirstChildElement("bool")->BoolText();
|
| 1087 | XMLTest("PushText( bool value ) test", true, bool_value);
|
| 1088 |
|
| 1089 | const XMLComment* comment = root->FirstChildElement("comment")->FirstChild()->ToComment();
|
| 1090 | const char* comment_value = comment->Value();
|
| 1091 | XMLTest("PushComment() test", "this is Tinyxml2", comment_value);
|
| 1092 |
|
| 1093 | const XMLDeclaration* declaration = cdoc.FirstChild()->ToDeclaration();
|
| 1094 | const char* declaration_value = declaration->Value();
|
| 1095 | XMLTest("PushDeclaration() test", "version = '1.0' enconding = 'utf-8'", declaration_value);
|
| 1096 | }
|
Lee Thomason | 51c1271 | 2016-06-04 20:18:49 -0700 | [diff] [blame] | 1097 | }
|
| 1098 |
|
Uli Kusterer | 321072e | 2014-01-21 01:57:38 +0100 | [diff] [blame] | 1099 |
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1100 | // ---------- CDATA ---------------
|
| 1101 | {
|
| 1102 | const char* str = "<xmlElement>"
|
| 1103 | "<![CDATA["
|
| 1104 | "I am > the rules!\n"
|
| 1105 | "...since I make symbolic puns"
|
| 1106 | "]]>"
|
| 1107 | "</xmlElement>";
|
| 1108 | XMLDocument doc;
|
| 1109 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1110 | XMLTest( "CDATA symbolic puns round 1", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1111 | doc.Print();
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 1112 |
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1113 | XMLTest( "CDATA parse.", "I am > the rules!\n...since I make symbolic puns",
|
| 1114 | doc.FirstChildElement()->FirstChild()->Value(),
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 1115 | false );
|
| 1116 | }
|
| 1117 |
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1118 | // ----------- CDATA -------------
|
| 1119 | {
|
| 1120 | const char* str = "<xmlElement>"
|
| 1121 | "<![CDATA["
|
| 1122 | "<b>I am > the rules!</b>\n"
|
| 1123 | "...since I make symbolic puns"
|
| 1124 | "]]>"
|
| 1125 | "</xmlElement>";
|
| 1126 | XMLDocument doc;
|
| 1127 | doc.Parse( str );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1128 | XMLTest( "CDATA symbolic puns round 2", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1129 | doc.Print();
|
| 1130 |
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1131 | XMLTest( "CDATA parse. [ tixml1:1480107 ]",
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1132 | "<b>I am > the rules!</b>\n...since I make symbolic puns",
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1133 | doc.FirstChildElement()->FirstChild()->Value(),
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1134 | false );
|
| 1135 | }
|
| 1136 |
|
| 1137 | // InsertAfterChild causes crash.
|
| 1138 | {
|
| 1139 | // InsertBeforeChild and InsertAfterChild causes crash.
|
| 1140 | XMLDocument doc;
|
| 1141 | XMLElement* parent = doc.NewElement( "Parent" );
|
| 1142 | doc.InsertFirstChild( parent );
|
| 1143 |
|
| 1144 | XMLElement* childText0 = doc.NewElement( "childText0" );
|
| 1145 | XMLElement* childText1 = doc.NewElement( "childText1" );
|
| 1146 |
|
| 1147 | XMLNode* childNode0 = parent->InsertEndChild( childText0 );
|
Dmitry-Me | 8e06370 | 2017-08-01 17:40:40 +0300 | [diff] [blame] | 1148 | XMLTest( "InsertEndChild() return", true, childNode0 == childText0 );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1149 | XMLNode* childNode1 = parent->InsertAfterChild( childNode0, childText1 );
|
Dmitry-Me | 8e06370 | 2017-08-01 17:40:40 +0300 | [diff] [blame] | 1150 | XMLTest( "InsertAfterChild() return", true, childNode1 == childText1 );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1151 |
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1152 | XMLTest( "Test InsertAfterChild on empty node. ", true, ( childNode1 == parent->LastChild() ) );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1153 | }
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 1154 |
|
| 1155 | {
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1156 | // Entities not being written correctly.
|
| 1157 | // From Lynn Allen
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 1158 |
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1159 | const char* passages =
|
| 1160 | "<?xml version=\"1.0\" standalone=\"no\" ?>"
|
| 1161 | "<passages count=\"006\" formatversion=\"20020620\">"
|
| 1162 | "<psg context=\"Line 5 has "quotation marks" and 'apostrophe marks'."
|
| 1163 | " It also has <, >, and &, as well as a fake copyright ©.\"> </psg>"
|
| 1164 | "</passages>";
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 1165 |
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1166 | XMLDocument doc;
|
| 1167 | doc.Parse( passages );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1168 | XMLTest( "Entity transformation parse round 1", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1169 | XMLElement* psg = doc.RootElement()->FirstChildElement();
|
| 1170 | const char* context = psg->Attribute( "context" );
|
| 1171 | const char* expected = "Line 5 has \"quotation marks\" and 'apostrophe marks'. It also has <, >, and &, as well as a fake copyright \xC2\xA9.";
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 1172 |
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1173 | XMLTest( "Entity transformation: read. ", expected, context, true );
|
Lee Thomason | d627776 | 2012-02-22 16:00:12 -0800 | [diff] [blame] | 1174 |
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 1175 | const char* textFilePath = "resources/out/textfile.txt";
|
| 1176 | FILE* textfile = fopen( textFilePath, "w" );
|
| 1177 | XMLTest( "Entity transformation: open text file for writing", true, textfile != 0, true );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1178 | if ( textfile )
|
| 1179 | {
|
Lee Thomason (grinliz) | 2a1cd27 | 2012-02-24 17:37:53 -0800 | [diff] [blame] | 1180 | XMLPrinter streamer( textfile );
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 1181 | bool acceptResult = psg->Accept( &streamer );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1182 | fclose( textfile );
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 1183 | XMLTest( "Entity transformation: Accept", true, acceptResult );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1184 | }
|
Thomas Roß | 0922b73 | 2012-09-23 16:31:22 +0200 | [diff] [blame] | 1185 |
|
Dmitry-Me | 520009e | 2017-08-10 17:50:03 +0300 | [diff] [blame] | 1186 | textfile = fopen( textFilePath, "r" );
|
| 1187 | XMLTest( "Entity transformation: open text file for reading", true, textfile != 0, true );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1188 | if ( textfile )
|
| 1189 | {
|
| 1190 | char buf[ 1024 ];
|
| 1191 | fgets( buf, 1024, textfile );
|
| 1192 | XMLTest( "Entity transformation: write. ",
|
| 1193 | "<psg context=\"Line 5 has "quotation marks" and 'apostrophe marks'."
|
| 1194 | " It also has <, >, and &, as well as a fake copyright \xC2\xA9.\"/>\n",
|
| 1195 | buf, false );
|
PKEuS | c28ba3a | 2012-07-16 03:08:47 -0700 | [diff] [blame] | 1196 | fclose( textfile );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1197 | }
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1198 | }
|
| 1199 |
|
| 1200 | {
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 1201 | // Suppress entities.
|
| 1202 | const char* passages =
|
| 1203 | "<?xml version=\"1.0\" standalone=\"no\" ?>"
|
| 1204 | "<passages count=\"006\" formatversion=\"20020620\">"
|
| 1205 | "<psg context=\"Line 5 has "quotation marks" and 'apostrophe marks'.\">Crazy &ttk;</psg>"
|
| 1206 | "</passages>";
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1207 |
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 1208 | XMLDocument doc( false );
|
| 1209 | doc.Parse( passages );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1210 | XMLTest( "Entity transformation parse round 2", false, doc.Error() );
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 1211 |
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1212 | XMLTest( "No entity parsing.",
|
| 1213 | "Line 5 has "quotation marks" and 'apostrophe marks'.",
|
| 1214 | doc.FirstChildElement()->FirstChildElement()->Attribute( "context" ) );
|
| 1215 | XMLTest( "No entity parsing.", "Crazy &ttk;",
|
| 1216 | doc.FirstChildElement()->FirstChildElement()->FirstChild()->Value() );
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 1217 | doc.Print();
|
| 1218 | }
|
| 1219 |
|
| 1220 | {
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 1221 | const char* test = "<?xml version='1.0'?><a.elem xmi.version='2.0'/>";
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1222 |
|
| 1223 | XMLDocument doc;
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 1224 | doc.Parse( test );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1225 | XMLTest( "dot in names", false, doc.Error() );
|
| 1226 | XMLTest( "dot in names", "a.elem", doc.FirstChildElement()->Name() );
|
| 1227 | XMLTest( "dot in names", "2.0", doc.FirstChildElement()->Attribute( "xmi.version" ) );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1228 | }
|
| 1229 |
|
| 1230 | {
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 1231 | const char* test = "<element><Name>1.1 Start easy ignore fin thickness
</Name></element>";
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1232 |
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 1233 | XMLDocument doc;
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1234 | doc.Parse( test );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1235 | XMLTest( "fin thickness", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1236 |
|
| 1237 | XMLText* text = doc.FirstChildElement()->FirstChildElement()->FirstChild()->ToText();
|
| 1238 | XMLTest( "Entity with one digit.",
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1239 | "1.1 Start easy ignore fin thickness\n", text->Value(),
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1240 | false );
|
Arkadiy Shapkin | ef1c69c | 2012-07-25 22:10:39 +0400 | [diff] [blame] | 1241 | }
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1242 |
|
| 1243 | {
|
| 1244 | // DOCTYPE not preserved (950171)
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1245 | //
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1246 | const char* doctype =
|
| 1247 | "<?xml version=\"1.0\" ?>"
|
| 1248 | "<!DOCTYPE PLAY SYSTEM 'play.dtd'>"
|
| 1249 | "<!ELEMENT title (#PCDATA)>"
|
| 1250 | "<!ELEMENT books (title,authors)>"
|
| 1251 | "<element />";
|
| 1252 |
|
| 1253 | XMLDocument doc;
|
| 1254 | doc.Parse( doctype );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1255 | XMLTest( "PLAY SYSTEM parse", false, doc.Error() );
|
Arkadiy Shapkin | ff72d1f | 2012-07-24 00:24:07 +0400 | [diff] [blame] | 1256 | doc.SaveFile( "resources/out/test7.xml" );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1257 | XMLTest( "PLAY SYSTEM save", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1258 | doc.DeleteChild( doc.RootElement() );
|
Arkadiy Shapkin | ff72d1f | 2012-07-24 00:24:07 +0400 | [diff] [blame] | 1259 | doc.LoadFile( "resources/out/test7.xml" );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1260 | XMLTest( "PLAY SYSTEM load", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1261 | doc.Print();
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1262 |
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1263 | const XMLUnknown* decl = doc.FirstChild()->NextSibling()->ToUnknown();
|
| 1264 | XMLTest( "Correct value of unknown.", "DOCTYPE PLAY SYSTEM 'play.dtd'", decl->Value() );
|
| 1265 |
|
| 1266 | }
|
| 1267 |
|
| 1268 | {
|
| 1269 | // Comments do not stream out correctly.
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1270 | const char* doctype =
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1271 | "<!-- Somewhat<evil> -->";
|
| 1272 | XMLDocument doc;
|
| 1273 | doc.Parse( doctype );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1274 | XMLTest( "Comment somewhat evil", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1275 |
|
| 1276 | XMLComment* comment = doc.FirstChild()->ToComment();
|
| 1277 |
|
| 1278 | XMLTest( "Comment formatting.", " Somewhat<evil> ", comment->Value() );
|
| 1279 | }
|
| 1280 | {
|
| 1281 | // Double attributes
|
| 1282 | const char* doctype = "<element attr='red' attr='blue' />";
|
| 1283 |
|
| 1284 | XMLDocument doc;
|
| 1285 | doc.Parse( doctype );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1286 |
|
Lee Thomason | 2fa8172 | 2012-11-09 12:37:46 -0800 | [diff] [blame] | 1287 | XMLTest( "Parsing repeated attributes.", XML_ERROR_PARSING_ATTRIBUTE, doc.ErrorID() ); // is an error to tinyxml (didn't use to be, but caused issues)
|
Lee Thomason (grinliz) | 0a4df40 | 2012-02-27 20:50:52 -0800 | [diff] [blame] | 1288 | doc.PrintError();
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1289 | }
|
| 1290 |
|
| 1291 | {
|
| 1292 | // Embedded null in stream.
|
| 1293 | const char* doctype = "<element att\0r='red' attr='blue' />";
|
| 1294 |
|
| 1295 | XMLDocument doc;
|
| 1296 | doc.Parse( doctype );
|
| 1297 | XMLTest( "Embedded null throws error.", true, doc.Error() );
|
| 1298 | }
|
| 1299 |
|
| 1300 | {
|
Guillermo A. Amaral | 2eb7003 | 2012-03-20 11:26:57 -0700 | [diff] [blame] | 1301 | // Empty documents should return TIXML_XML_ERROR_PARSING_EMPTY, bug 1070717
|
Dmitry-Me | 588bb8d | 2014-12-25 18:59:18 +0300 | [diff] [blame] | 1302 | const char* str = "";
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1303 | XMLDocument doc;
|
| 1304 | doc.Parse( str );
|
Lee Thomason | 2fa8172 | 2012-11-09 12:37:46 -0800 | [diff] [blame] | 1305 | XMLTest( "Empty document error", XML_ERROR_EMPTY_DOCUMENT, doc.ErrorID() );
|
Lee Thomason | a36f7ac | 2017-12-28 13:48:54 -0800 | [diff] [blame] | 1306 |
|
| 1307 | // But be sure there is an error string!
|
| 1308 | const char* errorStr = doc.ErrorStr();
|
| 1309 | XMLTest("Error string should be set",
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 1310 | "Error=XML_ERROR_EMPTY_DOCUMENT ErrorID=13 (0xd) Line number=0",
|
Lee Thomason | a36f7ac | 2017-12-28 13:48:54 -0800 | [diff] [blame] | 1311 | errorStr);
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1312 | }
|
| 1313 |
|
| 1314 | {
|
Dmitry-Me | 588bb8d | 2014-12-25 18:59:18 +0300 | [diff] [blame] | 1315 | // Documents with all whitespaces should return TIXML_XML_ERROR_PARSING_EMPTY, bug 1070717
|
| 1316 | const char* str = " ";
|
| 1317 | XMLDocument doc;
|
| 1318 | doc.Parse( str );
|
| 1319 | XMLTest( "All whitespaces document error", XML_ERROR_EMPTY_DOCUMENT, doc.ErrorID() );
|
| 1320 | }
|
| 1321 |
|
| 1322 | {
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1323 | // Low entities
|
| 1324 | XMLDocument doc;
|
| 1325 | doc.Parse( "<test></test>" );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1326 | XMLTest( "Hex values", false, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1327 | const char result[] = { 0x0e, 0 };
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1328 | XMLTest( "Low entities.", result, doc.FirstChildElement()->GetText() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1329 | doc.Print();
|
| 1330 | }
|
| 1331 |
|
| 1332 | {
|
| 1333 | // Attribute values with trailing quotes not handled correctly
|
| 1334 | XMLDocument doc;
|
| 1335 | doc.Parse( "<foo attribute=bar\" />" );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1336 | XMLTest( "Throw error with bad end quotes.", true, doc.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1337 | }
|
| 1338 |
|
| 1339 | {
|
| 1340 | // [ 1663758 ] Failure to report error on bad XML
|
| 1341 | XMLDocument xml;
|
| 1342 | xml.Parse("<x>");
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1343 | XMLTest("Missing end tag at end of input", true, xml.Error());
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1344 | xml.Parse("<x> ");
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1345 | XMLTest("Missing end tag with trailing whitespace", true, xml.Error());
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1346 | xml.Parse("<x></y>");
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1347 | XMLTest("Mismatched tags", XML_ERROR_MISMATCHED_ELEMENT, xml.ErrorID() );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1348 | }
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1349 |
|
| 1350 |
|
| 1351 | {
|
| 1352 | // [ 1475201 ] TinyXML parses entities in comments
|
| 1353 | XMLDocument xml;
|
| 1354 | xml.Parse("<!-- declarations for <head> & <body> -->"
|
| 1355 | "<!-- far & away -->" );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1356 | XMLTest( "Declarations for head and body", false, xml.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1357 |
|
| 1358 | XMLNode* e0 = xml.FirstChild();
|
| 1359 | XMLNode* e1 = e0->NextSibling();
|
| 1360 | XMLComment* c0 = e0->ToComment();
|
| 1361 | XMLComment* c1 = e1->ToComment();
|
| 1362 |
|
| 1363 | XMLTest( "Comments ignore entities.", " declarations for <head> & <body> ", c0->Value(), true );
|
| 1364 | XMLTest( "Comments ignore entities.", " far & away ", c1->Value(), true );
|
| 1365 | }
|
| 1366 |
|
| 1367 | {
|
| 1368 | XMLDocument xml;
|
| 1369 | xml.Parse( "<Parent>"
|
| 1370 | "<child1 att=''/>"
|
| 1371 | "<!-- With this comment, child2 will not be parsed! -->"
|
| 1372 | "<child2 att=''/>"
|
| 1373 | "</Parent>" );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1374 | XMLTest( "Comments iteration", false, xml.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1375 | xml.Print();
|
| 1376 |
|
| 1377 | int count = 0;
|
| 1378 |
|
| 1379 | for( XMLNode* ele = xml.FirstChildElement( "Parent" )->FirstChild();
|
| 1380 | ele;
|
| 1381 | ele = ele->NextSibling() )
|
| 1382 | {
|
| 1383 | ++count;
|
| 1384 | }
|
| 1385 |
|
| 1386 | XMLTest( "Comments iterate correctly.", 3, count );
|
| 1387 | }
|
| 1388 |
|
| 1389 | {
|
Alanscut | 8916a3c | 2019-09-16 17:03:12 +0800 | [diff] [blame] | 1390 | // trying to repro [1874301]. If it doesn't go into an infinite loop, all is well.
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1391 | unsigned char buf[] = "<?xml version=\"1.0\" encoding=\"utf-8\"?><feed><![CDATA[Test XMLblablablalblbl";
|
| 1392 | buf[60] = 239;
|
| 1393 | buf[61] = 0;
|
| 1394 |
|
| 1395 | XMLDocument doc;
|
| 1396 | doc.Parse( (const char*)buf);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1397 | XMLTest( "Broken CDATA", true, doc.Error() );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1398 | }
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1399 |
|
| 1400 |
|
| 1401 | {
|
| 1402 | // bug 1827248 Error while parsing a little bit malformed file
|
| 1403 | // Actually not malformed - should work.
|
| 1404 | XMLDocument xml;
|
| 1405 | xml.Parse( "<attributelist> </attributelist >" );
|
| 1406 | XMLTest( "Handle end tag whitespace", false, xml.Error() );
|
| 1407 | }
|
| 1408 |
|
| 1409 | {
|
| 1410 | // This one must not result in an infinite loop
|
| 1411 | XMLDocument xml;
|
| 1412 | xml.Parse( "<infinite>loop" );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1413 | XMLTest( "No closing element", true, xml.Error() );
|
Lee Thomason (grinliz) | 46a14cf | 2012-02-23 22:27:28 -0800 | [diff] [blame] | 1414 | XMLTest( "Infinite loop test.", true, true );
|
| 1415 | }
|
| 1416 | #endif
|
Lee Thomason | 7d00b9a | 2012-02-27 17:54:22 -0800 | [diff] [blame] | 1417 | {
|
| 1418 | const char* pub = "<?xml version='1.0'?> <element><sub/></element> <!--comment--> <!DOCTYPE>";
|
| 1419 | XMLDocument doc;
|
| 1420 | doc.Parse( pub );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1421 | XMLTest( "Trailing DOCTYPE", false, doc.Error() );
|
Lee Thomason | 7d00b9a | 2012-02-27 17:54:22 -0800 | [diff] [blame] | 1422 |
|
| 1423 | XMLDocument clone;
|
| 1424 | for( const XMLNode* node=doc.FirstChild(); node; node=node->NextSibling() ) {
|
| 1425 | XMLNode* copy = node->ShallowClone( &clone );
|
| 1426 | clone.InsertEndChild( copy );
|
| 1427 | }
|
| 1428 |
|
| 1429 | clone.Print();
|
| 1430 |
|
| 1431 | int count=0;
|
| 1432 | const XMLNode* a=clone.FirstChild();
|
| 1433 | const XMLNode* b=doc.FirstChild();
|
| 1434 | for( ; a && b; a=a->NextSibling(), b=b->NextSibling() ) {
|
| 1435 | ++count;
|
| 1436 | XMLTest( "Clone and Equal", true, a->ShallowEqual( b ));
|
| 1437 | }
|
| 1438 | XMLTest( "Clone and Equal", 4, count );
|
| 1439 | }
|
Lee Thomason (grinliz) | 2a1cd27 | 2012-02-24 17:37:53 -0800 | [diff] [blame] | 1440 |
|
Lee Thomason (grinliz) | a4a36ba | 2012-04-06 21:24:29 -0700 | [diff] [blame] | 1441 | {
|
Lee Thomason | 7085f00 | 2017-06-01 18:09:43 -0700 | [diff] [blame] | 1442 | // Deep Cloning of root element.
|
| 1443 | XMLDocument doc2;
|
| 1444 | XMLPrinter printer1;
|
| 1445 | {
|
| 1446 | // Make sure doc1 is deleted before we test doc2
|
| 1447 | const char* xml =
|
| 1448 | "<root>"
|
| 1449 | " <child1 foo='bar'/>"
|
| 1450 | " <!-- comment thing -->"
|
| 1451 | " <child2 val='1'>Text</child2>"
|
| 1452 | "</root>";
|
| 1453 | XMLDocument doc;
|
| 1454 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1455 | XMLTest( "Parse before deep cloning root element", false, doc.Error() );
|
Lee Thomason | 7085f00 | 2017-06-01 18:09:43 -0700 | [diff] [blame] | 1456 |
|
| 1457 | doc.Print(&printer1);
|
| 1458 | XMLNode* root = doc.RootElement()->DeepClone(&doc2);
|
| 1459 | doc2.InsertFirstChild(root);
|
| 1460 | }
|
| 1461 | XMLPrinter printer2;
|
| 1462 | doc2.Print(&printer2);
|
| 1463 |
|
| 1464 | XMLTest("Deep clone of element.", printer1.CStr(), printer2.CStr(), true);
|
| 1465 | }
|
| 1466 |
|
| 1467 | {
|
| 1468 | // Deep Cloning of sub element.
|
| 1469 | XMLDocument doc2;
|
| 1470 | XMLPrinter printer1;
|
| 1471 | {
|
| 1472 | // Make sure doc1 is deleted before we test doc2
|
| 1473 | const char* xml =
|
| 1474 | "<?xml version ='1.0'?>"
|
| 1475 | "<root>"
|
| 1476 | " <child1 foo='bar'/>"
|
| 1477 | " <!-- comment thing -->"
|
| 1478 | " <child2 val='1'>Text</child2>"
|
| 1479 | "</root>";
|
| 1480 | XMLDocument doc;
|
| 1481 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1482 | XMLTest( "Parse before deep cloning sub element", false, doc.Error() );
|
Lee Thomason | 7085f00 | 2017-06-01 18:09:43 -0700 | [diff] [blame] | 1483 |
|
| 1484 | const XMLElement* subElement = doc.FirstChildElement("root")->FirstChildElement("child2");
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 1485 | bool acceptResult = subElement->Accept(&printer1);
|
| 1486 | XMLTest( "Accept before deep cloning", true, acceptResult );
|
Lee Thomason | 7085f00 | 2017-06-01 18:09:43 -0700 | [diff] [blame] | 1487 |
|
| 1488 | XMLNode* clonedSubElement = subElement->DeepClone(&doc2);
|
| 1489 | doc2.InsertFirstChild(clonedSubElement);
|
| 1490 | }
|
| 1491 | XMLPrinter printer2;
|
| 1492 | doc2.Print(&printer2);
|
| 1493 |
|
| 1494 | XMLTest("Deep clone of sub-element.", printer1.CStr(), printer2.CStr(), true);
|
| 1495 | }
|
| 1496 |
|
| 1497 | {
|
| 1498 | // Deep cloning of document.
|
| 1499 | XMLDocument doc2;
|
| 1500 | XMLPrinter printer1;
|
| 1501 | {
|
| 1502 | // Make sure doc1 is deleted before we test doc2
|
| 1503 | const char* xml =
|
| 1504 | "<?xml version ='1.0'?>"
|
| 1505 | "<!-- Top level comment. -->"
|
| 1506 | "<root>"
|
| 1507 | " <child1 foo='bar'/>"
|
| 1508 | " <!-- comment thing -->"
|
| 1509 | " <child2 val='1'>Text</child2>"
|
| 1510 | "</root>";
|
| 1511 | XMLDocument doc;
|
| 1512 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1513 | XMLTest( "Parse before deep cloning document", false, doc.Error() );
|
Lee Thomason | 7085f00 | 2017-06-01 18:09:43 -0700 | [diff] [blame] | 1514 | doc.Print(&printer1);
|
| 1515 |
|
| 1516 | doc.DeepCopy(&doc2);
|
| 1517 | }
|
| 1518 | XMLPrinter printer2;
|
| 1519 | doc2.Print(&printer2);
|
| 1520 |
|
| 1521 | XMLTest("DeepCopy of document.", printer1.CStr(), printer2.CStr(), true);
|
| 1522 | }
|
| 1523 |
|
| 1524 |
|
| 1525 | {
|
Lee Thomason (grinliz) | a4a36ba | 2012-04-06 21:24:29 -0700 | [diff] [blame] | 1526 | // This shouldn't crash.
|
| 1527 | XMLDocument doc;
|
Lee Thomason | 8553625 | 2016-06-04 19:10:53 -0700 | [diff] [blame] | 1528 | if(XML_SUCCESS != doc.LoadFile( "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa" ))
|
Lee Thomason (grinliz) | a4a36ba | 2012-04-06 21:24:29 -0700 | [diff] [blame] | 1529 | {
|
| 1530 | doc.PrintError();
|
| 1531 | }
|
| 1532 | XMLTest( "Error in snprinf handling.", true, doc.Error() );
|
| 1533 | }
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1534 |
|
Lee Thomason | 5e3803c | 2012-04-16 08:57:05 -0700 | [diff] [blame] | 1535 | {
|
| 1536 | // Attribute ordering.
|
| 1537 | static const char* xml = "<element attrib1=\"1\" attrib2=\"2\" attrib3=\"3\" />";
|
| 1538 | XMLDocument doc;
|
| 1539 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1540 | XMLTest( "Parse for attribute ordering", false, doc.Error() );
|
Lee Thomason | 5e3803c | 2012-04-16 08:57:05 -0700 | [diff] [blame] | 1541 | XMLElement* ele = doc.FirstChildElement();
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1542 |
|
Lee Thomason | 5e3803c | 2012-04-16 08:57:05 -0700 | [diff] [blame] | 1543 | const XMLAttribute* a = ele->FirstAttribute();
|
| 1544 | XMLTest( "Attribute order", "1", a->Value() );
|
| 1545 | a = a->Next();
|
| 1546 | XMLTest( "Attribute order", "2", a->Value() );
|
| 1547 | a = a->Next();
|
| 1548 | XMLTest( "Attribute order", "3", a->Value() );
|
| 1549 | XMLTest( "Attribute order", "attrib3", a->Name() );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1550 |
|
Lee Thomason | 5e3803c | 2012-04-16 08:57:05 -0700 | [diff] [blame] | 1551 | ele->DeleteAttribute( "attrib2" );
|
| 1552 | a = ele->FirstAttribute();
|
| 1553 | XMLTest( "Attribute order", "1", a->Value() );
|
| 1554 | a = a->Next();
|
| 1555 | XMLTest( "Attribute order", "3", a->Value() );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1556 |
|
Lee Thomason | 5e3803c | 2012-04-16 08:57:05 -0700 | [diff] [blame] | 1557 | ele->DeleteAttribute( "attrib1" );
|
| 1558 | ele->DeleteAttribute( "attrib3" );
|
Dmitry-Me | bc6920b | 2017-08-03 18:46:31 +0300 | [diff] [blame] | 1559 | XMLTest( "Attribute order (empty)", true, ele->FirstAttribute() == 0 );
|
Lee Thomason | 5e3803c | 2012-04-16 08:57:05 -0700 | [diff] [blame] | 1560 | }
|
Lee Thomason (grinliz) | a4a36ba | 2012-04-06 21:24:29 -0700 | [diff] [blame] | 1561 |
|
Lee Thomason (grinliz) | 390e978 | 2012-07-01 21:22:53 -0700 | [diff] [blame] | 1562 | {
|
| 1563 | // Make sure an attribute with a space in it succeeds.
|
Lee Thomason | 78a773d | 2012-07-02 10:10:19 -0700 | [diff] [blame] | 1564 | static const char* xml0 = "<element attribute1= \"Test Attribute\"/>";
|
| 1565 | static const char* xml1 = "<element attribute1 =\"Test Attribute\"/>";
|
| 1566 | static const char* xml2 = "<element attribute1 = \"Test Attribute\"/>";
|
| 1567 | XMLDocument doc0;
|
| 1568 | doc0.Parse( xml0 );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1569 | XMLTest( "Parse attribute with space 1", false, doc0.Error() );
|
Lee Thomason | 78a773d | 2012-07-02 10:10:19 -0700 | [diff] [blame] | 1570 | XMLDocument doc1;
|
| 1571 | doc1.Parse( xml1 );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1572 | XMLTest( "Parse attribute with space 2", false, doc1.Error() );
|
Lee Thomason | 78a773d | 2012-07-02 10:10:19 -0700 | [diff] [blame] | 1573 | XMLDocument doc2;
|
| 1574 | doc2.Parse( xml2 );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1575 | XMLTest( "Parse attribute with space 3", false, doc2.Error() );
|
Lee Thomason (grinliz) | 390e978 | 2012-07-01 21:22:53 -0700 | [diff] [blame] | 1576 |
|
Lee Thomason | 78a773d | 2012-07-02 10:10:19 -0700 | [diff] [blame] | 1577 | XMLElement* ele = 0;
|
| 1578 | ele = doc0.FirstChildElement();
|
| 1579 | XMLTest( "Attribute with space #1", "Test Attribute", ele->Attribute( "attribute1" ) );
|
| 1580 | ele = doc1.FirstChildElement();
|
| 1581 | XMLTest( "Attribute with space #2", "Test Attribute", ele->Attribute( "attribute1" ) );
|
| 1582 | ele = doc2.FirstChildElement();
|
| 1583 | XMLTest( "Attribute with space #3", "Test Attribute", ele->Attribute( "attribute1" ) );
|
Lee Thomason (grinliz) | 390e978 | 2012-07-01 21:22:53 -0700 | [diff] [blame] | 1584 | }
|
| 1585 |
|
| 1586 | {
|
| 1587 | // Make sure we don't go into an infinite loop.
|
| 1588 | static const char* xml = "<doc><element attribute='attribute'/><element attribute='attribute'/></doc>";
|
| 1589 | XMLDocument doc;
|
| 1590 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1591 | XMLTest( "Parse two elements with attribute", false, doc.Error() );
|
Lee Thomason (grinliz) | 390e978 | 2012-07-01 21:22:53 -0700 | [diff] [blame] | 1592 | XMLElement* ele0 = doc.FirstChildElement()->FirstChildElement();
|
| 1593 | XMLElement* ele1 = ele0->NextSiblingElement();
|
| 1594 | bool equal = ele0->ShallowEqual( ele1 );
|
| 1595 |
|
| 1596 | XMLTest( "Infinite loop in shallow equal.", true, equal );
|
| 1597 | }
|
| 1598 |
|
Lee Thomason | 5708f81 | 2012-03-28 17:46:41 -0700 | [diff] [blame] | 1599 | // -------- Handles ------------
|
| 1600 | {
|
| 1601 | static const char* xml = "<element attrib='bar'><sub>Text</sub></element>";
|
| 1602 | XMLDocument doc;
|
| 1603 | doc.Parse( xml );
|
Dmitry-Me | 938560f | 2018-03-15 01:30:39 +0300 | [diff] [blame] | 1604 | XMLTest( "Handle, parse element with attribute and nested element", false, doc.Error() );
|
Lee Thomason | 5708f81 | 2012-03-28 17:46:41 -0700 | [diff] [blame] | 1605 |
|
Dmitry-Me | 938560f | 2018-03-15 01:30:39 +0300 | [diff] [blame] | 1606 | {
|
| 1607 | XMLElement* ele = XMLHandle( doc ).FirstChildElement( "element" ).FirstChild().ToElement();
|
| 1608 | XMLTest( "Handle, non-const, element is found", true, ele != 0 );
|
| 1609 | XMLTest( "Handle, non-const, element name matches", "sub", ele->Value() );
|
| 1610 | }
|
Lee Thomason | 5708f81 | 2012-03-28 17:46:41 -0700 | [diff] [blame] | 1611 |
|
Dmitry-Me | 938560f | 2018-03-15 01:30:39 +0300 | [diff] [blame] | 1612 | {
|
| 1613 | XMLHandle docH( doc );
|
| 1614 | XMLElement* ele = docH.FirstChildElement( "noSuchElement" ).FirstChildElement( "element" ).ToElement();
|
| 1615 | XMLTest( "Handle, non-const, element not found", true, ele == 0 );
|
| 1616 | }
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1617 |
|
Dmitry-Me | 938560f | 2018-03-15 01:30:39 +0300 | [diff] [blame] | 1618 | {
|
| 1619 | const XMLElement* ele = XMLConstHandle( doc ).FirstChildElement( "element" ).FirstChild().ToElement();
|
| 1620 | XMLTest( "Handle, const, element is found", true, ele != 0 );
|
| 1621 | XMLTest( "Handle, const, element name matches", "sub", ele->Value() );
|
| 1622 | }
|
Lee Thomason (grinliz) | ae209f6 | 2012-04-04 22:00:07 -0700 | [diff] [blame] | 1623 |
|
Dmitry-Me | 938560f | 2018-03-15 01:30:39 +0300 | [diff] [blame] | 1624 | {
|
| 1625 | XMLConstHandle docH( doc );
|
| 1626 | const XMLElement* ele = docH.FirstChildElement( "noSuchElement" ).FirstChildElement( "element" ).ToElement();
|
| 1627 | XMLTest( "Handle, const, element not found", true, ele == 0 );
|
| 1628 | }
|
Lee Thomason (grinliz) | ae209f6 | 2012-04-04 22:00:07 -0700 | [diff] [blame] | 1629 | }
|
Lee Thomason | f68c438 | 2012-04-28 14:37:11 -0700 | [diff] [blame] | 1630 | {
|
| 1631 | // Default Declaration & BOM
|
| 1632 | XMLDocument doc;
|
| 1633 | doc.InsertEndChild( doc.NewDeclaration() );
|
| 1634 | doc.SetBOM( true );
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1635 |
|
Lee Thomason | f68c438 | 2012-04-28 14:37:11 -0700 | [diff] [blame] | 1636 | XMLPrinter printer;
|
| 1637 | doc.Print( &printer );
|
| 1638 |
|
| 1639 | static const char* result = "\xef\xbb\xbf<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1640 | XMLTest( "BOM and default declaration", result, printer.CStr(), false );
|
| 1641 | XMLTest( "CStrSize", 42, printer.CStrSize(), false );
|
Lee Thomason | f68c438 | 2012-04-28 14:37:11 -0700 | [diff] [blame] | 1642 | }
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 1643 | {
|
| 1644 | const char* xml = "<ipxml ws='1'><info bla=' /></ipxml>";
|
| 1645 | XMLDocument doc;
|
| 1646 | doc.Parse( xml );
|
| 1647 | XMLTest( "Ill formed XML", true, doc.Error() );
|
| 1648 | }
|
| 1649 |
|
Lee Thomason | 50daa32 | 2019-08-10 18:00:57 -0700 | [diff] [blame] | 1650 | {
|
| 1651 | //API:IntText(),UnsignedText(),Int64Text(),DoubleText(),BoolText() and FloatText() test
|
| 1652 | const char* xml = "<point> <IntText>-24</IntText> <UnsignedText>42</UnsignedText> \
|
wangkirin | f12d7a2 | 2019-07-02 16:58:38 +0800 | [diff] [blame] | 1653 | <Int64Text>38</Int64Text> <BoolText>true</BoolText> <DoubleText>2.35</DoubleText> </point>";
|
Lee Thomason | 50daa32 | 2019-08-10 18:00:57 -0700 | [diff] [blame] | 1654 | XMLDocument doc;
|
| 1655 | doc.Parse(xml);
|
| 1656 |
|
| 1657 | const XMLElement* pointElement = doc.RootElement();
|
| 1658 | int test1 = pointElement->FirstChildElement("IntText")->IntText();
|
| 1659 | XMLTest("IntText() test", -24, test1);
|
| 1660 |
|
| 1661 | unsigned test2 = pointElement->FirstChildElement("UnsignedText")->UnsignedText();
|
| 1662 | XMLTest("UnsignedText() test", static_cast<unsigned>(42), test2);
|
| 1663 |
|
| 1664 | int64_t test3 = pointElement->FirstChildElement("Int64Text")->Int64Text();
|
| 1665 | XMLTest("Int64Text() test", static_cast<int64_t>(38), test3);
|
| 1666 |
|
| 1667 | double test4 = pointElement->FirstChildElement("DoubleText")->DoubleText();
|
| 1668 | XMLTest("DoubleText() test", 2.35, test4);
|
| 1669 |
|
| 1670 | float test5 = pointElement->FirstChildElement("DoubleText")->FloatText();
|
| 1671 | XMLTest("FloatText()) test", 2.35f, test5);
|
| 1672 |
|
| 1673 | bool test6 = pointElement->FirstChildElement("BoolText")->BoolText();
|
| 1674 | XMLTest("FloatText()) test", true, test6);
|
| 1675 | }
|
wangkirin | f12d7a2 | 2019-07-02 16:58:38 +0800 | [diff] [blame] | 1676 |
|
netcan | dfb45cb | 2020-02-15 21:35:58 +0800 | [diff] [blame] | 1677 | {
|
Lee Thomason | 18468b8 | 2020-06-13 17:35:21 -0700 | [diff] [blame^] | 1678 | // hex value test
|
| 1679 | const char* xml = "<point> <IntText> 0x2020</IntText> <UnsignedText>0X2020</UnsignedText> \
|
| 1680 | <Int64Text> 0x1234</Int64Text></point>";
|
netcan | dfb45cb | 2020-02-15 21:35:58 +0800 | [diff] [blame] | 1681 | XMLDocument doc;
|
| 1682 | doc.Parse(xml);
|
| 1683 |
|
| 1684 | const XMLElement* pointElement = doc.RootElement();
|
| 1685 | int test1 = pointElement->FirstChildElement("IntText")->IntText();
|
Lee Thomason | 18468b8 | 2020-06-13 17:35:21 -0700 | [diff] [blame^] | 1686 | XMLTest("IntText() hex value test", 0x2020, test1);
|
netcan | dfb45cb | 2020-02-15 21:35:58 +0800 | [diff] [blame] | 1687 |
|
| 1688 | unsigned test2 = pointElement->FirstChildElement("UnsignedText")->UnsignedText();
|
| 1689 | XMLTest("UnsignedText() hex value test", static_cast<unsigned>(0x2020), test2);
|
| 1690 |
|
| 1691 | int64_t test3 = pointElement->FirstChildElement("Int64Text")->Int64Text();
|
Lee Thomason | 18468b8 | 2020-06-13 17:35:21 -0700 | [diff] [blame^] | 1692 | XMLTest("Int64Text() hex value test", static_cast<int64_t>(0x1234), test3);
|
netcan | dfb45cb | 2020-02-15 21:35:58 +0800 | [diff] [blame] | 1693 | }
|
| 1694 |
|
wangkirin | f12d7a2 | 2019-07-02 16:58:38 +0800 | [diff] [blame] | 1695 | {
|
| 1696 | //API:ShallowEqual() test
|
| 1697 | const char* xml = "<playlist id = 'playlist'>"
|
| 1698 | "<property name = 'track_name'>voice</property>"
|
| 1699 | "</playlist>";
|
| 1700 | XMLDocument doc;
|
| 1701 | doc.Parse( xml );
|
| 1702 | const XMLNode* PlaylistNode = doc.RootElement();
|
| 1703 | const XMLNode* PropertyNode = PlaylistNode->FirstChildElement();
|
| 1704 | bool result;
|
| 1705 | result = PlaylistNode->ShallowEqual(PropertyNode);
|
| 1706 | XMLTest("ShallowEqual() test",false,result);
|
| 1707 | result = PlaylistNode->ShallowEqual(PlaylistNode);
|
| 1708 | XMLTest("ShallowEqual() test",true,result);
|
| 1709 | }
|
| 1710 |
|
| 1711 | {
|
| 1712 | //API: previousSiblingElement() and NextSiblingElement() test
|
| 1713 | const char* xml = "<playlist id = 'playlist'>"
|
| 1714 | "<property name = 'track_name'>voice</property>"
|
| 1715 | "<entry out = '946' producer = '2_playlist1' in = '0'/>"
|
| 1716 | "<blank length = '1'/>"
|
| 1717 | "</playlist>";
|
| 1718 | XMLDocument doc;
|
| 1719 | doc.Parse( xml );
|
| 1720 | XMLElement* ElementPlaylist = doc.FirstChildElement("playlist");
|
| 1721 | XMLTest("previousSiblingElement() test",true,ElementPlaylist != 0);
|
| 1722 | const XMLElement* pre = ElementPlaylist->PreviousSiblingElement();
|
| 1723 | XMLTest("previousSiblingElement() test",true,pre == 0);
|
| 1724 | const XMLElement* ElementBlank = ElementPlaylist->FirstChildElement("entry")->NextSiblingElement("blank");
|
| 1725 | XMLTest("NextSiblingElement() test",true,ElementBlank != 0);
|
| 1726 | const XMLElement* next = ElementBlank->NextSiblingElement();
|
| 1727 | XMLTest("NextSiblingElement() test",true,next == 0);
|
| 1728 | const XMLElement* ElementEntry = ElementBlank->PreviousSiblingElement("entry");
|
| 1729 | XMLTest("PreviousSiblingElement test",true,ElementEntry != 0);
|
| 1730 | }
|
| 1731 |
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 1732 | // QueryXYZText
|
| 1733 | {
|
| 1734 | const char* xml = "<point> <x>1.2</x> <y>1</y> <z>38</z> <valid>true</valid> </point>";
|
| 1735 | XMLDocument doc;
|
| 1736 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1737 | XMLTest( "Parse points", false, doc.Error() );
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 1738 |
|
| 1739 | const XMLElement* pointElement = doc.RootElement();
|
| 1740 |
|
Dmitry-Me | 43c019d | 2017-08-02 18:05:23 +0300 | [diff] [blame] | 1741 | {
|
| 1742 | int intValue = 0;
|
| 1743 | XMLError queryResult = pointElement->FirstChildElement( "y" )->QueryIntText( &intValue );
|
| 1744 | XMLTest( "QueryIntText result", XML_SUCCESS, queryResult, false );
|
| 1745 | XMLTest( "QueryIntText", 1, intValue, false );
|
| 1746 | }
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 1747 |
|
Dmitry-Me | 43c019d | 2017-08-02 18:05:23 +0300 | [diff] [blame] | 1748 | {
|
| 1749 | unsigned unsignedValue = 0;
|
| 1750 | XMLError queryResult = pointElement->FirstChildElement( "y" )->QueryUnsignedText( &unsignedValue );
|
| 1751 | XMLTest( "QueryUnsignedText result", XML_SUCCESS, queryResult, false );
|
| 1752 | XMLTest( "QueryUnsignedText", (unsigned)1, unsignedValue, false );
|
| 1753 | }
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 1754 |
|
Dmitry-Me | 43c019d | 2017-08-02 18:05:23 +0300 | [diff] [blame] | 1755 | {
|
| 1756 | float floatValue = 0;
|
| 1757 | XMLError queryResult = pointElement->FirstChildElement( "x" )->QueryFloatText( &floatValue );
|
| 1758 | XMLTest( "QueryFloatText result", XML_SUCCESS, queryResult, false );
|
| 1759 | XMLTest( "QueryFloatText", 1.2f, floatValue, false );
|
| 1760 | }
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 1761 |
|
Dmitry-Me | 43c019d | 2017-08-02 18:05:23 +0300 | [diff] [blame] | 1762 | {
|
| 1763 | double doubleValue = 0;
|
| 1764 | XMLError queryResult = pointElement->FirstChildElement( "x" )->QueryDoubleText( &doubleValue );
|
| 1765 | XMLTest( "QueryDoubleText result", XML_SUCCESS, queryResult, false );
|
| 1766 | XMLTest( "QueryDoubleText", 1.2, doubleValue, false );
|
| 1767 | }
|
| 1768 |
|
| 1769 | {
|
| 1770 | bool boolValue = false;
|
| 1771 | XMLError queryResult = pointElement->FirstChildElement( "valid" )->QueryBoolText( &boolValue );
|
| 1772 | XMLTest( "QueryBoolText result", XML_SUCCESS, queryResult, false );
|
| 1773 | XMLTest( "QueryBoolText", true, boolValue, false );
|
| 1774 | }
|
Lee Thomason | 21be882 | 2012-07-15 17:27:22 -0700 | [diff] [blame] | 1775 | }
|
Lee Thomason (grinliz) | ae209f6 | 2012-04-04 22:00:07 -0700 | [diff] [blame] | 1776 |
|
Lee Thomason (grinliz) | 5fbacbe | 2012-09-08 21:40:53 -0700 | [diff] [blame] | 1777 | {
|
| 1778 | const char* xml = "<element><_sub/><:sub/><sub:sub/><sub-sub/></element>";
|
| 1779 | XMLDocument doc;
|
| 1780 | doc.Parse( xml );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1781 | XMLTest( "Non-alpha element lead letter parses.", false, doc.Error() );
|
Lee Thomason (grinliz) | 5fbacbe | 2012-09-08 21:40:53 -0700 | [diff] [blame] | 1782 | }
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 1783 |
|
Martinsh Shaiters | 23e7ae6 | 2013-01-26 20:15:44 +0200 | [diff] [blame] | 1784 | {
|
| 1785 | const char* xml = "<element _attr1=\"foo\" :attr2=\"bar\"></element>";
|
| 1786 | XMLDocument doc;
|
Martinsh Shaiters | 95b3e65 | 2013-01-26 23:08:10 +0200 | [diff] [blame] | 1787 | doc.Parse( xml );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1788 | XMLTest("Non-alpha attribute lead character parses.", false, doc.Error());
|
Martinsh Shaiters | 23e7ae6 | 2013-01-26 20:15:44 +0200 | [diff] [blame] | 1789 | }
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 1790 |
|
Martinsh Shaiters | 95b3e65 | 2013-01-26 23:08:10 +0200 | [diff] [blame] | 1791 | {
|
| 1792 | const char* xml = "<3lement></3lement>";
|
| 1793 | XMLDocument doc;
|
| 1794 | doc.Parse( xml );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1795 | XMLTest("Element names with lead digit fail to parse.", true, doc.Error());
|
Martinsh Shaiters | 95b3e65 | 2013-01-26 23:08:10 +0200 | [diff] [blame] | 1796 | }
|
Lee Thomason (grinliz) | 62d1c5a | 2012-09-08 21:44:12 -0700 | [diff] [blame] | 1797 |
|
Lee Thomason (grinliz) | e2bcb32 | 2012-09-17 17:58:25 -0700 | [diff] [blame] | 1798 | {
|
| 1799 | const char* xml = "<element/>WOA THIS ISN'T GOING TO PARSE";
|
| 1800 | XMLDocument doc;
|
| 1801 | doc.Parse( xml, 10 );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1802 | XMLTest( "Set length of incoming data", false, doc.Error() );
|
Lee Thomason (grinliz) | e2bcb32 | 2012-09-17 17:58:25 -0700 | [diff] [blame] | 1803 | }
|
| 1804 |
|
Martinsh Shaiters | 53ab79a | 2013-01-30 11:21:36 +0200 | [diff] [blame] | 1805 | {
|
| 1806 | XMLDocument doc;
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1807 | XMLTest( "Document is initially empty", true, doc.NoChildren() );
|
Dmitry-Me | 48b5df0 | 2015-04-06 18:20:25 +0300 | [diff] [blame] | 1808 | doc.Clear();
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1809 | XMLTest( "Empty is empty after Clear()", true, doc.NoChildren() );
|
Martinsh Shaiters | 53ab79a | 2013-01-30 11:21:36 +0200 | [diff] [blame] | 1810 | doc.LoadFile( "resources/dream.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 1811 | XMLTest( "Load dream.xml", false, doc.Error() );
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1812 | XMLTest( "Document has something to Clear()", false, doc.NoChildren() );
|
Martinsh Shaiters | 53ab79a | 2013-01-30 11:21:36 +0200 | [diff] [blame] | 1813 | doc.Clear();
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 1814 | XMLTest( "Document Clear()'s", true, doc.NoChildren() );
|
Martinsh Shaiters | 53ab79a | 2013-01-30 11:21:36 +0200 | [diff] [blame] | 1815 | }
|
Dmitry-Me | 985ea1f | 2017-08-28 18:36:29 +0300 | [diff] [blame] | 1816 |
|
| 1817 | {
|
| 1818 | XMLDocument doc;
|
| 1819 | XMLTest( "No error initially", false, doc.Error() );
|
| 1820 | XMLError error = doc.Parse( "This is not XML" );
|
| 1821 | XMLTest( "Error after invalid XML", true, doc.Error() );
|
| 1822 | XMLTest( "Error after invalid XML", error, doc.ErrorID() );
|
| 1823 | doc.Clear();
|
| 1824 | XMLTest( "No error after Clear()", false, doc.Error() );
|
| 1825 | }
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 1826 |
|
Lee Thomason (grinliz) | bc1bfb7 | 2012-08-20 22:00:38 -0700 | [diff] [blame] | 1827 | // ----------- Whitespace ------------
|
| 1828 | {
|
| 1829 | const char* xml = "<element>"
|
| 1830 | "<a> This \nis ' text ' </a>"
|
| 1831 | "<b> This is ' text ' \n</b>"
|
| 1832 | "<c>This is ' \n\n text '</c>"
|
| 1833 | "</element>";
|
| 1834 | XMLDocument doc( true, COLLAPSE_WHITESPACE );
|
| 1835 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1836 | XMLTest( "Parse with whitespace collapsing and &apos", false, doc.Error() );
|
Lee Thomason (grinliz) | bc1bfb7 | 2012-08-20 22:00:38 -0700 | [diff] [blame] | 1837 |
|
| 1838 | const XMLElement* element = doc.FirstChildElement();
|
| 1839 | for( const XMLElement* parent = element->FirstChildElement();
|
| 1840 | parent;
|
| 1841 | parent = parent->NextSiblingElement() )
|
| 1842 | {
|
| 1843 | XMLTest( "Whitespace collapse", "This is ' text '", parent->GetText() );
|
| 1844 | }
|
| 1845 | }
|
Lee Thomason (grinliz) | 0fa8299 | 2012-09-08 21:53:47 -0700 | [diff] [blame] | 1846 |
|
Lee Thomason | ae9ab07 | 2012-10-24 10:17:53 -0700 | [diff] [blame] | 1847 | #if 0
|
| 1848 | {
|
| 1849 | // Passes if assert doesn't fire.
|
| 1850 | XMLDocument xmlDoc;
|
| 1851 |
|
| 1852 | xmlDoc.NewDeclaration();
|
| 1853 | xmlDoc.NewComment("Configuration file");
|
| 1854 |
|
| 1855 | XMLElement *root = xmlDoc.NewElement("settings");
|
| 1856 | root->SetAttribute("version", 2);
|
| 1857 | }
|
| 1858 | #endif
|
| 1859 |
|
Lee Thomason (grinliz) | 0fa8299 | 2012-09-08 21:53:47 -0700 | [diff] [blame] | 1860 | {
|
| 1861 | const char* xml = "<element> </element>";
|
| 1862 | XMLDocument doc( true, COLLAPSE_WHITESPACE );
|
| 1863 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1864 | XMLTest( "Parse with all whitespaces", false, doc.Error() );
|
Lee Thomason (grinliz) | 0fa8299 | 2012-09-08 21:53:47 -0700 | [diff] [blame] | 1865 | XMLTest( "Whitespace all space", true, 0 == doc.FirstChildElement()->FirstChild() );
|
| 1866 | }
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 1867 |
|
Lee Thomason | 5b0a677 | 2012-11-19 13:54:42 -0800 | [diff] [blame] | 1868 | {
|
| 1869 | // An assert should not fire.
|
| 1870 | const char* xml = "<element/>";
|
| 1871 | XMLDocument doc;
|
| 1872 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1873 | XMLTest( "Parse with self-closed element", false, doc.Error() );
|
Lee Thomason | 5b0a677 | 2012-11-19 13:54:42 -0800 | [diff] [blame] | 1874 | XMLElement* ele = doc.NewElement( "unused" ); // This will get cleaned up with the 'doc' going out of scope.
|
| 1875 | XMLTest( "Tracking unused elements", true, ele != 0, false );
|
| 1876 | }
|
| 1877 |
|
Lee Thomason | a6412ac | 2012-12-13 15:39:11 -0800 | [diff] [blame] | 1878 |
|
| 1879 | {
|
| 1880 | const char* xml = "<parent><child>abc</child></parent>";
|
| 1881 | XMLDocument doc;
|
| 1882 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1883 | XMLTest( "Parse for printing of sub-element", false, doc.Error() );
|
Lee Thomason | a6412ac | 2012-12-13 15:39:11 -0800 | [diff] [blame] | 1884 | XMLElement* ele = doc.FirstChildElement( "parent")->FirstChildElement( "child");
|
| 1885 |
|
| 1886 | XMLPrinter printer;
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 1887 | bool acceptResult = ele->Accept( &printer );
|
| 1888 | XMLTest( "Accept of sub-element", true, acceptResult );
|
Lee Thomason | a6412ac | 2012-12-13 15:39:11 -0800 | [diff] [blame] | 1889 | XMLTest( "Printing of sub-element", "<child>abc</child>\n", printer.CStr(), false );
|
| 1890 | }
|
| 1891 |
|
| 1892 |
|
Vasily Biryukov | 1cfafd0 | 2013-04-20 14:12:33 +0600 | [diff] [blame] | 1893 | {
|
| 1894 | XMLDocument doc;
|
| 1895 | XMLError error = doc.LoadFile( "resources/empty.xml" );
|
| 1896 | XMLTest( "Loading an empty file", XML_ERROR_EMPTY_DOCUMENT, error );
|
Lee Thomason | 331596e | 2014-09-11 14:56:43 -0700 | [diff] [blame] | 1897 | XMLTest( "Loading an empty file and ErrorName as string", "XML_ERROR_EMPTY_DOCUMENT", doc.ErrorName() );
|
Lee Thomason | c755667 | 2014-09-14 12:39:42 -0700 | [diff] [blame] | 1898 | doc.PrintError();
|
Vasily Biryukov | 1cfafd0 | 2013-04-20 14:12:33 +0600 | [diff] [blame] | 1899 | }
|
| 1900 |
|
Lee Thomason (grinliz) | d0a38c3 | 2013-04-29 09:15:37 -0700 | [diff] [blame] | 1901 | {
|
| 1902 | // BOM preservation
|
| 1903 | static const char* xml_bom_preservation = "\xef\xbb\xbf<element/>\n";
|
| 1904 | {
|
| 1905 | XMLDocument doc;
|
Lee Thomason | 8553625 | 2016-06-04 19:10:53 -0700 | [diff] [blame] | 1906 | XMLTest( "BOM preservation (parse)", XML_SUCCESS, doc.Parse( xml_bom_preservation ), false );
|
Lee Thomason (grinliz) | d0a38c3 | 2013-04-29 09:15:37 -0700 | [diff] [blame] | 1907 | XMLPrinter printer;
|
| 1908 | doc.Print( &printer );
|
| 1909 |
|
| 1910 | XMLTest( "BOM preservation (compare)", xml_bom_preservation, printer.CStr(), false, true );
|
Wang Kirin | e08c2d2 | 2019-05-30 15:25:04 +0800 | [diff] [blame] | 1911 | doc.SaveFile( "resources/out/bomtest.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 1912 | XMLTest( "Save bomtest.xml", false, doc.Error() );
|
Lee Thomason (grinliz) | d0a38c3 | 2013-04-29 09:15:37 -0700 | [diff] [blame] | 1913 | }
|
| 1914 | {
|
| 1915 | XMLDocument doc;
|
Wang Kirin | e08c2d2 | 2019-05-30 15:25:04 +0800 | [diff] [blame] | 1916 | doc.LoadFile( "resources/out/bomtest.xml" );
|
Dmitry-Me | 46b70ce | 2017-07-10 17:54:24 +0300 | [diff] [blame] | 1917 | XMLTest( "Load bomtest.xml", false, doc.Error() );
|
Lee Thomason (grinliz) | d0a38c3 | 2013-04-29 09:15:37 -0700 | [diff] [blame] | 1918 | XMLTest( "BOM preservation (load)", true, doc.HasBOM(), false );
|
| 1919 |
|
| 1920 | XMLPrinter printer;
|
| 1921 | doc.Print( &printer );
|
| 1922 | XMLTest( "BOM preservation (compare)", xml_bom_preservation, printer.CStr(), false, true );
|
| 1923 | }
|
| 1924 | }
|
Vasily Biryukov | 1cfafd0 | 2013-04-20 14:12:33 +0600 | [diff] [blame] | 1925 |
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1926 | {
|
| 1927 | // Insertion with Removal
|
| 1928 | const char* xml = "<?xml version=\"1.0\" ?>"
|
| 1929 | "<root>"
|
| 1930 | "<one>"
|
| 1931 | "<subtree>"
|
| 1932 | "<elem>element 1</elem>text<!-- comment -->"
|
| 1933 | "</subtree>"
|
| 1934 | "</one>"
|
| 1935 | "<two/>"
|
| 1936 | "</root>";
|
| 1937 | const char* xmlInsideTwo = "<?xml version=\"1.0\" ?>"
|
| 1938 | "<root>"
|
| 1939 | "<one/>"
|
| 1940 | "<two>"
|
| 1941 | "<subtree>"
|
| 1942 | "<elem>element 1</elem>text<!-- comment -->"
|
| 1943 | "</subtree>"
|
| 1944 | "</two>"
|
| 1945 | "</root>";
|
| 1946 | const char* xmlAfterOne = "<?xml version=\"1.0\" ?>"
|
| 1947 | "<root>"
|
| 1948 | "<one/>"
|
| 1949 | "<subtree>"
|
| 1950 | "<elem>element 1</elem>text<!-- comment -->"
|
| 1951 | "</subtree>"
|
| 1952 | "<two/>"
|
| 1953 | "</root>";
|
| 1954 | const char* xmlAfterTwo = "<?xml version=\"1.0\" ?>"
|
| 1955 | "<root>"
|
| 1956 | "<one/>"
|
| 1957 | "<two/>"
|
| 1958 | "<subtree>"
|
| 1959 | "<elem>element 1</elem>text<!-- comment -->"
|
| 1960 | "</subtree>"
|
| 1961 | "</root>";
|
| 1962 |
|
| 1963 | XMLDocument doc;
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1964 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1965 | XMLTest( "Insertion with removal parse round 1", false, doc.Error() );
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1966 | XMLElement* subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree");
|
| 1967 | XMLElement* two = doc.RootElement()->FirstChildElement("two");
|
| 1968 | two->InsertFirstChild(subtree);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1969 | XMLPrinter printer1(0, true);
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 1970 | bool acceptResult = doc.Accept(&printer1);
|
| 1971 | XMLTest("Move node from within <one> to <two> - Accept()", true, acceptResult);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1972 | XMLTest("Move node from within <one> to <two>", xmlInsideTwo, printer1.CStr());
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1973 |
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1974 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1975 | XMLTest( "Insertion with removal parse round 2", false, doc.Error() );
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1976 | subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree");
|
| 1977 | two = doc.RootElement()->FirstChildElement("two");
|
| 1978 | doc.RootElement()->InsertAfterChild(two, subtree);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1979 | XMLPrinter printer2(0, true);
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 1980 | acceptResult = doc.Accept(&printer2);
|
| 1981 | XMLTest("Move node from within <one> after <two> - Accept()", true, acceptResult);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1982 | XMLTest("Move node from within <one> after <two>", xmlAfterTwo, printer2.CStr(), false);
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1983 |
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1984 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1985 | XMLTest( "Insertion with removal parse round 3", false, doc.Error() );
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1986 | XMLNode* one = doc.RootElement()->FirstChildElement("one");
|
| 1987 | subtree = one->FirstChildElement("subtree");
|
| 1988 | doc.RootElement()->InsertAfterChild(one, subtree);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1989 | XMLPrinter printer3(0, true);
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 1990 | acceptResult = doc.Accept(&printer3);
|
| 1991 | XMLTest("Move node from within <one> after <one> - Accept()", true, acceptResult);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1992 | XMLTest("Move node from within <one> after <one>", xmlAfterOne, printer3.CStr(), false);
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1993 |
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 1994 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 1995 | XMLTest( "Insertion with removal parse round 4", false, doc.Error() );
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1996 | subtree = doc.RootElement()->FirstChildElement("one")->FirstChildElement("subtree");
|
| 1997 | two = doc.RootElement()->FirstChildElement("two");
|
Dmitry-Me | 1781494 | 2018-10-16 00:11:39 +0300 | [diff] [blame] | 1998 | XMLTest("<two> is the last child at root level", true, two == doc.RootElement()->LastChildElement());
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 1999 | doc.RootElement()->InsertEndChild(subtree);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2000 | XMLPrinter printer4(0, true);
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 2001 | acceptResult = doc.Accept(&printer4);
|
| 2002 | XMLTest("Move node from within <one> after <two> - Accept()", true, acceptResult);
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2003 | XMLTest("Move node from within <one> after <two>", xmlAfterTwo, printer4.CStr(), false);
|
Michael Daumling | ed52328 | 2013-10-23 07:47:29 +0200 | [diff] [blame] | 2004 | }
|
| 2005 |
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2006 | {
|
| 2007 | const char* xml = "<svg width = \"128\" height = \"128\">"
|
| 2008 | " <text> </text>"
|
| 2009 | "</svg>";
|
| 2010 | XMLDocument doc;
|
| 2011 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2012 | XMLTest( "Parse svg with text", false, doc.Error() );
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2013 | doc.Print();
|
| 2014 | }
|
| 2015 |
|
Lee Thomason | 92e521b | 2014-11-15 17:45:51 -0800 | [diff] [blame] | 2016 | {
|
| 2017 | // Test that it doesn't crash.
|
Lee Thomason | cd011bc | 2014-12-17 10:41:34 -0800 | [diff] [blame] | 2018 | const char* xml = "<?xml version=\"1.0\"?><root><sample><field0><1</field0><field1>2</field1></sample></root>";
|
| 2019 | XMLDocument doc;
|
| 2020 | doc.Parse(xml);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2021 | XMLTest( "Parse root-sample-field0", true, doc.Error() );
|
Lee Thomason | cd011bc | 2014-12-17 10:41:34 -0800 | [diff] [blame] | 2022 | doc.PrintError();
|
Lee Thomason | 92e521b | 2014-11-15 17:45:51 -0800 | [diff] [blame] | 2023 | }
|
| 2024 |
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2025 | #if 1
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2026 | // the question being explored is what kind of print to use:
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2027 | // https://github.com/leethomason/tinyxml2/issues/63
|
| 2028 | {
|
| 2029 | //const char* xml = "<element attrA='123456789.123456789' attrB='1.001e9' attrC='1.0e-10' attrD='1001000000.000000' attrE='0.1234567890123456789'/>";
|
| 2030 | const char* xml = "<element/>";
|
| 2031 | XMLDocument doc;
|
| 2032 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2033 | XMLTest( "Parse self-closed empty element", false, doc.Error() );
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2034 | doc.FirstChildElement()->SetAttribute( "attrA-f64", 123456789.123456789 );
|
| 2035 | doc.FirstChildElement()->SetAttribute( "attrB-f64", 1.001e9 );
|
| 2036 | doc.FirstChildElement()->SetAttribute( "attrC-f64", 1.0e9 );
|
| 2037 | doc.FirstChildElement()->SetAttribute( "attrC-f64", 1.0e20 );
|
| 2038 | doc.FirstChildElement()->SetAttribute( "attrD-f64", 1.0e-10 );
|
| 2039 | doc.FirstChildElement()->SetAttribute( "attrD-f64", 0.123456789 );
|
| 2040 |
|
| 2041 | doc.FirstChildElement()->SetAttribute( "attrA-f32", 123456789.123456789f );
|
| 2042 | doc.FirstChildElement()->SetAttribute( "attrB-f32", 1.001e9f );
|
| 2043 | doc.FirstChildElement()->SetAttribute( "attrC-f32", 1.0e9f );
|
| 2044 | doc.FirstChildElement()->SetAttribute( "attrC-f32", 1.0e20f );
|
| 2045 | doc.FirstChildElement()->SetAttribute( "attrD-f32", 1.0e-10f );
|
| 2046 | doc.FirstChildElement()->SetAttribute( "attrD-f32", 0.123456789f );
|
| 2047 |
|
| 2048 | doc.Print();
|
| 2049 |
|
| 2050 | /* The result of this test is platform, compiler, and library version dependent. :("
|
| 2051 | XMLPrinter printer;
|
| 2052 | doc.Print( &printer );
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2053 | XMLTest( "Float and double formatting.",
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2054 | "<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",
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2055 | printer.CStr(),
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2056 | true );
|
| 2057 | */
|
| 2058 | }
|
| 2059 | #endif
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2060 |
|
Lee Thomason | f07b952 | 2014-10-30 13:25:12 -0700 | [diff] [blame] | 2061 | {
|
| 2062 | // Issue #184
|
| 2063 | // If it doesn't assert, it passes. Caused by objects
|
| 2064 | // getting created during parsing which are then
|
| 2065 | // inaccessible in the memory pools.
|
Dmitry-Me | 5d1aec1 | 2017-06-28 14:51:17 +0300 | [diff] [blame] | 2066 | const char* xmlText = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><test>";
|
Lee Thomason | f07b952 | 2014-10-30 13:25:12 -0700 | [diff] [blame] | 2067 | {
|
| 2068 | XMLDocument doc;
|
Dmitry-Me | 5d1aec1 | 2017-06-28 14:51:17 +0300 | [diff] [blame] | 2069 | doc.Parse(xmlText);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2070 | XMLTest( "Parse hex no closing tag round 1", true, doc.Error() );
|
Lee Thomason | f07b952 | 2014-10-30 13:25:12 -0700 | [diff] [blame] | 2071 | }
|
| 2072 | {
|
| 2073 | XMLDocument doc;
|
Dmitry-Me | 5d1aec1 | 2017-06-28 14:51:17 +0300 | [diff] [blame] | 2074 | doc.Parse(xmlText);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2075 | XMLTest( "Parse hex no closing tag round 2", true, doc.Error() );
|
Lee Thomason | f07b952 | 2014-10-30 13:25:12 -0700 | [diff] [blame] | 2076 | doc.Clear();
|
| 2077 | }
|
| 2078 | }
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2079 |
|
Lee Thomason | cd011bc | 2014-12-17 10:41:34 -0800 | [diff] [blame] | 2080 | {
|
Peter Matula | 5068991 | 2018-01-09 12:52:26 +0100 | [diff] [blame] | 2081 | // If this doesn't assert in TINYXML2_DEBUG, all is well.
|
Lee Thomason | cd011bc | 2014-12-17 10:41:34 -0800 | [diff] [blame] | 2082 | tinyxml2::XMLDocument doc;
|
| 2083 | tinyxml2::XMLElement *pRoot = doc.NewElement("Root");
|
| 2084 | doc.DeleteNode(pRoot);
|
| 2085 | }
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2086 |
|
Dmitry-Me | e5790db | 2017-07-28 17:54:38 +0300 | [diff] [blame] | 2087 | {
|
| 2088 | XMLDocument doc;
|
| 2089 | XMLElement* root = doc.NewElement( "Root" );
|
| 2090 | XMLTest( "Node document before insertion", true, &doc == root->GetDocument() );
|
| 2091 | doc.InsertEndChild( root );
|
| 2092 | XMLTest( "Node document after insertion", true, &doc == root->GetDocument() );
|
| 2093 | }
|
| 2094 |
|
| 2095 | {
|
Peter Matula | 5068991 | 2018-01-09 12:52:26 +0100 | [diff] [blame] | 2096 | // If this doesn't assert in TINYXML2_DEBUG, all is well.
|
Dmitry-Me | e5790db | 2017-07-28 17:54:38 +0300 | [diff] [blame] | 2097 | XMLDocument doc;
|
| 2098 | XMLElement* unlinkedRoot = doc.NewElement( "Root" );
|
| 2099 | XMLElement* linkedRoot = doc.NewElement( "Root" );
|
| 2100 | doc.InsertFirstChild( linkedRoot );
|
| 2101 | unlinkedRoot->GetDocument()->DeleteNode( linkedRoot );
|
| 2102 | unlinkedRoot->GetDocument()->DeleteNode( unlinkedRoot );
|
| 2103 | }
|
| 2104 |
|
Dmitry-Me | 8b67d74 | 2014-12-22 11:35:12 +0300 | [diff] [blame] | 2105 | {
|
Peter Matula | 5068991 | 2018-01-09 12:52:26 +0100 | [diff] [blame] | 2106 | // Should not assert in TINYXML2_DEBUG
|
Dmitry-Me | 8b67d74 | 2014-12-22 11:35:12 +0300 | [diff] [blame] | 2107 | XMLPrinter printer;
|
| 2108 | }
|
Lee Thomason | c3708cc | 2014-01-14 12:30:03 -0800 | [diff] [blame] | 2109 |
|
Dmitry-Me | 6f51c80 | 2015-03-14 13:25:03 +0300 | [diff] [blame] | 2110 | {
|
| 2111 | // Issue 291. Should not crash
|
| 2112 | const char* xml = "�</a>";
|
| 2113 | XMLDocument doc;
|
| 2114 | doc.Parse( xml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2115 | XMLTest( "Parse hex with closing tag", false, doc.Error() );
|
Dmitry-Me | 6f51c80 | 2015-03-14 13:25:03 +0300 | [diff] [blame] | 2116 |
|
| 2117 | XMLPrinter printer;
|
| 2118 | doc.Print( &printer );
|
| 2119 | }
|
Ant Mitchell | 148cc1a | 2015-03-24 15:12:35 +0000 | [diff] [blame] | 2120 | {
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2121 | // Issue 299. Can print elements that are not linked in.
|
Ant Mitchell | 148cc1a | 2015-03-24 15:12:35 +0000 | [diff] [blame] | 2122 | // Will crash if issue not fixed.
|
| 2123 | XMLDocument doc;
|
| 2124 | XMLElement* newElement = doc.NewElement( "printme" );
|
| 2125 | XMLPrinter printer;
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 2126 | bool acceptResult = newElement->Accept( &printer );
|
| 2127 | XMLTest( "printme - Accept()", true, acceptResult );
|
Dmitry-Me | 5daa54c | 2015-04-08 17:45:07 +0300 | [diff] [blame] | 2128 | // Delete the node to avoid possible memory leak report in debug output
|
| 2129 | doc.DeleteNode( newElement );
|
Ant Mitchell | 148cc1a | 2015-03-24 15:12:35 +0000 | [diff] [blame] | 2130 | }
|
Lee Thomason | f657783 | 2015-03-26 11:18:21 -0700 | [diff] [blame] | 2131 | {
|
Ant Mitchell | 189198f | 2015-03-24 16:20:36 +0000 | [diff] [blame] | 2132 | // Issue 302. Clear errors from LoadFile/SaveFile
|
| 2133 | XMLDocument doc;
|
Dmitry-Me | 32533ca | 2015-04-07 10:37:39 +0300 | [diff] [blame] | 2134 | XMLTest( "Issue 302. Should be no error initially", "XML_SUCCESS", doc.ErrorName() );
|
Ant Mitchell | 189198f | 2015-03-24 16:20:36 +0000 | [diff] [blame] | 2135 | doc.SaveFile( "./no/such/path/pretty.xml" );
|
Dmitry-Me | 32533ca | 2015-04-07 10:37:39 +0300 | [diff] [blame] | 2136 | XMLTest( "Issue 302. Fail to save", "XML_ERROR_FILE_COULD_NOT_BE_OPENED", doc.ErrorName() );
|
Ant Mitchell | 189198f | 2015-03-24 16:20:36 +0000 | [diff] [blame] | 2137 | doc.SaveFile( "./resources/out/compact.xml", true );
|
Dmitry-Me | 32533ca | 2015-04-07 10:37:39 +0300 | [diff] [blame] | 2138 | XMLTest( "Issue 302. Subsequent success in saving", "XML_SUCCESS", doc.ErrorName() );
|
Ant Mitchell | 189198f | 2015-03-24 16:20:36 +0000 | [diff] [blame] | 2139 | }
|
Dmitry-Me | 6f51c80 | 2015-03-14 13:25:03 +0300 | [diff] [blame] | 2140 |
|
Dmitry-Me | d9852a5 | 2015-03-25 10:17:49 +0300 | [diff] [blame] | 2141 | {
|
| 2142 | // If a document fails to load then subsequent
|
| 2143 | // successful loads should clear the error
|
| 2144 | XMLDocument doc;
|
Dmitry-Me | 32533ca | 2015-04-07 10:37:39 +0300 | [diff] [blame] | 2145 | XMLTest( "Should be no error initially", false, doc.Error() );
|
Dmitry-Me | d9852a5 | 2015-03-25 10:17:49 +0300 | [diff] [blame] | 2146 | doc.LoadFile( "resources/no-such-file.xml" );
|
| 2147 | XMLTest( "No such file - should fail", true, doc.Error() );
|
| 2148 |
|
| 2149 | doc.LoadFile( "resources/dream.xml" );
|
| 2150 | XMLTest( "Error should be cleared", false, doc.Error() );
|
| 2151 | }
|
Sarat Addepalli | 8e85afa | 2015-05-19 09:07:03 +0530 | [diff] [blame] | 2152 |
|
Sarat Addepalli | 2bb6bb5 | 2015-05-18 09:16:34 +0530 | [diff] [blame] | 2153 | {
|
Dmitry-Me | 446c3bc | 2016-11-11 10:34:56 +0300 | [diff] [blame] | 2154 | // Check that declarations are allowed only at beginning of document
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2155 | const char* xml0 = "<?xml version=\"1.0\" ?>"
|
| 2156 | " <!-- xml version=\"1.1\" -->"
|
| 2157 | "<first />";
|
| 2158 | const char* xml1 = "<?xml version=\"1.0\" ?>"
|
Dmitry-Me | 446c3bc | 2016-11-11 10:34:56 +0300 | [diff] [blame] | 2159 | "<?xml-stylesheet type=\"text/xsl\" href=\"Anything.xsl\"?>"
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2160 | "<first />";
|
| 2161 | const char* xml2 = "<first />"
|
| 2162 | "<?xml version=\"1.0\" ?>";
|
Dmitry-Me | 446c3bc | 2016-11-11 10:34:56 +0300 | [diff] [blame] | 2163 | const char* xml3 = "<first></first>"
|
| 2164 | "<?xml version=\"1.0\" ?>";
|
| 2165 |
|
| 2166 | const char* xml4 = "<first><?xml version=\"1.0\" ?></first>";
|
| 2167 |
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2168 | XMLDocument doc;
|
| 2169 | doc.Parse(xml0);
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 2170 | XMLTest("Test that the code changes do not affect normal parsing", false, doc.Error() );
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2171 | doc.Parse(xml1);
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 2172 | XMLTest("Test that the second declaration is allowed", false, doc.Error() );
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2173 | doc.Parse(xml2);
|
Dmitry-Me | 6a18a31 | 2018-03-23 21:09:13 +0300 | [diff] [blame] | 2174 | XMLTest("Test that declaration after self-closed child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() );
|
Dmitry-Me | 446c3bc | 2016-11-11 10:34:56 +0300 | [diff] [blame] | 2175 | doc.Parse(xml3);
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 2176 | XMLTest("Test that declaration after a child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() );
|
Dmitry-Me | 446c3bc | 2016-11-11 10:34:56 +0300 | [diff] [blame] | 2177 | doc.Parse(xml4);
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 2178 | XMLTest("Test that declaration inside a child is not allowed", XML_ERROR_PARSING_DECLARATION, doc.ErrorID() );
|
Sarat Addepalli | 2bb6bb5 | 2015-05-18 09:16:34 +0530 | [diff] [blame] | 2179 | }
|
Dmitry-Me | d9852a5 | 2015-03-25 10:17:49 +0300 | [diff] [blame] | 2180 |
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2181 | {
|
| 2182 | // No matter - before or after successfully parsing a text -
|
Dmitry-Me | 2604336 | 2017-08-30 17:40:15 +0300 | [diff] [blame] | 2183 | // calling XMLDocument::Value() used to cause an assert in debug.
|
orbitcowboy | 22b21ec | 2018-07-17 11:52:57 +0200 | [diff] [blame] | 2184 | // Null must be returned.
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2185 | const char* validXml = "<?xml version=\"1.0\" encoding=\"utf-8\" ?>"
|
| 2186 | "<first />"
|
| 2187 | "<second />";
|
| 2188 | XMLDocument* doc = new XMLDocument();
|
| 2189 | XMLTest( "XMLDocument::Value() returns null?", NULL, doc->Value() );
|
| 2190 | doc->Parse( validXml );
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2191 | XMLTest( "Parse to test XMLDocument::Value()", false, doc->Error());
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2192 | XMLTest( "XMLDocument::Value() returns null?", NULL, doc->Value() );
|
| 2193 | delete doc;
|
| 2194 | }
|
| 2195 |
|
Dmitry-Me | a1beddf | 2015-05-26 16:19:21 +0300 | [diff] [blame] | 2196 | {
|
| 2197 | XMLDocument doc;
|
| 2198 | for( int i = 0; i < XML_ERROR_COUNT; i++ ) {
|
Dmitry-Me | d3f6c63 | 2017-08-30 17:43:14 +0300 | [diff] [blame] | 2199 | const XMLError error = static_cast<XMLError>(i);
|
Lee Thomason | f49b965 | 2017-10-11 10:57:49 -0700 | [diff] [blame] | 2200 | const char* name = XMLDocument::ErrorIDToName(error);
|
Dmitry-Me | 95f687b | 2018-03-23 20:56:46 +0300 | [diff] [blame] | 2201 | XMLTest( "ErrorName() not null after ClearError()", true, name != 0 );
|
| 2202 | if( name == 0 ) {
|
| 2203 | // passing null pointer into strlen() is undefined behavior, so
|
| 2204 | // compiler is allowed to optimise away the null test above if it's
|
| 2205 | // as reachable as the strlen() call
|
| 2206 | continue;
|
| 2207 | }
|
| 2208 | XMLTest( "ErrorName() not empty after ClearError()", true, strlen(name) > 0 );
|
Dmitry-Me | a1beddf | 2015-05-26 16:19:21 +0300 | [diff] [blame] | 2209 | }
|
| 2210 | }
|
| 2211 |
|
Lee Thomason | 816d3fa | 2017-06-05 14:35:55 -0700 | [diff] [blame] | 2212 | {
|
Derek Quam | be69ae6 | 2018-04-18 13:40:46 -0500 | [diff] [blame] | 2213 | const char* html("<!DOCTYPE html><html><body><p>test</p><p><br/></p></body></html>");
|
| 2214 | XMLDocument doc(false);
|
| 2215 | doc.Parse(html);
|
| 2216 |
|
| 2217 | XMLPrinter printer(0, true);
|
| 2218 | doc.Print(&printer);
|
| 2219 |
|
| 2220 | XMLTest(html, html, printer.CStr());
|
| 2221 | }
|
| 2222 |
|
| 2223 | {
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2224 | // Evil memory leaks.
|
Lee Thomason | b754ddf | 2017-06-14 15:02:38 -0700 | [diff] [blame] | 2225 | // If an XMLElement (etc) is allocated via NewElement() (etc.)
|
| 2226 | // and NOT added to the XMLDocument, what happens?
|
| 2227 | //
|
| 2228 | // Previously (buggy):
|
| 2229 | // The memory would be free'd when the XMLDocument is
|
Dmitry-Me | a9e75d1 | 2017-09-08 19:05:23 +0300 | [diff] [blame] | 2230 | // destructed. But the XMLElement destructor wasn't called, so
|
| 2231 | // memory allocated for the XMLElement text would not be free'd.
|
| 2232 | // In practice this meant strings allocated for the XMLElement
|
| 2233 | // text would be leaked. An edge case, but annoying.
|
Lee Thomason | b754ddf | 2017-06-14 15:02:38 -0700 | [diff] [blame] | 2234 | // Now:
|
Dmitry-Me | a9e75d1 | 2017-09-08 19:05:23 +0300 | [diff] [blame] | 2235 | // The XMLElement destructor is called. But the unlinked nodes
|
| 2236 | // have to be tracked using a list. This has a minor performance
|
| 2237 | // impact that can become significant if you have a lot of
|
| 2238 | // unlinked nodes. (But why would you do that?)
|
| 2239 | // The only way to see this bug was in a Visual C++ runtime debug heap
|
| 2240 | // leak tracker. This is compiled in by default on Windows Debug and
|
| 2241 | // enabled with _CRTDBG_LEAK_CHECK_DF parameter passed to _CrtSetDbgFlag().
|
Lee Thomason | 816d3fa | 2017-06-05 14:35:55 -0700 | [diff] [blame] | 2242 | {
|
| 2243 | XMLDocument doc;
|
| 2244 | doc.NewElement("LEAK 1");
|
| 2245 | }
|
| 2246 | {
|
| 2247 | XMLDocument doc;
|
| 2248 | XMLElement* ele = doc.NewElement("LEAK 2");
|
| 2249 | doc.DeleteNode(ele);
|
| 2250 | }
|
| 2251 | }
|
| 2252 |
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2253 | {
|
Lee Thomason | f928c35 | 2018-04-05 09:24:20 -0700 | [diff] [blame] | 2254 | // Bad bad crash. Parsing error results in stack overflow, if uncaught.
|
| 2255 | const char* TESTS[] = {
|
| 2256 | "./resources/xmltest-5330.xml",
|
| 2257 | "./resources/xmltest-4636783552757760.xml",
|
| 2258 | "./resources/xmltest-5720541257269248.xml",
|
| 2259 | 0
|
| 2260 | };
|
| 2261 | for (int i=0; TESTS[i]; ++i) {
|
| 2262 | XMLDocument doc;
|
| 2263 | doc.LoadFile(TESTS[i]);
|
Lee Thomason | e2d02e1 | 2018-04-05 15:57:48 -0700 | [diff] [blame] | 2264 | XMLTest("Stack overflow prevented.", XML_ELEMENT_DEPTH_EXCEEDED, doc.ErrorID());
|
Lee Thomason | f928c35 | 2018-04-05 09:24:20 -0700 | [diff] [blame] | 2265 | }
|
Lee Thomason | d946dda | 2018-04-05 09:11:08 -0700 | [diff] [blame] | 2266 | }
|
Lee Thomason | db13a82 | 2018-07-28 14:56:20 -0700 | [diff] [blame] | 2267 | {
|
| 2268 | const char* TESTS[] = {
|
| 2269 | "./resources/xmltest-5662204197076992.xml", // Security-level performance issue.
|
| 2270 | 0
|
| 2271 | };
|
| 2272 | for (int i = 0; TESTS[i]; ++i) {
|
| 2273 | XMLDocument doc;
|
| 2274 | doc.LoadFile(TESTS[i]);
|
| 2275 | // Need only not crash / lock up.
|
| 2276 | XMLTest("Fuzz attack prevented.", true, true);
|
| 2277 | }
|
| 2278 | }
|
Lee Thomason | d946dda | 2018-04-05 09:11:08 -0700 | [diff] [blame] | 2279 | {
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2280 | // Crashing reported via email.
|
| 2281 | const char* xml =
|
| 2282 | "<playlist id='playlist1'>"
|
Lee Thomason | 82bb074 | 2017-06-16 09:48:20 -0700 | [diff] [blame] | 2283 | "<property name='track_name'>voice</property>"
|
| 2284 | "<property name='audio_track'>1</property>"
|
| 2285 | "<entry out = '604' producer = '4_playlist1' in = '0' />"
|
| 2286 | "<blank length = '1' />"
|
| 2287 | "<entry out = '1625' producer = '3_playlist' in = '0' />"
|
| 2288 | "<blank length = '2' />"
|
| 2289 | "<entry out = '946' producer = '2_playlist1' in = '0' />"
|
| 2290 | "<blank length = '1' />"
|
| 2291 | "<entry out = '128' producer = '1_playlist1' in = '0' />"
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2292 | "</playlist>";
|
Lee Thomason | 82bb074 | 2017-06-16 09:48:20 -0700 | [diff] [blame] | 2293 |
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2294 | // It's not a good idea to delete elements as you walk the
|
| 2295 | // list. I'm not sure this technically should work; but it's
|
| 2296 | // an interesting test case.
|
| 2297 | XMLDocument doc;
|
| 2298 | XMLError err = doc.Parse(xml);
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 2299 | XMLTest("Crash bug parsing", XML_SUCCESS, err );
|
Dmitry-Me | aea64c4 | 2017-06-20 18:20:15 +0300 | [diff] [blame] | 2300 |
|
| 2301 | XMLElement* playlist = doc.FirstChildElement("playlist");
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2302 | XMLTest("Crash bug parsing", true, playlist != 0);
|
| 2303 |
|
Dmitry-Me | b41e24a | 2017-09-27 18:51:01 +0300 | [diff] [blame] | 2304 | {
|
| 2305 | const char* elementName = "entry";
|
| 2306 | XMLElement* entry = playlist->FirstChildElement(elementName);
|
| 2307 | XMLTest("Crash bug parsing", true, entry != 0);
|
| 2308 | while (entry) {
|
| 2309 | XMLElement* todelete = entry;
|
| 2310 | entry = entry->NextSiblingElement(elementName);
|
| 2311 | playlist->DeleteChild(todelete);
|
| 2312 | }
|
| 2313 | entry = playlist->FirstChildElement(elementName);
|
| 2314 | XMLTest("Crash bug parsing", true, entry == 0);
|
| 2315 | }
|
| 2316 | {
|
| 2317 | const char* elementName = "blank";
|
| 2318 | XMLElement* blank = playlist->FirstChildElement(elementName);
|
| 2319 | XMLTest("Crash bug parsing", true, blank != 0);
|
| 2320 | while (blank) {
|
| 2321 | XMLElement* todelete = blank;
|
| 2322 | blank = blank->NextSiblingElement(elementName);
|
| 2323 | playlist->DeleteChild(todelete);
|
| 2324 | }
|
| 2325 | XMLTest("Crash bug parsing", true, blank == 0);
|
| 2326 | }
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2327 |
|
| 2328 | tinyxml2::XMLPrinter printer;
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 2329 | const bool acceptResult = playlist->Accept(&printer);
|
| 2330 | XMLTest("Crash bug parsing - Accept()", true, acceptResult);
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2331 | printf("%s\n", printer.CStr());
|
| 2332 |
|
Lee Thomason | c483646 | 2018-06-29 15:57:55 -0700 | [diff] [blame] | 2333 | // No test; it only need to not crash.
|
Lee Thomason | 82bb074 | 2017-06-16 09:48:20 -0700 | [diff] [blame] | 2334 | // Still, wrap it up with a sanity check
|
| 2335 | int nProperty = 0;
|
| 2336 | for (const XMLElement* p = playlist->FirstChildElement("property"); p; p = p->NextSiblingElement("property")) {
|
| 2337 | nProperty++;
|
| 2338 | }
|
Dmitry-Me | 9832a5f | 2017-06-23 18:29:16 +0300 | [diff] [blame] | 2339 | XMLTest("Crash bug parsing", 2, nProperty);
|
Lee Thomason | 224ef77 | 2017-06-16 09:45:26 -0700 | [diff] [blame] | 2340 | }
|
| 2341 |
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2342 | // ----------- Line Number Tracking --------------
|
| 2343 | {
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2344 | struct TestUtil: XMLVisitor
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2345 | {
|
Thierry Lelegard | 7f0f754 | 2017-09-01 10:14:16 +0200 | [diff] [blame] | 2346 | TestUtil() : str() {}
|
| 2347 |
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2348 | void TestParseError(const char *testString, const char *docStr, XMLError expected_error, int expectedLine)
|
| 2349 | {
|
| 2350 | XMLDocument doc;
|
Dmitry-Me | 8d40f7a | 2017-08-09 19:10:08 +0300 | [diff] [blame] | 2351 | const XMLError parseError = doc.Parse(docStr);
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2352 |
|
Dmitry-Me | 8d40f7a | 2017-08-09 19:10:08 +0300 | [diff] [blame] | 2353 | XMLTest(testString, parseError, doc.ErrorID());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2354 | XMLTest(testString, true, doc.Error());
|
Dmitry-Me | 8d40f7a | 2017-08-09 19:10:08 +0300 | [diff] [blame] | 2355 | XMLTest(testString, expected_error, parseError);
|
Lee Thomason | f49b965 | 2017-10-11 10:57:49 -0700 | [diff] [blame] | 2356 | XMLTest(testString, expectedLine, doc.ErrorLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2357 | };
|
| 2358 |
|
| 2359 | void TestStringLines(const char *testString, const char *docStr, const char *expectedLines)
|
| 2360 | {
|
| 2361 | XMLDocument doc;
|
| 2362 | doc.Parse(docStr);
|
| 2363 | XMLTest(testString, false, doc.Error());
|
| 2364 | TestDocLines(testString, doc, expectedLines);
|
| 2365 | }
|
| 2366 |
|
| 2367 | void TestFileLines(const char *testString, const char *file_name, const char *expectedLines)
|
| 2368 | {
|
| 2369 | XMLDocument doc;
|
| 2370 | doc.LoadFile(file_name);
|
| 2371 | XMLTest(testString, false, doc.Error());
|
| 2372 | TestDocLines(testString, doc, expectedLines);
|
| 2373 | }
|
| 2374 |
|
| 2375 | private:
|
| 2376 | DynArray<char, 10> str;
|
| 2377 |
|
| 2378 | void Push(char type, int lineNum)
|
| 2379 | {
|
| 2380 | str.Push(type);
|
| 2381 | str.Push(char('0' + (lineNum / 10)));
|
| 2382 | str.Push(char('0' + (lineNum % 10)));
|
| 2383 | }
|
| 2384 |
|
| 2385 | bool VisitEnter(const XMLDocument& doc)
|
| 2386 | {
|
kezenator | 19d8ea8 | 2016-11-29 19:50:27 +1000 | [diff] [blame] | 2387 | Push('D', doc.GetLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2388 | return true;
|
| 2389 | }
|
| 2390 | bool VisitEnter(const XMLElement& element, const XMLAttribute* firstAttribute)
|
| 2391 | {
|
kezenator | 19d8ea8 | 2016-11-29 19:50:27 +1000 | [diff] [blame] | 2392 | Push('E', element.GetLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2393 | for (const XMLAttribute *attr = firstAttribute; attr != 0; attr = attr->Next())
|
kezenator | 19d8ea8 | 2016-11-29 19:50:27 +1000 | [diff] [blame] | 2394 | Push('A', attr->GetLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2395 | return true;
|
| 2396 | }
|
| 2397 | bool Visit(const XMLDeclaration& declaration)
|
| 2398 | {
|
kezenator | 19d8ea8 | 2016-11-29 19:50:27 +1000 | [diff] [blame] | 2399 | Push('L', declaration.GetLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2400 | return true;
|
| 2401 | }
|
| 2402 | bool Visit(const XMLText& text)
|
| 2403 | {
|
kezenator | 19d8ea8 | 2016-11-29 19:50:27 +1000 | [diff] [blame] | 2404 | Push('T', text.GetLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2405 | return true;
|
| 2406 | }
|
| 2407 | bool Visit(const XMLComment& comment)
|
| 2408 | {
|
kezenator | 19d8ea8 | 2016-11-29 19:50:27 +1000 | [diff] [blame] | 2409 | Push('C', comment.GetLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2410 | return true;
|
| 2411 | }
|
| 2412 | bool Visit(const XMLUnknown& unknown)
|
| 2413 | {
|
kezenator | 19d8ea8 | 2016-11-29 19:50:27 +1000 | [diff] [blame] | 2414 | Push('U', unknown.GetLineNum());
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2415 | return true;
|
| 2416 | }
|
| 2417 |
|
| 2418 | void TestDocLines(const char *testString, XMLDocument &doc, const char *expectedLines)
|
| 2419 | {
|
| 2420 | str.Clear();
|
Dmitry-Me | f0f2e99 | 2017-09-25 17:38:42 +0300 | [diff] [blame] | 2421 | const bool acceptResult = doc.Accept(this);
|
| 2422 | XMLTest(testString, true, acceptResult);
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2423 | str.Push(0);
|
| 2424 | XMLTest(testString, expectedLines, str.Mem());
|
| 2425 | }
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2426 | } tester;
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2427 |
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2428 | tester.TestParseError("ErrorLine-Parsing", "\n<root>\n foo \n<unclosed/>", XML_ERROR_PARSING, 2);
|
| 2429 | tester.TestParseError("ErrorLine-Declaration", "<root>\n<?xml version=\"1.0\"?>", XML_ERROR_PARSING_DECLARATION, 2);
|
| 2430 | tester.TestParseError("ErrorLine-Mismatch", "\n<root>\n</mismatch>", XML_ERROR_MISMATCHED_ELEMENT, 2);
|
| 2431 | tester.TestParseError("ErrorLine-CData", "\n<root><![CDATA[ \n foo bar \n", XML_ERROR_PARSING_CDATA, 2);
|
| 2432 | tester.TestParseError("ErrorLine-Text", "\n<root>\n foo bar \n", XML_ERROR_PARSING_TEXT, 3);
|
| 2433 | tester.TestParseError("ErrorLine-Comment", "\n<root>\n<!-- >\n", XML_ERROR_PARSING_COMMENT, 3);
|
| 2434 | tester.TestParseError("ErrorLine-Declaration", "\n<root>\n<? >\n", XML_ERROR_PARSING_DECLARATION, 3);
|
| 2435 | tester.TestParseError("ErrorLine-Unknown", "\n<root>\n<! \n", XML_ERROR_PARSING_UNKNOWN, 3);
|
| 2436 | tester.TestParseError("ErrorLine-Element", "\n<root>\n<unclosed \n", XML_ERROR_PARSING_ELEMENT, 3);
|
| 2437 | tester.TestParseError("ErrorLine-Attribute", "\n<root>\n<unclosed \n att\n", XML_ERROR_PARSING_ATTRIBUTE, 4);
|
| 2438 | tester.TestParseError("ErrorLine-ElementClose", "\n<root>\n<unclosed \n/unexpected", XML_ERROR_PARSING_ELEMENT, 3);
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2439 |
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2440 | tester.TestStringLines(
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2441 | "LineNumbers-String",
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2442 |
|
| 2443 | "<?xml version=\"1.0\"?>\n" // 1 Doc, DecL
|
| 2444 | "<root a='b' \n" // 2 Element Attribute
|
| 2445 | "c='d'> d <blah/> \n" // 3 Attribute Text Element
|
| 2446 | "newline in text \n" // 4 Text
|
| 2447 | "and second <zxcv/><![CDATA[\n" // 5 Element Text
|
| 2448 | " cdata test ]]><!-- comment -->\n" // 6 Comment
|
| 2449 | "<! unknown></root>", // 7 Unknown
|
| 2450 |
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2451 | "D01L01E02A02A03T03E03T04E05T05C06U07");
|
| 2452 |
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2453 | tester.TestStringLines(
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2454 | "LineNumbers-CRLF",
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2455 |
|
| 2456 | "\r\n" // 1 Doc (arguably should be line 2)
|
| 2457 | "<?xml version=\"1.0\"?>\n" // 2 DecL
|
| 2458 | "<root>\r\n" // 3 Element
|
| 2459 | "\n" // 4
|
| 2460 | "text contining new line \n" // 5 Text
|
| 2461 | " and also containing crlf \r\n" // 6
|
| 2462 | "<sub><![CDATA[\n" // 7 Element Text
|
| 2463 | "cdata containing new line \n" // 8
|
| 2464 | " and also containing cflr\r\n" // 9
|
| 2465 | "]]></sub><sub2/></root>", // 10 Element
|
| 2466 |
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2467 | "D01L02E03T05E07T07E10");
|
| 2468 |
|
Lee Thomason | e90e901 | 2016-12-24 07:34:39 -0800 | [diff] [blame] | 2469 | tester.TestFileLines(
|
kezenator | ec69415 | 2016-11-26 17:21:43 +1000 | [diff] [blame] | 2470 | "LineNumbers-File",
|
| 2471 | "resources/utf8test.xml",
|
| 2472 | "D01L01E02E03A03A03T03E04A04A04T04E05A05A05T05E06A06A06T06E07A07A07T07E08A08A08T08E09T09E10T10");
|
| 2473 | }
|
| 2474 |
|
Lee Thomason | f49b965 | 2017-10-11 10:57:49 -0700 | [diff] [blame] | 2475 | {
|
| 2476 | const char* xml = "<Hello>Text</Error>";
|
| 2477 | XMLDocument doc;
|
| 2478 | doc.Parse(xml);
|
| 2479 | XMLTest("Test mismatched elements.", true, doc.Error());
|
| 2480 | XMLTest("Test mismatched elements.", XML_ERROR_MISMATCHED_ELEMENT, doc.ErrorID());
|
| 2481 | // For now just make sure calls work & doesn't crash.
|
| 2482 | // May solidify the error output in the future.
|
| 2483 | printf("%s\n", doc.ErrorStr());
|
| 2484 | doc.PrintError();
|
| 2485 | }
|
| 2486 |
|
Lee Thomason | 8549202 | 2015-05-22 11:07:45 -0700 | [diff] [blame] | 2487 | // ----------- Performance tracking --------------
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2488 | {
|
| 2489 | #if defined( _MSC_VER )
|
| 2490 | __int64 start, end, freq;
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2491 | QueryPerformanceFrequency((LARGE_INTEGER*)&freq);
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2492 | #endif
|
| 2493 |
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2494 | FILE* perfFP = fopen("resources/dream.xml", "r");
|
Dmitry-Me | d1b8282 | 2017-07-04 18:02:54 +0300 | [diff] [blame] | 2495 | XMLTest("Open dream.xml", true, perfFP != 0);
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2496 | fseek(perfFP, 0, SEEK_END);
|
Armagetron | 3c21d6f | 2016-10-13 13:31:23 +0200 | [diff] [blame] | 2497 | long size = ftell(perfFP);
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2498 | fseek(perfFP, 0, SEEK_SET);
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2499 |
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2500 | char* mem = new char[size + 1];
|
Dmitry-Me | d1b8282 | 2017-07-04 18:02:54 +0300 | [diff] [blame] | 2501 | memset(mem, 0xfe, size);
|
Lee Thomason | e4dc721 | 2017-07-06 17:05:01 -0700 | [diff] [blame] | 2502 | size_t bytesRead = fread(mem, 1, size, perfFP);
|
| 2503 | XMLTest("Read dream.xml", true, uint32_t(size) >= uint32_t(bytesRead));
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2504 | fclose(perfFP);
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2505 | mem[size] = 0;
|
| 2506 |
|
| 2507 | #if defined( _MSC_VER )
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2508 | QueryPerformanceCounter((LARGE_INTEGER*)&start);
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2509 | #else
|
| 2510 | clock_t cstart = clock();
|
| 2511 | #endif
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2512 | bool parseDreamXmlFailed = false;
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2513 | static const int COUNT = 10;
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2514 | for (int i = 0; i < COUNT; ++i) {
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2515 | XMLDocument doc;
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2516 | doc.Parse(mem);
|
Dmitry-Me | 68578f4 | 2017-07-03 18:21:23 +0300 | [diff] [blame] | 2517 | parseDreamXmlFailed = parseDreamXmlFailed || doc.Error();
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2518 | }
|
| 2519 | #if defined( _MSC_VER )
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2520 | QueryPerformanceCounter((LARGE_INTEGER*)&end);
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2521 | #else
|
| 2522 | clock_t cend = clock();
|
| 2523 | #endif
|
Dmitry-Me | 1ab8587 | 2017-08-10 17:28:10 +0300 | [diff] [blame] | 2524 | XMLTest( "Parse dream.xml", false, parseDreamXmlFailed );
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2525 |
|
Lee Thomason | df4ffc0 | 2016-06-04 11:32:46 -0700 | [diff] [blame] | 2526 | delete[] mem;
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2527 |
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 2528 | static const char* note =
|
Peter Matula | 5068991 | 2018-01-09 12:52:26 +0100 | [diff] [blame] | 2529 | #ifdef TINYXML2_DEBUG
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2530 | "DEBUG";
|
| 2531 | #else
|
| 2532 | "Release";
|
| 2533 | #endif
|
| 2534 |
|
| 2535 | #if defined( _MSC_VER )
|
Dmitry-Me | 6f4c4e7 | 2017-07-27 12:06:56 +0300 | [diff] [blame] | 2536 | const double duration = 1000.0 * (double)(end - start) / ((double)freq * (double)COUNT);
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2537 | #else
|
Dmitry-Me | 6f4c4e7 | 2017-07-27 12:06:56 +0300 | [diff] [blame] | 2538 | const double duration = (double)(cend - cstart) / (double)COUNT;
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2539 | #endif
|
Dmitry-Me | 6f4c4e7 | 2017-07-27 12:06:56 +0300 | [diff] [blame] | 2540 | printf("\nParsing dream.xml (%s): %.3f milli-seconds\n", note, duration);
|
Lee Thomason | 6f381b7 | 2012-03-02 12:59:39 -0800 | [diff] [blame] | 2541 | }
|
| 2542 |
|
Peter Matula | 5068991 | 2018-01-09 12:52:26 +0100 | [diff] [blame] | 2543 | #if defined( _MSC_VER ) && defined( TINYXML2_DEBUG )
|
Dmitry-Me | de381df | 2017-07-26 18:05:25 +0300 | [diff] [blame] | 2544 | {
|
Lee Thomason (grinliz) | 2f1f624 | 2012-09-16 11:32:34 -0700 | [diff] [blame] | 2545 | _CrtMemCheckpoint( &endMemState );
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 2546 |
|
| 2547 | _CrtMemState diffMemState;
|
| 2548 | _CrtMemDifference( &diffMemState, &startMemState, &endMemState );
|
| 2549 | _CrtMemDumpStatistics( &diffMemState );
|
Dmitry-Me | ed78570 | 2017-06-15 13:39:53 +0300 | [diff] [blame] | 2550 |
|
| 2551 | {
|
| 2552 | int leaksBeforeExit = _CrtDumpMemoryLeaks();
|
| 2553 | XMLTest( "No leaks before exit?", FALSE, leaksBeforeExit );
|
| 2554 | }
|
Dmitry-Me | de381df | 2017-07-26 18:05:25 +0300 | [diff] [blame] | 2555 | }
|
| 2556 | #endif
|
Lee Thomason | 1ff38e0 | 2012-02-14 18:18:16 -0800 | [diff] [blame] | 2557 |
|
| 2558 | printf ("\nPass %d, Fail %d\n", gPass, gFail);
|
Lee Thomason (grinliz) | db30425 | 2013-07-31 12:24:52 -0700 | [diff] [blame] | 2559 |
|
| 2560 | return gFail;
|
Lee Thomason (grinliz) | 9b093cc | 2012-02-25 21:30:18 -0800 | [diff] [blame] | 2561 | }
|