mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 18:07:14 +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.
169 lines
3.5 KiB
C++
169 lines
3.5 KiB
C++
//
|
|
// LoggingRegistryTest.cpp
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "LoggingRegistryTest.h"
|
|
#include "CppUnit/TestCaller.h"
|
|
#include "CppUnit/TestSuite.h"
|
|
#include "Poco/LoggingRegistry.h"
|
|
#include "Poco/ConsoleChannel.h"
|
|
#include "Poco/PatternFormatter.h"
|
|
#include "Poco/AutoPtr.h"
|
|
|
|
|
|
using Poco::LoggingRegistry;
|
|
using Poco::Channel;
|
|
using Poco::ConsoleChannel;
|
|
using Poco::Formatter;
|
|
using Poco::PatternFormatter;
|
|
using Poco::AutoPtr;
|
|
|
|
|
|
LoggingRegistryTest::LoggingRegistryTest(const std::string& name): CppUnit::TestCase(name)
|
|
{
|
|
}
|
|
|
|
|
|
LoggingRegistryTest::~LoggingRegistryTest()
|
|
{
|
|
}
|
|
|
|
|
|
void LoggingRegistryTest::testRegister()
|
|
{
|
|
LoggingRegistry& reg = LoggingRegistry::defaultRegistry();
|
|
|
|
reg.clear();
|
|
|
|
Channel::Ptr pC1 = new ConsoleChannel();
|
|
Channel::Ptr pC2 = new ConsoleChannel();
|
|
Formatter::Ptr pF1 = new PatternFormatter("");
|
|
Formatter::Ptr pF2 = new PatternFormatter("");
|
|
|
|
reg.registerChannel("c1", pC1);
|
|
reg.registerChannel("c2", pC2);
|
|
reg.registerFormatter("f1", pF1);
|
|
reg.registerFormatter("f2", pF2);
|
|
|
|
Channel::Ptr pC = reg.channelForName("c1");
|
|
assertTrue (pC1 == pC);
|
|
pC = reg.channelForName("c2");
|
|
assertTrue (pC2 == pC);
|
|
|
|
Formatter* pF = reg.formatterForName("f1");
|
|
assertTrue (pF1 == pF);
|
|
pF = reg.formatterForName("f2");
|
|
assertTrue (pF2 == pF);
|
|
|
|
try
|
|
{
|
|
pC = reg.channelForName("c3");
|
|
fail("not found - must throw");
|
|
}
|
|
catch (Poco::NotFoundException&)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
void LoggingRegistryTest::testReregister()
|
|
{
|
|
LoggingRegistry& reg = LoggingRegistry::defaultRegistry();
|
|
|
|
reg.clear();
|
|
|
|
Channel::Ptr pC1 = new ConsoleChannel();
|
|
Channel::Ptr pC2 = new ConsoleChannel();
|
|
Channel::Ptr pC1b = new ConsoleChannel();
|
|
AutoPtr<Formatter> pF1 = new PatternFormatter("");
|
|
AutoPtr<Formatter> pF2 = new PatternFormatter("");
|
|
AutoPtr<Formatter> pF1b = new PatternFormatter("");
|
|
|
|
reg.registerChannel("c1", pC1);
|
|
reg.registerChannel("c2", pC2);
|
|
reg.registerFormatter("f1", pF1);
|
|
reg.registerFormatter("f2", pF2);
|
|
|
|
reg.registerChannel("c1", pC1b);
|
|
|
|
Channel::Ptr pC = reg.channelForName("c1");
|
|
assertTrue (pC1b == pC);
|
|
|
|
pC = reg.channelForName("c2");
|
|
assertTrue (pC2 == pC);
|
|
|
|
reg.registerFormatter("f1", pF1b);
|
|
|
|
Formatter::Ptr pF = reg.formatterForName("f1");
|
|
assertTrue (pF1b == pF);
|
|
pF = reg.formatterForName("f2");
|
|
assertTrue (pF2 == pF);
|
|
}
|
|
|
|
|
|
void LoggingRegistryTest::testUnregister()
|
|
{
|
|
LoggingRegistry& reg = LoggingRegistry::defaultRegistry();
|
|
|
|
reg.clear();
|
|
|
|
Channel::Ptr pC1 = new ConsoleChannel();
|
|
Channel::Ptr pC2 = new ConsoleChannel();
|
|
AutoPtr<Formatter> pF1 = new PatternFormatter("");
|
|
AutoPtr<Formatter> pF2 = new PatternFormatter("");
|
|
|
|
reg.registerChannel("c1", pC1);
|
|
reg.registerChannel("c2", pC2);
|
|
reg.registerFormatter("f1", pF1);
|
|
reg.registerFormatter("f2", pF2);
|
|
|
|
reg.unregisterChannel("c1");
|
|
reg.unregisterFormatter("f2");
|
|
|
|
try
|
|
{
|
|
Channel::Ptr pC = reg.channelForName("c1");
|
|
fail("unregistered - must throw");
|
|
}
|
|
catch (Poco::NotFoundException&)
|
|
{
|
|
}
|
|
|
|
try
|
|
{
|
|
Formatter::Ptr pF = reg.formatterForName("f2");
|
|
fail("unregistered - must throw");
|
|
}
|
|
catch (Poco::NotFoundException&)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
void LoggingRegistryTest::setUp()
|
|
{
|
|
}
|
|
|
|
|
|
void LoggingRegistryTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* LoggingRegistryTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("LoggingRegistryTest");
|
|
|
|
CppUnit_addTest(pSuite, LoggingRegistryTest, testRegister);
|
|
CppUnit_addTest(pSuite, LoggingRegistryTest, testReregister);
|
|
CppUnit_addTest(pSuite, LoggingRegistryTest, testUnregister);
|
|
|
|
return pSuite;
|
|
}
|