?? abstractconfigurationtest.cpp
字號:
//
// AbstractConfigurationTest.cpp
//
// $Id: //poco/Main/Util/testsuite/src/AbstractConfigurationTest.cpp#1 $
//
// Copyright (c) 2004-2005, Guenter Obiltschnig/Applied Informatics.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Redistributions in any form must be accompanied by information on
// how to obtain complete source code for this software and any
// accompanying software that uses this software. The source code
// must either be included in the distribution or be available for no
// more than the cost of distribution plus a nominal fee, and must be
// freely redistributable under reasonable conditions. For an
// executable file, complete source code means the source code for all
// modules it contains. It does not include source code for modules or
// files that typically accompany the major components of the operating
// system on which the executable file runs.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
// COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
#include "AbstractConfigurationTest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Util/MapConfiguration.h"
#include "Foundation/AutoPtr.h"
#include "Foundation/Exception.h"
#include <algorithm>
using Util::AbstractConfiguration;
using Util::MapConfiguration;
using Foundation::AutoPtr;
AbstractConfigurationTest::AbstractConfigurationTest(const std::string& name): CppUnit::TestCase(name)
{
}
AbstractConfigurationTest::~AbstractConfigurationTest()
{
}
void AbstractConfigurationTest::testHasProperty()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
assert (pConf->hasProperty("prop1"));
assert (pConf->hasProperty("prop2"));
assert (pConf->hasProperty("prop3.string1"));
assert (!pConf->hasProperty("prop3.string3"));
assert (!pConf->hasProperty("foobar"));
}
void AbstractConfigurationTest::testGetString()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
assert (pConf->getString("prop1") == "foo");
assert (pConf->getString("prop2") == "bar");
assert (pConf->getString("prop3.string1") == "foo");
assert (pConf->getString("prop3.string2") == "bar");
assert (pConf->getString("ref1") == "foobar");
assert (pConf->getRawString("ref1") == "${prop3.string1}${prop3.string2}");
try
{
std::string res = pConf->getString("foo");
fail("nonexistent property - must throw");
}
catch (Foundation::NotFoundException&)
{
}
assert (pConf->getString("prop1", "FOO") == "foo");
assert (pConf->getString("prop2", "BAR") == "bar");
assert (pConf->getString("prop3.string1", "FOO") == "foo");
assert (pConf->getString("prop3.string2", "BAR") == "bar");
assert (pConf->getString("prop3.string3", "FOOBAR") == "FOOBAR");
}
void AbstractConfigurationTest::testGetInt()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
assert (pConf->getInt("prop4.int1") == 42);
assert (pConf->getInt("prop4.int2") == -42);
assert (pConf->getInt("prop4.hex") == 0x1f);
assert (pConf->getInt("ref2") == 42);
try
{
int x = pConf->getInt("prop1");
fail("not a number - must throw");
}
catch (Foundation::SyntaxException&)
{
}
assert (pConf->getInt("prop4.int1", 100) == 42);
assert (pConf->getInt("prop4.int2", 100) == -42);
assert (pConf->getInt("prop4.int3", 100) == 100);
}
void AbstractConfigurationTest::testGetDouble()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
assert (pConf->getDouble("prop4.double1") == 1);
assert (pConf->getDouble("prop4.double2") == -1.5);
try
{
double x = pConf->getDouble("prop1");
fail("not a number - must throw");
}
catch (Foundation::SyntaxException&)
{
}
assert (pConf->getDouble("prop4.double1", 123.5) == 1);
assert (pConf->getDouble("prop4.double2", 123.5) == -1.5);
assert (pConf->getDouble("prop4.double3", 123.5) == 123.5);
}
void AbstractConfigurationTest::testGetBool()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
assert (pConf->getBool("prop4.bool1"));
assert (!pConf->getBool("prop4.bool2"));
assert (pConf->getBool("prop4.bool3"));
assert (!pConf->getBool("prop4.bool4"));
assert (pConf->getBool("prop4.bool5"));
assert (!pConf->getBool("prop4.bool6"));
assert (pConf->getBool("prop4.bool7"));
assert (!pConf->getBool("prop4.bool8"));
try
{
bool x = pConf->getBool("prop1");
fail("not a boolean - must throw");
}
catch (Foundation::SyntaxException&)
{
}
assert (pConf->getBool("prop4.bool1", false));
assert (!pConf->getBool("prop4.bool2", true));
assert (pConf->getBool("prop4.boolx", true));
assert (!pConf->getBool("prop4.booly", false));
}
void AbstractConfigurationTest::testExpand()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
assert (pConf->getString("ref1") == "foobar");
assert (pConf->getInt("ref2") == 42);
try
{
std::string s = pConf->getString("ref3");
fail("circular reference - must throw");
}
catch (Foundation::CircularReferenceException&)
{
}
assert (pConf->getString("ref5") == "${refx}");
assert (pConf->getString("ref6") == "${refx}");
assert (pConf->expand("answer=${prop4.int1}") == "answer=42");
assert (pConf->expand("bool5='${prop4.bool5}'") == "bool5='Yes'");
assert (pConf->expand("undef='${undef}'") == "undef='${undef}'");
assert (pConf->expand("deep='${ref1}'") == "deep='foobar'");
assert (pConf->expand("deep='${ref7}'") == "deep='foobar'");
}
void AbstractConfigurationTest::testSetString()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
pConf->setString("set.string1", "foobar");
pConf->setString("set.string2", "");
assert (pConf->getString("set.string1") == "foobar");
assert (pConf->getString("set.string2") == "");
}
void AbstractConfigurationTest::testSetInt()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
pConf->setInt("set.int1", 42);
pConf->setInt("set.int2", -100);
assert (pConf->getInt("set.int1") == 42);
assert (pConf->getInt("set.int2") == -100);
}
void AbstractConfigurationTest::testSetDouble()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
pConf->setDouble("set.double1", 1.5);
pConf->setDouble("set.double2", -1.5);
assert (pConf->getDouble("set.double1") == 1.5);
assert (pConf->getDouble("set.double2") == -1.5);
}
void AbstractConfigurationTest::testSetBool()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
pConf->setBool("set.bool1", true);
pConf->setBool("set.bool2", false);
assert (pConf->getBool("set.bool1"));
assert (!pConf->getBool("set.bool2"));
}
void AbstractConfigurationTest::testKeys()
{
AutoPtr<AbstractConfiguration> pConf = createConfiguration();
AbstractConfiguration::Keys keys;
pConf->keys(keys);
assert (keys.size() == 11);
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 (std::find(keys.begin(), keys.end(), "prop4") != keys.end());
assert (std::find(keys.begin(), keys.end(), "ref1") != keys.end());
assert (std::find(keys.begin(), keys.end(), "ref2") != keys.end());
assert (std::find(keys.begin(), keys.end(), "ref3") != keys.end());
assert (std::find(keys.begin(), keys.end(), "ref4") != keys.end());
assert (std::find(keys.begin(), keys.end(), "ref5") != keys.end());
assert (std::find(keys.begin(), keys.end(), "ref6") != keys.end());
assert (std::find(keys.begin(), keys.end(), "ref7") != keys.end());
pConf->keys("prop1", keys);
assert (keys.empty());
pConf->keys("prop3", keys);
assert (keys.size() == 2);
assert (std::find(keys.begin(), keys.end(), "string1") != keys.end());
assert (std::find(keys.begin(), keys.end(), "string2") != keys.end());
}
AbstractConfiguration* AbstractConfigurationTest::createConfiguration() const
{
AbstractConfiguration* pConfig = new MapConfiguration;
pConfig->setString("prop1", "foo");
pConfig->setString("prop2", "bar");
pConfig->setString("prop3.string1", "foo");
pConfig->setString("prop3.string2", "bar");
pConfig->setString("prop4.int1", "42");
pConfig->setString("prop4.int2", "-42");
pConfig->setString("prop4.hex", "0x1f");
pConfig->setString("prop4.double1", "1");
pConfig->setString("prop4.double2", "-1.5");
pConfig->setString("prop4.bool1", "1");
pConfig->setString("prop4.bool2", "0");
pConfig->setString("prop4.bool3", "True");
pConfig->setString("prop4.bool4", "FALSE");
pConfig->setString("prop4.bool5", "Yes");
pConfig->setString("prop4.bool6", "no");
pConfig->setString("prop4.bool7", "ON");
pConfig->setString("prop4.bool8", "Off");
pConfig->setString("ref1", "${prop3.string1}${prop3.string2}");
pConfig->setString("ref2", "${prop4.int1}");
pConfig->setString("ref3", "${ref4}");
pConfig->setString("ref4", "${ref3}");
pConfig->setString("ref5", "${refx}");
pConfig->setString("ref6", "${refx");
pConfig->setString("ref7", "${ref1}");
return pConfig;
}
void AbstractConfigurationTest::setUp()
{
}
void AbstractConfigurationTest::tearDown()
{
}
CppUnit::Test* AbstractConfigurationTest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("AbstractConfigurationTest");
CppUnit_addTest(pSuite, AbstractConfigurationTest, testHasProperty);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testGetString);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testGetInt);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testGetDouble);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testGetBool);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testExpand);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testSetString);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testSetInt);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testSetDouble);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testSetBool);
CppUnit_addTest(pSuite, AbstractConfigurationTest, testKeys);
return pSuite;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -