mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-04 02:19:01 +02:00
311 lines
8.8 KiB
C++
311 lines
8.8 KiB
C++
//
|
|
// DocumentTest.cpp
|
|
//
|
|
// $Id: //poco/1.4/XML/testsuite/src/DocumentTest.cpp#1 $
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person or organization
|
|
// obtaining a copy of the software and accompanying documentation covered by
|
|
// this license (the "Software") to use, reproduce, display, distribute,
|
|
// execute, and transmit the Software, and to prepare derivative works of the
|
|
// Software, and to permit third-parties to whom the Software is furnished to
|
|
// do so, all subject to the following:
|
|
//
|
|
// The copyright notices in the Software and this entire statement, including
|
|
// the above license grant, this restriction and the following disclaimer,
|
|
// must be included in all copies of the Software, in whole or in part, and
|
|
// all derivative works of the Software, unless such copies or derivative
|
|
// works are solely in the form of machine-executable object code generated by
|
|
// a source language processor.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
|
|
#include "DocumentTest.h"
|
|
#include "CppUnit/TestCaller.h"
|
|
#include "CppUnit/TestSuite.h"
|
|
#include "Poco/DOM/Document.h"
|
|
#include "Poco/DOM/Element.h"
|
|
#include "Poco/DOM/Text.h"
|
|
#include "Poco/DOM/NodeList.h"
|
|
#include "Poco/DOM/AutoPtr.h"
|
|
#include "Poco/DOM/DOMException.h"
|
|
|
|
|
|
using Poco::XML::Element;
|
|
using Poco::XML::Document;
|
|
using Poco::XML::Text;
|
|
using Poco::XML::Node;
|
|
using Poco::XML::NodeList;
|
|
using Poco::XML::AutoPtr;
|
|
using Poco::XML::XMLString;
|
|
using Poco::XML::DOMException;
|
|
|
|
|
|
DocumentTest::DocumentTest(const std::string& name): CppUnit::TestCase(name)
|
|
{
|
|
}
|
|
|
|
|
|
DocumentTest::~DocumentTest()
|
|
{
|
|
}
|
|
|
|
|
|
void DocumentTest::testDocumentElement()
|
|
{
|
|
AutoPtr<Document> pDoc = new Document;
|
|
AutoPtr<Element> pRoot = pDoc->createElement("root");
|
|
|
|
assert (pDoc->documentElement() == 0);
|
|
pDoc->appendChild(pRoot);
|
|
assert (pDoc->documentElement() == pRoot);
|
|
|
|
AutoPtr<Text> pText = pDoc->createTextNode(" ");
|
|
pDoc->insertBefore(pText, pRoot);
|
|
assert (pDoc->documentElement() == pRoot);
|
|
|
|
}
|
|
|
|
|
|
void DocumentTest::testImport()
|
|
{
|
|
AutoPtr<Document> pDoc1 = new Document;
|
|
AutoPtr<Element> pRoot1 = pDoc1->createElement("root");
|
|
|
|
AutoPtr<Document> pDoc2 = new Document;
|
|
|
|
try
|
|
{
|
|
pDoc2->appendChild(pRoot1);
|
|
fail("wrong document - must throw exception");
|
|
}
|
|
catch (DOMException&)
|
|
{
|
|
}
|
|
|
|
AutoPtr<Element> pRoot2 = static_cast<Element*>(pDoc2->importNode(pRoot1, false));
|
|
assert (pRoot2->ownerDocument() == pDoc2);
|
|
assert (pRoot1->ownerDocument() == pDoc1);
|
|
|
|
pDoc2->appendChild(pRoot2);
|
|
}
|
|
|
|
|
|
void DocumentTest::testImportDeep()
|
|
{
|
|
AutoPtr<Document> pDoc1 = new Document;
|
|
AutoPtr<Element> pRoot1 = pDoc1->createElement("root");
|
|
AutoPtr<Element> pElem1 = pDoc1->createElement("elem");
|
|
AutoPtr<Text> pText1 = pDoc1->createTextNode("text");
|
|
|
|
pElem1->appendChild(pText1);
|
|
pRoot1->appendChild(pElem1);
|
|
|
|
pRoot1->setAttribute("a1", "v1");
|
|
pRoot1->setAttribute("a2", "v2");
|
|
|
|
AutoPtr<Document> pDoc2 = new Document;
|
|
|
|
try
|
|
{
|
|
pDoc2->appendChild(pRoot1);
|
|
fail("wrong document - must throw exception");
|
|
}
|
|
catch (DOMException&)
|
|
{
|
|
}
|
|
|
|
AutoPtr<Element> pRoot2 = static_cast<Element*>(pDoc2->importNode(pRoot1, true));
|
|
assert (pRoot2->ownerDocument() == pDoc2);
|
|
assert (pRoot2->firstChild()->ownerDocument() == pDoc2);
|
|
assert (pRoot2->firstChild()->firstChild()->ownerDocument() == pDoc2);
|
|
assert (pRoot1->ownerDocument() == pDoc1);
|
|
assert (pRoot1->firstChild()->ownerDocument() == pDoc1);
|
|
assert (pRoot1->firstChild()->firstChild()->ownerDocument() == pDoc1);
|
|
|
|
pDoc2->appendChild(pRoot2);
|
|
}
|
|
|
|
|
|
void DocumentTest::testElementsByTagName()
|
|
{
|
|
AutoPtr<Document> pDoc = new Document;
|
|
AutoPtr<Element> pRoot = pDoc->createElement("root");
|
|
pDoc->appendChild(pRoot);
|
|
AutoPtr<NodeList> pNL1 = pDoc->getElementsByTagName("*");
|
|
AutoPtr<NodeList> pNL2 = pDoc->getElementsByTagName("elem");
|
|
|
|
assert (pNL1->length() == 1);
|
|
assert (pNL1->item(0) == pRoot);
|
|
assert (pNL2->length() == 0);
|
|
|
|
AutoPtr<Element> pElem1 = pDoc->createElement("elem");
|
|
pRoot->appendChild(pElem1);
|
|
|
|
assert (pNL1->length() == 2);
|
|
assert (pNL2->length() == 1);
|
|
assert (pNL1->item(0) == pRoot);
|
|
assert (pNL1->item(1) == pElem1);
|
|
assert (pNL2->item(0) == pElem1);
|
|
|
|
AutoPtr<Element> pElem2 = pDoc->createElement("Elem");
|
|
pRoot->appendChild(pElem2);
|
|
|
|
assert (pNL1->length() == 3);
|
|
assert (pNL2->length() == 1);
|
|
assert (pNL1->item(0) == pRoot);
|
|
assert (pNL1->item(1) == pElem1);
|
|
assert (pNL1->item(2) == pElem2);
|
|
assert (pNL2->item(0) == pElem1);
|
|
}
|
|
|
|
|
|
void DocumentTest::testElementsByTagNameNS()
|
|
{
|
|
AutoPtr<Document> pDoc = new Document;
|
|
AutoPtr<Element> pRoot = pDoc->createElementNS("urn:ns1", "root");
|
|
pDoc->appendChild(pRoot);
|
|
AutoPtr<NodeList> pNL1 = pDoc->getElementsByTagNameNS("*", "*");
|
|
AutoPtr<NodeList> pNL2 = pDoc->getElementsByTagNameNS("*", "elem");
|
|
|
|
assert (pNL1->length() == 1);
|
|
assert (pNL1->item(0) == pRoot);
|
|
assert (pNL2->length() == 0);
|
|
|
|
AutoPtr<Element> pElem1 = pDoc->createElementNS("urn:ns1", "elem");
|
|
pRoot->appendChild(pElem1);
|
|
|
|
assert (pNL1->length() == 2);
|
|
assert (pNL2->length() == 1);
|
|
assert (pNL1->item(0) == pRoot);
|
|
assert (pNL1->item(1) == pElem1);
|
|
assert (pNL2->item(0) == pElem1);
|
|
|
|
AutoPtr<Element> pElem2 = pDoc->createElementNS("urn:ns1", "Elem");
|
|
pRoot->appendChild(pElem2);
|
|
|
|
assert (pNL1->length() == 3);
|
|
assert (pNL2->length() == 1);
|
|
assert (pNL1->item(0) == pRoot);
|
|
assert (pNL1->item(1) == pElem1);
|
|
assert (pNL1->item(2) == pElem2);
|
|
assert (pNL2->item(0) == pElem1);
|
|
}
|
|
|
|
|
|
void DocumentTest::testElementById()
|
|
{
|
|
AutoPtr<Document> pDoc = new Document;
|
|
AutoPtr<Element> pRoot = pDoc->createElement("root");
|
|
pRoot->setAttribute("id", "0");
|
|
AutoPtr<Element> pElem1 = pDoc->createElement("elem");
|
|
pElem1->setAttribute("id", "1");
|
|
AutoPtr<Text> pText1 = pDoc->createTextNode("text");
|
|
AutoPtr<Element> pElem2 = pDoc->createElement("elem");
|
|
pElem2->setAttribute("id", "2");
|
|
AutoPtr<Element> pElem3 = pDoc->createElement("elem");
|
|
pElem3->setAttribute("id", "3");
|
|
|
|
pElem1->appendChild(pText1);
|
|
pElem1->appendChild(pElem2);
|
|
pRoot->appendChild(pElem1);
|
|
pRoot->appendChild(pElem3);
|
|
pDoc->appendChild(pRoot);
|
|
|
|
Element* pFound = pDoc->getElementById("0", "id");
|
|
assert (pFound == pRoot);
|
|
|
|
pFound = pDoc->getElementById("1", "id");
|
|
assert (pFound == pElem1);
|
|
|
|
pFound = pDoc->getElementById("2", "id");
|
|
assert (pFound == pElem2);
|
|
|
|
pFound = pDoc->getElementById("3", "id");
|
|
assert (pFound == pElem3);
|
|
|
|
pFound = pDoc->getElementById("4", "id");
|
|
assert (pFound == 0);
|
|
|
|
pFound = pDoc->getElementById("0", "ID");
|
|
assert (pFound == 0);
|
|
}
|
|
|
|
|
|
void DocumentTest::testElementByIdNS()
|
|
{
|
|
AutoPtr<Document> pDoc = new Document;
|
|
AutoPtr<Element> pRoot = pDoc->createElementNS("urn:ns1", "root");
|
|
pRoot->setAttributeNS("urn:ns1", "id", "0");
|
|
AutoPtr<Element> pElem1 = pDoc->createElementNS("urn:ns1", "elem");
|
|
pElem1->setAttributeNS("urn:ns1", "id", "1");
|
|
AutoPtr<Text> pText1 = pDoc->createTextNode("text");
|
|
AutoPtr<Element> pElem2 = pDoc->createElementNS("urn:ns1", "elem");
|
|
pElem2->setAttributeNS("urn:ns1", "id", "2");
|
|
AutoPtr<Element> pElem3 = pDoc->createElementNS("urn:ns1", "elem");
|
|
pElem3->setAttributeNS("urn:ns1", "id", "3");
|
|
|
|
pElem1->appendChild(pText1);
|
|
pElem1->appendChild(pElem2);
|
|
pRoot->appendChild(pElem1);
|
|
pRoot->appendChild(pElem3);
|
|
pDoc->appendChild(pRoot);
|
|
|
|
Element* pFound = pDoc->getElementByIdNS("0", "urn:ns1", "id");
|
|
assert (pFound == pRoot);
|
|
|
|
pFound = pDoc->getElementByIdNS("1", "urn:ns1", "id");
|
|
assert (pFound == pElem1);
|
|
|
|
pFound = pDoc->getElementByIdNS("2", "urn:ns1", "id");
|
|
assert (pFound == pElem2);
|
|
|
|
pFound = pDoc->getElementByIdNS("3", "urn:ns1", "id");
|
|
assert (pFound == pElem3);
|
|
|
|
pFound = pDoc->getElementByIdNS("4", "urn:ns1", "id");
|
|
assert (pFound == 0);
|
|
|
|
pFound = pDoc->getElementByIdNS("0", "urn:ns1", "ID");
|
|
assert (pFound == 0);
|
|
|
|
pFound = pDoc->getElementByIdNS("0", "urn:ns2", "id");
|
|
assert (pFound == 0);
|
|
}
|
|
|
|
|
|
void DocumentTest::setUp()
|
|
{
|
|
}
|
|
|
|
|
|
void DocumentTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* DocumentTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("DocumentTest");
|
|
|
|
CppUnit_addTest(pSuite, DocumentTest, testDocumentElement);
|
|
CppUnit_addTest(pSuite, DocumentTest, testImport);
|
|
CppUnit_addTest(pSuite, DocumentTest, testImportDeep);
|
|
CppUnit_addTest(pSuite, DocumentTest, testElementsByTagName);
|
|
CppUnit_addTest(pSuite, DocumentTest, testElementsByTagNameNS);
|
|
CppUnit_addTest(pSuite, DocumentTest, testElementById);
|
|
CppUnit_addTest(pSuite, DocumentTest, testElementByIdNS);
|
|
|
|
return pSuite;
|
|
}
|