mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-15 09:17:13 +01:00
Switched to POCO library for unified platform/library interface. Deprecated the external module API. It was creating more problems than solving. Removed most built-in libraries in favor of system libraries for easier maintenance. Cleaned and secured code with help from static analyzers.
103 lines
2.2 KiB
C++
103 lines
2.2 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);
|
|
|
|
pRoot->removeChild(pChild1);
|
|
assertTrue (pNL->length() == 2);
|
|
assertTrue (pNL->item(0) == pChild0);
|
|
assertTrue (pNL->item(1) == pChild2);
|
|
|
|
pRoot->removeChild(pChild0);
|
|
assertTrue (pNL->length() == 1);
|
|
assertTrue (pNL->item(0) == pChild2);
|
|
|
|
pRoot->removeChild(pChild2);
|
|
assertTrue (pNL->length() == 0);
|
|
assertTrue (pNL->item(0) == 0);
|
|
|
|
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;
|
|
}
|