mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-01 01:16:55 +02:00
236 lines
6.1 KiB
C++
236 lines
6.1 KiB
C++
//
|
|
// LayeredConfigurationTest.cpp
|
|
//
|
|
// $Id: //poco/1.4/Util/testsuite/src/LayeredConfigurationTest.cpp#1 $
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "LayeredConfigurationTest.h"
|
|
#include "Poco/CppUnit/TestCaller.h"
|
|
#include "Poco/CppUnit/TestSuite.h"
|
|
#include "Poco/Util/LayeredConfiguration.h"
|
|
#include "Poco/Util/MapConfiguration.h"
|
|
#include "Poco/AutoPtr.h"
|
|
#include "Poco/Exception.h"
|
|
#include <algorithm>
|
|
|
|
|
|
using Poco::Util::AbstractConfiguration;
|
|
using Poco::Util::LayeredConfiguration;
|
|
using Poco::Util::MapConfiguration;
|
|
using Poco::AutoPtr;
|
|
using Poco::NotFoundException;
|
|
using Poco::RuntimeException;
|
|
|
|
|
|
LayeredConfigurationTest::LayeredConfigurationTest(const std::string& name): AbstractConfigurationTest(name)
|
|
{
|
|
}
|
|
|
|
|
|
LayeredConfigurationTest::~LayeredConfigurationTest()
|
|
{
|
|
}
|
|
|
|
|
|
void LayeredConfigurationTest::testEmpty()
|
|
{
|
|
AutoPtr<LayeredConfiguration> pLC = new LayeredConfiguration;
|
|
|
|
AbstractConfiguration::Keys keys;
|
|
pLC->keys(keys);
|
|
assert (keys.empty());
|
|
|
|
assert (!pLC->hasProperty("foo"));
|
|
try
|
|
{
|
|
pLC->setString("foo", "bar");
|
|
fail("empty LayeredConfiguration - must throw");
|
|
}
|
|
catch (RuntimeException&)
|
|
{
|
|
}
|
|
|
|
try
|
|
{
|
|
std::string s = pLC->getString("foo");
|
|
fail("empty LayeredConfiguration - must throw");
|
|
}
|
|
catch (NotFoundException&)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
void LayeredConfigurationTest::testOneLayer()
|
|
{
|
|
AutoPtr<LayeredConfiguration> pLC = new LayeredConfiguration;
|
|
AutoPtr<MapConfiguration> pMC = new MapConfiguration;
|
|
|
|
pMC->setString("prop1", "value1");
|
|
pMC->setString("prop2", "value2");
|
|
|
|
pLC->addWriteable(pMC, 0);
|
|
|
|
AbstractConfiguration::Keys keys;
|
|
pLC->keys(keys);
|
|
assert (keys.size() == 2);
|
|
assert (std::find(keys.begin(), keys.end(), "prop1") != keys.end());
|
|
assert (std::find(keys.begin(), keys.end(), "prop2") != keys.end());
|
|
|
|
assert (pLC->getString("prop1") == "value1");
|
|
assert (pLC->getString("prop2") == "value2");
|
|
|
|
pLC->setString("prop3", "value3");
|
|
assert (pLC->getString("prop3") == "value3");
|
|
|
|
pLC->remove("prop3");
|
|
assert (!pLC->hasProperty("prop3"));
|
|
}
|
|
|
|
|
|
void LayeredConfigurationTest::testTwoLayers()
|
|
{
|
|
AutoPtr<LayeredConfiguration> pLC = new LayeredConfiguration;
|
|
AutoPtr<MapConfiguration> pMC1 = new MapConfiguration;
|
|
AutoPtr<MapConfiguration> pMC2 = new MapConfiguration;
|
|
|
|
pMC1->setString("prop1", "value1");
|
|
pMC1->setString("prop2", "value2");
|
|
pMC2->setString("prop2", "value3");
|
|
pMC2->setString("prop3", "value4");
|
|
|
|
pLC->add(pMC1, 0);
|
|
pLC->addWriteable(pMC2, 1);
|
|
|
|
AbstractConfiguration::Keys keys;
|
|
pLC->keys(keys);
|
|
assert (keys.size() == 3);
|
|
assert (std::find(keys.begin(), keys.end(), "prop1") != keys.end());
|
|
assert (std::find(keys.begin(), keys.end(), "prop2") != keys.end());
|
|
assert (std::find(keys.begin(), keys.end(), "prop3") != keys.end());
|
|
|
|
assert (pLC->getString("prop1") == "value1");
|
|
assert (pLC->getString("prop2") == "value2");
|
|
assert (pLC->getString("prop3") == "value4");
|
|
|
|
pLC->setString("prop4", "value4");
|
|
assert (pLC->getString("prop4") == "value4");
|
|
|
|
assert (!pMC1->hasProperty("prop4"));
|
|
assert (pMC2->hasProperty("prop4"));
|
|
|
|
pLC->setString("prop1", "value11");
|
|
assert (pLC->getString("prop1") == "value1");
|
|
assert (pMC2->getString("prop1") == "value11");
|
|
|
|
pLC->remove("prop1");
|
|
assert (pLC->getString("prop1") == "value1");
|
|
assert (!pMC2->hasProperty("prop1"));
|
|
}
|
|
|
|
|
|
void LayeredConfigurationTest::testThreeLayers()
|
|
{
|
|
AutoPtr<LayeredConfiguration> pLC = new LayeredConfiguration;
|
|
AutoPtr<MapConfiguration> pMC1 = new MapConfiguration;
|
|
AutoPtr<MapConfiguration> pMC2 = new MapConfiguration;
|
|
AutoPtr<MapConfiguration> pMC3 = new MapConfiguration;
|
|
|
|
pMC1->setString("prop1", "value1");
|
|
pMC1->setString("prop2", "value2");
|
|
pMC1->setString("prop3", "value3");
|
|
pMC2->setString("prop2", "value4");
|
|
pMC2->setString("prop4", "value5");
|
|
pMC3->setString("prop5", "value6");
|
|
pMC3->setString("prop1", "value7");
|
|
|
|
pLC->add(pMC1, 0);
|
|
pLC->add(pMC2, 1);
|
|
pLC->add(pMC3, -1);
|
|
|
|
assert (pLC->getString("prop1") == "value7");
|
|
assert (pLC->getString("prop2") == "value2");
|
|
assert (pLC->getString("prop3") == "value3");
|
|
assert (pLC->getString("prop4") == "value5");
|
|
assert (pLC->getString("prop5") == "value6");
|
|
}
|
|
|
|
|
|
void LayeredConfigurationTest::testRemove()
|
|
{
|
|
AutoPtr<LayeredConfiguration> pLC = new LayeredConfiguration;
|
|
AutoPtr<MapConfiguration> pMC1 = new MapConfiguration;
|
|
AutoPtr<MapConfiguration> pMC2 = new MapConfiguration;
|
|
|
|
pMC1->setString("prop1", "value1");
|
|
pMC1->setString("prop2", "value2");
|
|
pMC2->setString("prop2", "value3");
|
|
pMC2->setString("prop3", "value4");
|
|
|
|
pLC->add(pMC1, 0);
|
|
pLC->add(pMC2, -1);
|
|
|
|
AbstractConfiguration::Keys keys;
|
|
pLC->keys(keys);
|
|
assert (keys.size() == 3);
|
|
assert (std::find(keys.begin(), keys.end(), "prop1") != keys.end());
|
|
assert (std::find(keys.begin(), keys.end(), "prop2") != keys.end());
|
|
assert (std::find(keys.begin(), keys.end(), "prop3") != keys.end());
|
|
|
|
assert (pLC->getString("prop1") == "value1");
|
|
assert (pLC->getString("prop2") == "value3");
|
|
assert (pLC->getString("prop3") == "value4");
|
|
|
|
pLC->removeConfiguration(pMC2);
|
|
keys.clear();
|
|
pLC->keys(keys);
|
|
assert (keys.size() == 2);
|
|
|
|
assert (pLC->getString("prop1") == "value1");
|
|
assert (pLC->getString("prop2") == "value2");
|
|
}
|
|
|
|
|
|
AbstractConfiguration* LayeredConfigurationTest::allocConfiguration() const
|
|
{
|
|
LayeredConfiguration* pLC = new LayeredConfiguration;
|
|
AutoPtr<MapConfiguration> pMC1 = new MapConfiguration;
|
|
AutoPtr<MapConfiguration> pMC2 = new MapConfiguration;
|
|
|
|
pLC->add(pMC1, 0);
|
|
pLC->addWriteable(pMC2, 1);
|
|
|
|
return pLC;
|
|
}
|
|
|
|
|
|
void LayeredConfigurationTest::setUp()
|
|
{
|
|
}
|
|
|
|
|
|
void LayeredConfigurationTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* LayeredConfigurationTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("LayeredConfigurationTest");
|
|
|
|
AbstractConfigurationTest_addTests(pSuite, LayeredConfigurationTest);
|
|
CppUnit_addTest(pSuite, LayeredConfigurationTest, testEmpty);
|
|
CppUnit_addTest(pSuite, LayeredConfigurationTest, testOneLayer);
|
|
CppUnit_addTest(pSuite, LayeredConfigurationTest, testTwoLayers);
|
|
CppUnit_addTest(pSuite, LayeredConfigurationTest, testThreeLayers);
|
|
CppUnit_addTest(pSuite, LayeredConfigurationTest, testRemove);
|
|
|
|
return pSuite;
|
|
}
|