mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-24 05:37:14 +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.
129 lines
3.6 KiB
C++
129 lines
3.6 KiB
C++
//
|
|
// ConfigurationViewTest.cpp
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "ConfigurationViewTest.h"
|
|
#include "CppUnit/TestCaller.h"
|
|
#include "CppUnit/TestSuite.h"
|
|
#include "Poco/Util/MapConfiguration.h"
|
|
#include "Poco/AutoPtr.h"
|
|
#include "Poco/Exception.h"
|
|
#include <algorithm>
|
|
|
|
|
|
using Poco::Util::AbstractConfiguration;
|
|
using Poco::Util::MapConfiguration;
|
|
using Poco::AutoPtr;
|
|
|
|
|
|
ConfigurationViewTest::ConfigurationViewTest(const std::string& name): AbstractConfigurationTest(name)
|
|
{
|
|
}
|
|
|
|
|
|
ConfigurationViewTest::~ConfigurationViewTest()
|
|
{
|
|
}
|
|
|
|
|
|
void ConfigurationViewTest::testView()
|
|
{
|
|
AbstractConfiguration::Ptr pConf = createConfiguration();
|
|
AbstractConfiguration::Ptr pView = pConf->createView("");
|
|
assertTrue (pView->hasProperty("prop1"));
|
|
assertTrue (pView->hasProperty("prop2"));
|
|
|
|
AbstractConfiguration::Keys keys;
|
|
pView->keys(keys);
|
|
assertTrue (keys.size() == 13);
|
|
assertTrue (std::find(keys.begin(), keys.end(), "prop1") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "prop2") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "prop3") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "prop4") != keys.end());
|
|
|
|
assertTrue (pView->getString("prop1") == "foo");
|
|
assertTrue (pView->getString("prop3.string1") == "foo");
|
|
|
|
pView->setString("prop6", "foobar");
|
|
assertTrue (pConf->getString("prop6") == "foobar");
|
|
|
|
pView = pConf->createView("prop1");
|
|
pView->keys(keys);
|
|
assertTrue (keys.empty());
|
|
assertTrue (pView->hasProperty("prop1"));
|
|
|
|
pView->setString("prop11", "foobar");
|
|
assertTrue (pConf->getString("prop1.prop11") == "foobar");
|
|
|
|
pView = pConf->createView("prop3");
|
|
pView->keys(keys);
|
|
assertTrue (keys.size() == 2);
|
|
assertTrue (std::find(keys.begin(), keys.end(), "string1") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "string2") != keys.end());
|
|
|
|
assertTrue (pView->getString("string1") == "foo");
|
|
assertTrue (pView->getString("string2") == "bar");
|
|
|
|
pView->setString("string3", "foobar");
|
|
assertTrue (pConf->getString("prop3.string3") == "foobar");
|
|
|
|
pView = pConf->createView("prop5");
|
|
pView->keys(keys);
|
|
assertTrue (keys.size() == 4);
|
|
assertTrue (std::find(keys.begin(), keys.end(), "string1") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "string1") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "sub1") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "sub2") != keys.end());
|
|
|
|
assertTrue (pView->getString("sub1.string1") == "FOO");
|
|
assertTrue (pView->getString("sub2.string2") == "Bar");
|
|
|
|
pView = pConf->createView("prop5.sub1");
|
|
pView->keys(keys);
|
|
assertTrue (keys.size() == 2);
|
|
assertTrue (std::find(keys.begin(), keys.end(), "string1") != keys.end());
|
|
assertTrue (std::find(keys.begin(), keys.end(), "string2") != keys.end());
|
|
|
|
assertTrue (pView->getString("string1") == "FOO");
|
|
assertTrue (pView->getString("string2") == "BAR");
|
|
|
|
pView->setString("string3", "foobar");
|
|
assertTrue (pConf->getString("prop5.sub1.string3") == "foobar");
|
|
|
|
pView->remove("string3");
|
|
assertTrue (!pConf->hasProperty("prop5.sub1.string3"));
|
|
}
|
|
|
|
|
|
AbstractConfiguration::Ptr ConfigurationViewTest::allocConfiguration() const
|
|
{
|
|
return new MapConfiguration;
|
|
}
|
|
|
|
|
|
void ConfigurationViewTest::setUp()
|
|
{
|
|
}
|
|
|
|
|
|
void ConfigurationViewTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* ConfigurationViewTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("ConfigurationViewTest");
|
|
|
|
AbstractConfigurationTest_addTests(pSuite, ConfigurationViewTest);
|
|
CppUnit_addTest(pSuite, ConfigurationViewTest, testView);
|
|
|
|
return pSuite;
|
|
}
|