X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/02c943546625da403b87c9e9ab9ccebcc91de90d..31f125ed00f3391ba78371c7aa0b4919427050d8:/tests/xml/xmltest.cpp?ds=sidebyside diff --git a/tests/xml/xmltest.cpp b/tests/xml/xmltest.cpp index 30e959f6b5..ce807b607e 100644 --- a/tests/xml/xmltest.cpp +++ b/tests/xml/xmltest.cpp @@ -81,6 +81,8 @@ private: CPPUNIT_TEST( Escaping ); CPPUNIT_TEST( DetachRoot ); CPPUNIT_TEST( AppendToProlog ); + CPPUNIT_TEST( SetRoot ); + CPPUNIT_TEST( CopyNode ); CPPUNIT_TEST_SUITE_END(); void InsertChild(); @@ -91,6 +93,8 @@ private: void Escaping(); void DetachRoot(); void AppendToProlog(); + void SetRoot(); + void CopyNode(); DECLARE_NO_COPY_CLASS(XmlTestCase) }; @@ -98,7 +102,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( XmlTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( XmlTestCase, "XmlTestCase" ); void XmlTestCase::InsertChild() @@ -424,3 +428,83 @@ void XmlTestCase::AppendToProlog() ; CPPUNIT_ASSERT_EQUAL( xmlTextResult, sos.GetString() ); } + +void XmlTestCase::SetRoot() +{ + wxXmlDocument doc; + CPPUNIT_ASSERT( !doc.IsOk() ); + wxXmlNode *root = new wxXmlNode(wxXML_ELEMENT_NODE, "root"); + + // Test for the problem of http://trac.wxwidgets.org/ticket/13135 + doc.SetRoot( root ); + wxXmlNode *docNode = doc.GetDocumentNode(); + CPPUNIT_ASSERT( docNode && root == docNode->GetChildren() ); + CPPUNIT_ASSERT( doc.IsOk() ); + + // Other tests. + CPPUNIT_ASSERT( docNode == root->GetParent() ); + doc.SetRoot(NULL); // Removes from doc but dosn't free mem, doc node left. + CPPUNIT_ASSERT( !doc.IsOk() ); + + wxXmlNode *comment = new wxXmlNode(wxXML_COMMENT_NODE, "comment", "Prolog Comment"); + wxXmlNode *pi = new wxXmlNode(wxXML_PI_NODE, "target", "PI instructions"); + doc.AppendToProlog(comment); + doc.SetRoot( root ); + doc.AppendToProlog(pi); + CPPUNIT_ASSERT( doc.IsOk() ); + wxXmlNode *node = docNode->GetChildren(); + CPPUNIT_ASSERT( node ); + CPPUNIT_ASSERT( node->GetType() == wxXML_COMMENT_NODE ); + CPPUNIT_ASSERT( node->GetParent() == docNode ); + node = node->GetNext(); + CPPUNIT_ASSERT( node ); + CPPUNIT_ASSERT( node->GetType() == wxXML_PI_NODE ); + CPPUNIT_ASSERT( node->GetParent() == docNode ); + node = node->GetNext(); + CPPUNIT_ASSERT( node ); + CPPUNIT_ASSERT( node->GetType() == wxXML_ELEMENT_NODE ); + CPPUNIT_ASSERT( node->GetParent() == docNode ); + node = node->GetNext(); + CPPUNIT_ASSERT( !node ); + doc.SetRoot(NULL); + CPPUNIT_ASSERT( !doc.IsOk() ); + doc.SetRoot(root); + CPPUNIT_ASSERT( doc.IsOk() ); +} + +void XmlTestCase::CopyNode() +{ + const char *xmlText = +"\n" +"\n" +" \n" +" \n" +"\n" + ; + wxXmlDocument doc; + wxStringInputStream sis(xmlText); + CPPUNIT_ASSERT( doc.Load(sis) ); + + wxXmlNode* const root = doc.GetRoot(); + CPPUNIT_ASSERT( root ); + + wxXmlNode* const first = root->GetChildren(); + CPPUNIT_ASSERT( first ); + + wxXmlNode* const second = first->GetNext(); + CPPUNIT_ASSERT( second ); + + *first = *second; + + wxStringOutputStream sos; + CPPUNIT_ASSERT( doc.Save(sos) ); + + const char *xmlTextResult = +"\n" +"\n" +" \n" +" \n" +"\n" + ; + CPPUNIT_ASSERT_EQUAL( xmlTextResult, sos.GetString() ); +}