mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
4a6bfc086c
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.
91 lines
2.5 KiB
C++
91 lines
2.5 KiB
C++
//
|
|
// AbstractConfigurationTest.h
|
|
//
|
|
// Definition of the AbstractConfigurationTest class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef AbstractConfigurationTest_INCLUDED
|
|
#define AbstractConfigurationTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Util/Util.h"
|
|
#include "CppUnit/TestCase.h"
|
|
#include "Poco/AutoPtr.h"
|
|
#include "Poco/Util/AbstractConfiguration.h"
|
|
|
|
|
|
class AbstractConfigurationTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
AbstractConfigurationTest(const std::string& name);
|
|
virtual ~AbstractConfigurationTest();
|
|
|
|
void testHasProperty();
|
|
void testGetString();
|
|
void testGetInt();
|
|
void testGetInt64();
|
|
void testGetDouble();
|
|
void testGetBool();
|
|
void testExpand();
|
|
void testSetString();
|
|
void testSetInt();
|
|
void testSetUInt();
|
|
void testSetInt64();
|
|
void testSetUInt64();
|
|
void testSetDouble();
|
|
void testSetBool();
|
|
void testKeys();
|
|
void testRemove();
|
|
void testChangeEvents();
|
|
void testRemoveEvents();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
void onPropertyChanging(const void*, Poco::Util::AbstractConfiguration::KeyValue& kv);
|
|
void onPropertyChanged(const void*, const Poco::Util::AbstractConfiguration::KeyValue& kv);
|
|
void onPropertyRemoving(const void*, const std::string& key);
|
|
void onPropertyRemoved(const void*, const std::string& key);
|
|
|
|
protected:
|
|
virtual Poco::Util::AbstractConfiguration::Ptr allocConfiguration() const = 0;
|
|
virtual Poco::Util::AbstractConfiguration::Ptr createConfiguration() const;
|
|
|
|
std::string _changingKey;
|
|
std::string _changingValue;
|
|
std::string _changedKey;
|
|
std::string _changedValue;
|
|
std::string _removingKey;
|
|
std::string _removedKey;
|
|
};
|
|
|
|
|
|
#define AbstractConfigurationTest_addTests(suite, cls) \
|
|
do { \
|
|
CppUnit_addTest(suite, cls, testHasProperty); \
|
|
CppUnit_addTest(suite, cls, testGetString); \
|
|
CppUnit_addTest(suite, cls, testGetInt); \
|
|
CppUnit_addTest(suite, cls, testGetInt64); \
|
|
CppUnit_addTest(suite, cls, testGetDouble); \
|
|
CppUnit_addTest(suite, cls, testGetBool); \
|
|
CppUnit_addTest(suite, cls, testExpand); \
|
|
CppUnit_addTest(suite, cls, testSetString); \
|
|
CppUnit_addTest(suite, cls, testSetInt); \
|
|
CppUnit_addTest(suite, cls, testSetInt64); \
|
|
CppUnit_addTest(suite, cls, testSetDouble); \
|
|
CppUnit_addTest(suite, cls, testSetBool); \
|
|
CppUnit_addTest(suite, cls, testKeys); \
|
|
CppUnit_addTest(suite, cls, testRemove); \
|
|
CppUnit_addTest(suite, cls, testChangeEvents); \
|
|
CppUnit_addTest(suite, cls, testRemoveEvents); \
|
|
} while(0)
|
|
|
|
|
|
#endif // AbstractConfigurationTest_INCLUDED
|