Files
poco/XML/testsuite/src/ChildNodesTest.cpp
2023-11-26 19:49:50 +01:00

118 lines
2.6 KiB
C++

//
// ChildNodesTest.cpp
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "ChildNodesTest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Poco/DOM/Document.h"
#include "Poco/DOM/Element.h"
#include "Poco/DOM/NodeList.h"
#include "Poco/DOM/AutoPtr.h"
using Poco::XML::Element;
using Poco::XML::Document;
using Poco::XML::NodeList;
using Poco::XML::Node;
using Poco::XML::AutoPtr;
ChildNodesTest::ChildNodesTest(const std::string& name): CppUnit::TestCase(name)
{
}
ChildNodesTest::~ChildNodesTest()
{
}
void ChildNodesTest::testChildNodes()
{
AutoPtr<Document> pDoc = new Document;
AutoPtr<Element> pRoot = pDoc->createElement("root");
assertTrue (!pRoot->hasChildNodes());
AutoPtr<NodeList> pNL = pRoot->childNodes();
assertTrue (pNL->length() == 0);
AutoPtr<Element> pChild1 = pDoc->createElement("child1");
pRoot->appendChild(pChild1);
assertTrue (pRoot->hasChildNodes());
assertTrue (pNL->length() == 1);
assertTrue (pNL->item(0) == pChild1);
AutoPtr<Element> pChild2 = pDoc->createElement("child2");
pRoot->appendChild(pChild2);
assertTrue (pNL->length() == 2);
assertTrue (pNL->item(0) == pChild1);
assertTrue (pNL->item(1) == pChild2);
AutoPtr<Element> pChild0 = pDoc->createElement("child0");
pRoot->insertBefore(pChild0, pChild1);
assertTrue (pNL->length() == 3);
assertTrue (pNL->item(0) == pChild0);
assertTrue (pNL->item(1) == pChild1);
assertTrue (pNL->item(2) == pChild2);
AutoPtr<Element> pChild3 = pDoc->createElement("child3");
pRoot->insertAfterNP(pChild3, pChild1);
assertTrue(pNL->length() == 4);
assertTrue(pNL->item(0) == pChild0);
assertTrue(pNL->item(1) == pChild1);
assertTrue(pNL->item(2) == pChild3);
assertTrue(pNL->item(3) == pChild2);
pRoot->removeChild(pChild1);
assertTrue(pNL->length() == 3);
assertTrue(pNL->item(0) == pChild0);
assertTrue(pNL->item(1) == pChild3);
assertTrue(pNL->item(2) == pChild2);
pRoot->removeChild(pChild0);
assertTrue(pNL->length() == 2);
assertTrue(pNL->item(0) == pChild3);
assertTrue(pNL->item(1) == pChild2);
pRoot->removeChild(pChild2);
assertTrue(pNL->length() == 1);
assertTrue(pNL->item(0) == pChild3);
pRoot->removeChild(pChild3);
assertTrue(pNL->length() == 0);
assertTrue(pNL->item(0) == nullptr);
assertTrue (!pRoot->hasChildNodes());
}
void ChildNodesTest::setUp()
{
}
void ChildNodesTest::tearDown()
{
}
CppUnit::Test* ChildNodesTest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("ChildNodesTest");
CppUnit_addTest(pSuite, ChildNodesTest, testChildNodes);
return pSuite;
}