mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-06 10:55:59 +02:00
325 lines
12 KiB
C++
325 lines
12 KiB
C++
//
|
|
// LoggingConfiguratorTest.cpp
|
|
//
|
|
// $Id: //poco/1.2/Util/testsuite/src/LoggingConfiguratorTest.cpp#1 $
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person or organization
|
|
// obtaining a copy of the software and accompanying documentation covered by
|
|
// this license (the "Software") to use, reproduce, display, distribute,
|
|
// execute, and transmit the Software, and to prepare derivative works of the
|
|
// Software, and to permit third-parties to whom the Software is furnished to
|
|
// do so, all subject to the following:
|
|
//
|
|
// The copyright notices in the Software and this entire statement, including
|
|
// the above license grant, this restriction and the following disclaimer,
|
|
// must be included in all copies of the Software, in whole or in part, and
|
|
// all derivative works of the Software, unless such copies or derivative
|
|
// works are solely in the form of machine-executable object code generated by
|
|
// a source language processor.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
// DEALINGS IN THE SOFTWARE.
|
|
//
|
|
|
|
|
|
#include "LoggingConfiguratorTest.h"
|
|
#include "CppUnit/TestCaller.h"
|
|
#include "CppUnit/TestSuite.h"
|
|
#include "Poco/Util/LoggingConfigurator.h"
|
|
#include "Poco/Util/PropertyFileConfiguration.h"
|
|
#include "Poco/LoggingRegistry.h"
|
|
#include "Poco/ConsoleChannel.h"
|
|
#include "Poco/FileChannel.h"
|
|
#include "Poco/SplitterChannel.h"
|
|
#include "Poco/FormattingChannel.h"
|
|
#include "Poco/PatternFormatter.h"
|
|
#include "Poco/Logger.h"
|
|
#include "Poco/Message.h"
|
|
#include "Poco/AutoPtr.h"
|
|
#include <sstream>
|
|
|
|
|
|
using Poco::Util::LoggingConfigurator;
|
|
using Poco::Util::PropertyFileConfiguration;
|
|
using Poco::LoggingRegistry;
|
|
using Poco::Channel;
|
|
using Poco::ConsoleChannel;
|
|
using Poco::FileChannel;
|
|
using Poco::SplitterChannel;
|
|
using Poco::FormattingChannel;
|
|
using Poco::PatternFormatter;
|
|
using Poco::Logger;
|
|
using Poco::Message;
|
|
using Poco::AutoPtr;
|
|
|
|
|
|
LoggingConfiguratorTest::LoggingConfiguratorTest(const std::string& name): CppUnit::TestCase(name)
|
|
{
|
|
}
|
|
|
|
|
|
LoggingConfiguratorTest::~LoggingConfiguratorTest()
|
|
{
|
|
}
|
|
|
|
|
|
void LoggingConfiguratorTest::testConfigurator()
|
|
{
|
|
static const std::string config =
|
|
"logging.loggers.root.channel = c1\n"
|
|
"logging.loggers.root.level = warning\n"
|
|
"logging.loggers.l1.name = logger1\n"
|
|
"logging.loggers.l1.channel.class = FileChannel\n"
|
|
"logging.loggers.l1.channel.pattern = %s: [%p] %t\n"
|
|
"logging.loggers.l1.channel.path = logfile.log\n"
|
|
"logging.loggers.l1.level = information\n"
|
|
"logging.loggers.l2.name = logger2\n"
|
|
"logging.loggers.l2.channel.class = SplitterChannel\n"
|
|
"logging.loggers.l2.channel.channel1 = c2\n"
|
|
"logging.loggers.l2.channel.channel2 = c3\n"
|
|
"logging.loggers.l2.level = debug\n"
|
|
"logging.channels.c1.class = ConsoleChannel\n"
|
|
"logging.channels.c1.formatter = f1\n"
|
|
"logging.channels.c2.class = FileChannel\n"
|
|
"logging.channels.c2.path = ${system.tempDir}/sample.log\n"
|
|
"logging.channels.c2.formatter.class = PatternFormatter\n"
|
|
"logging.channels.c2.formatter.pattern = %s: {%p} %t\n"
|
|
"logging.channels.c3.class = ConsoleChannel\n"
|
|
"logging.channels.c3.pattern = %s: [%p] %t\n"
|
|
"logging.formatters.f1.class = PatternFormatter\n"
|
|
"logging.formatters.f1.pattern = %s-[%p] %t\n"
|
|
"logging.formatters.f1.times = UTC\n";
|
|
|
|
std::istringstream istr(config);
|
|
AutoPtr<PropertyFileConfiguration> pConfig = new PropertyFileConfiguration(istr);
|
|
|
|
LoggingConfigurator configurator;
|
|
configurator.configure(pConfig);
|
|
|
|
Logger& root = Logger::get("");
|
|
assert (root.getLevel() == Message::PRIO_WARNING);
|
|
FormattingChannel* pFC = dynamic_cast<FormattingChannel*>(root.getChannel());
|
|
assertNotNull (pFC);
|
|
assertNotNull (dynamic_cast<ConsoleChannel*>(pFC->getChannel()));
|
|
assertNotNull (dynamic_cast<PatternFormatter*>(pFC->getFormatter()));
|
|
assert (static_cast<PatternFormatter*>(pFC->getFormatter())->getProperty("pattern") == "%s-[%p] %t");
|
|
|
|
Logger& logger1 = Logger::get("logger1");
|
|
assert (logger1.getLevel() == Message::PRIO_INFORMATION);
|
|
pFC = dynamic_cast<FormattingChannel*>(logger1.getChannel());
|
|
assertNotNull (pFC);
|
|
assertNotNull (dynamic_cast<FileChannel*>(pFC->getChannel()));
|
|
assertNotNull (dynamic_cast<PatternFormatter*>(pFC->getFormatter()));
|
|
assert (static_cast<PatternFormatter*>(pFC->getFormatter())->getProperty("pattern") == "%s: [%p] %t");
|
|
|
|
Logger& logger2 = Logger::get("logger2");
|
|
assert (logger2.getLevel() == Message::PRIO_DEBUG);
|
|
assertNotNull (dynamic_cast<SplitterChannel*>(logger2.getChannel()));
|
|
}
|
|
|
|
|
|
void LoggingConfiguratorTest::testBadConfiguration1()
|
|
{
|
|
// this is mainly testing for memory leaks in case of
|
|
// a bad configuration.
|
|
|
|
static const std::string config =
|
|
"logging.loggers.root.channel = c1\n"
|
|
"logging.loggers.root.level = warning\n"
|
|
"logging.loggers.l1.name = logger1\n"
|
|
"logging.loggers.l1.channel.class = FileChannel\n"
|
|
"logging.loggers.l1.channel.pattern = %s: [%p] %t\n"
|
|
"logging.loggers.l1.channel.path = logfile.log\n"
|
|
"logging.loggers.l1.level = information\n"
|
|
"logging.loggers.l2.name = logger2\n"
|
|
"logging.loggers.l2.channel.class = UnknownChannel\n"
|
|
"logging.loggers.l2.level = debug\n"
|
|
"logging.channels.c1.class = ConsoleChannel\n"
|
|
"logging.channels.c1.formatter = f1\n"
|
|
"logging.channels.c2.class = FileChannel\n"
|
|
"logging.channels.c2.path = ${system.tempDir}/sample.log\n"
|
|
"logging.channels.c2.formatter.class = PatternFormatter\n"
|
|
"logging.channels.c2.formatter.pattern = %s: {%p} %t\n"
|
|
"logging.channels.c3.class = ConsoleChannel\n"
|
|
"logging.channels.c3.pattern = %s: [%p] %t\n"
|
|
"logging.formatters.f1.class = PatternFormatter\n"
|
|
"logging.formatters.f1.pattern = %s-[%p] %t\n"
|
|
"logging.formatters.f1.times = UTC\n";
|
|
|
|
std::istringstream istr(config);
|
|
AutoPtr<PropertyFileConfiguration> pConfig = new PropertyFileConfiguration(istr);
|
|
|
|
LoggingConfigurator configurator;
|
|
try
|
|
{
|
|
configurator.configure(pConfig);
|
|
fail("bad configuration - must throw");
|
|
}
|
|
catch (Poco::Exception&)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
void LoggingConfiguratorTest::testBadConfiguration2()
|
|
{
|
|
// this is mainly testing for memory leaks in case of
|
|
// a bad configuration.
|
|
|
|
static const std::string config =
|
|
"logging.loggers.root.channel = c1\n"
|
|
"logging.loggers.root.level = unknown\n"
|
|
"logging.loggers.l1.name = logger1\n"
|
|
"logging.loggers.l1.channel.class = FileChannel\n"
|
|
"logging.loggers.l1.channel.pattern = %s: [%p] %t\n"
|
|
"logging.loggers.l1.channel.path = logfile.log\n"
|
|
"logging.loggers.l1.level = information\n"
|
|
"logging.loggers.l2.name = logger2\n"
|
|
"logging.loggers.l2.channel.class = SplitterChannel\n"
|
|
"logging.loggers.l2.level = debug\n"
|
|
"logging.channels.c1.class = ConsoleChannel\n"
|
|
"logging.channels.c1.formatter = f1\n"
|
|
"logging.channels.c2.class = FileChannel\n"
|
|
"logging.channels.c2.path = ${system.tempDir}/sample.log\n"
|
|
"logging.channels.c2.formatter.class = PatternFormatter\n"
|
|
"logging.channels.c2.formatter.pattern = %s: {%p} %t\n"
|
|
"logging.channels.c3.class = ConsoleChannel\n"
|
|
"logging.channels.c3.pattern = %s: [%p] %t\n"
|
|
"logging.formatters.f1.class = PatternFormatter\n"
|
|
"logging.formatters.f1.pattern = %s-[%p] %t\n"
|
|
"logging.formatters.f1.times = UTC\n";
|
|
|
|
std::istringstream istr(config);
|
|
AutoPtr<PropertyFileConfiguration> pConfig = new PropertyFileConfiguration(istr);
|
|
|
|
LoggingConfigurator configurator;
|
|
try
|
|
{
|
|
configurator.configure(pConfig);
|
|
fail("bad configuration - must throw");
|
|
}
|
|
catch (Poco::Exception&)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
void LoggingConfiguratorTest::testBadConfiguration3()
|
|
{
|
|
// this is mainly testing for memory leaks in case of
|
|
// a bad configuration.
|
|
|
|
static const std::string config =
|
|
"logging.loggers.root.channel = c1\n"
|
|
"logging.loggers.root.level = warning\n"
|
|
"logging.loggers.l1.name = logger1\n"
|
|
"logging.loggers.l1.channel.class = FileChannel\n"
|
|
"logging.loggers.l1.channel.pattern = %s: [%p] %t\n"
|
|
"logging.loggers.l1.channel.path = logfile.log\n"
|
|
"logging.loggers.l1.level = information\n"
|
|
"logging.loggers.l2.name = logger2\n"
|
|
"logging.loggers.l2.channel.class = UnknownChannel\n"
|
|
"logging.loggers.l2.level = debug\n"
|
|
"logging.channels.c1.class = ConsoleChannel\n"
|
|
"logging.channels.c1.formatter = f1\n"
|
|
"logging.channels.c2.class = FileChannel\n"
|
|
"logging.channels.c2.path = ${system.tempDir}/sample.log\n"
|
|
"logging.channels.c2.formatter.class = UnknownFormatter\n"
|
|
"logging.channels.c2.formatter.pattern = %s: {%p} %t\n"
|
|
"logging.channels.c3.class = ConsoleChannel\n"
|
|
"logging.channels.c3.pattern = %s: [%p] %t\n"
|
|
"logging.formatters.f1.class = PatternFormatter\n"
|
|
"logging.formatters.f1.pattern = %s-[%p] %t\n"
|
|
"logging.formatters.f1.times = UTC\n";
|
|
|
|
std::istringstream istr(config);
|
|
AutoPtr<PropertyFileConfiguration> pConfig = new PropertyFileConfiguration(istr);
|
|
|
|
LoggingConfigurator configurator;
|
|
try
|
|
{
|
|
configurator.configure(pConfig);
|
|
fail("bad configuration - must throw");
|
|
}
|
|
catch (Poco::Exception&)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
void LoggingConfiguratorTest::testBadConfiguration4()
|
|
{
|
|
// this is mainly testing for memory leaks in case of
|
|
// a bad configuration.
|
|
|
|
static const std::string config =
|
|
"logging.loggers.root.channel = c1\n"
|
|
"logging.loggers.root.level = warning\n"
|
|
"logging.loggers.l1.name = logger1\n"
|
|
"logging.loggers.l1.channel.class = FileChannel\n"
|
|
"logging.loggers.l1.channel.pattern = %s: [%p] %t\n"
|
|
"logging.loggers.l1.channel.path = logfile.log\n"
|
|
"logging.loggers.l1.level = information\n"
|
|
"logging.loggers.l2.name = logger2\n"
|
|
"logging.loggers.l2.channel.class = UnknownChannel\n"
|
|
"logging.loggers.l2.level = debug\n"
|
|
"logging.channels.c1.class = ConsoleChannel\n"
|
|
"logging.channels.c1.formatter = f1\n"
|
|
"logging.channels.c2.class = FileChannel\n"
|
|
"logging.channels.c2.path = ${system.tempDir}/sample.log\n"
|
|
"logging.channels.c2.formatter.class = PatternFormatter\n"
|
|
"logging.channels.c2.formatter.pattern = %s: {%p} %t\n"
|
|
"logging.channels.c2.formatter.unknown = FOO\n"
|
|
"logging.channels.c3.class = ConsoleChannel\n"
|
|
"logging.channels.c3.pattern = %s: [%p] %t\n"
|
|
"logging.formatters.f1.class = PatternFormatter\n"
|
|
"logging.formatters.f1.pattern = %s-[%p] %t\n"
|
|
"logging.formatters.f1.times = UTC\n";
|
|
|
|
std::istringstream istr(config);
|
|
AutoPtr<PropertyFileConfiguration> pConfig = new PropertyFileConfiguration(istr);
|
|
|
|
LoggingConfigurator configurator;
|
|
try
|
|
{
|
|
configurator.configure(pConfig);
|
|
fail("bad configuration - must throw");
|
|
}
|
|
catch (Poco::Exception&)
|
|
{
|
|
}
|
|
}
|
|
|
|
|
|
void LoggingConfiguratorTest::setUp()
|
|
{
|
|
LoggingRegistry::defaultRegistry().clear();
|
|
}
|
|
|
|
|
|
void LoggingConfiguratorTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* LoggingConfiguratorTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("LoggingConfiguratorTest");
|
|
|
|
CppUnit_addTest(pSuite, LoggingConfiguratorTest, testConfigurator);
|
|
CppUnit_addTest(pSuite, LoggingConfiguratorTest, testBadConfiguration1);
|
|
CppUnit_addTest(pSuite, LoggingConfiguratorTest, testBadConfiguration2);
|
|
CppUnit_addTest(pSuite, LoggingConfiguratorTest, testBadConfiguration3);
|
|
CppUnit_addTest(pSuite, LoggingConfiguratorTest, testBadConfiguration4);
|
|
|
|
return pSuite;
|
|
}
|