mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-23 13:17:14 +01:00
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.
139 lines
3.2 KiB
C++
139 lines
3.2 KiB
C++
//
|
|
// ChannelTest.cpp
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "ChannelTest.h"
|
|
#include "CppUnit/TestCaller.h"
|
|
#include "CppUnit/TestSuite.h"
|
|
#include "Poco/SplitterChannel.h"
|
|
#include "Poco/AsyncChannel.h"
|
|
#include "Poco/AutoPtr.h"
|
|
#include "Poco/Message.h"
|
|
#include "Poco/Formatter.h"
|
|
#include "Poco/FormattingChannel.h"
|
|
#include "Poco/ConsoleChannel.h"
|
|
#include "Poco/StreamChannel.h"
|
|
#include "TestChannel.h"
|
|
#include <sstream>
|
|
|
|
|
|
using Poco::SplitterChannel;
|
|
using Poco::AsyncChannel;
|
|
using Poco::FormattingChannel;
|
|
using Poco::ConsoleChannel;
|
|
using Poco::StreamChannel;
|
|
using Poco::Formatter;
|
|
using Poco::Message;
|
|
using Poco::AutoPtr;
|
|
|
|
|
|
class SimpleFormatter: public Formatter
|
|
{
|
|
public:
|
|
void format(const Message& msg, std::string& text)
|
|
{
|
|
text = msg.getSource();
|
|
text.append(": ");
|
|
text.append(msg.getText());
|
|
}
|
|
};
|
|
|
|
|
|
ChannelTest::ChannelTest(const std::string& name): CppUnit::TestCase(name)
|
|
{
|
|
}
|
|
|
|
|
|
ChannelTest::~ChannelTest()
|
|
{
|
|
}
|
|
|
|
|
|
void ChannelTest::testSplitter()
|
|
{
|
|
AutoPtr<TestChannel> pChannel = new TestChannel;
|
|
AutoPtr<SplitterChannel> pSplitter = new SplitterChannel;
|
|
pSplitter->addChannel(pChannel);
|
|
pSplitter->addChannel(pChannel);
|
|
Message msg;
|
|
pSplitter->log(msg);
|
|
assertTrue (pChannel->list().size() == 2);
|
|
}
|
|
|
|
|
|
void ChannelTest::testAsync()
|
|
{
|
|
AutoPtr<TestChannel> pChannel = new TestChannel;
|
|
AutoPtr<AsyncChannel> pAsync = new AsyncChannel(pChannel);
|
|
pAsync->open();
|
|
Message msg;
|
|
pAsync->log(msg);
|
|
pAsync->log(msg);
|
|
pAsync->close();
|
|
assertTrue (pChannel->list().size() == 2);
|
|
}
|
|
|
|
|
|
void ChannelTest::testFormatting()
|
|
{
|
|
AutoPtr<TestChannel> pChannel = new TestChannel;
|
|
AutoPtr<Formatter> pFormatter = new SimpleFormatter;
|
|
AutoPtr<FormattingChannel> pFormatterChannel = new FormattingChannel(pFormatter, pChannel);
|
|
Message msg("Source", "Text", Message::PRIO_INFORMATION);
|
|
pFormatterChannel->log(msg);
|
|
assertTrue (pChannel->list().size() == 1);
|
|
assertTrue (pChannel->list().begin()->getText() == "Source: Text");
|
|
}
|
|
|
|
|
|
void ChannelTest::testConsole()
|
|
{
|
|
AutoPtr<ConsoleChannel> pChannel = new ConsoleChannel;
|
|
AutoPtr<Formatter> pFormatter = new SimpleFormatter;
|
|
AutoPtr<FormattingChannel> pFormatterChannel = new FormattingChannel(pFormatter, pChannel);
|
|
Message msg("Source", "Text", Message::PRIO_INFORMATION);
|
|
pFormatterChannel->log(msg);
|
|
}
|
|
|
|
|
|
void ChannelTest::testStream()
|
|
{
|
|
std::ostringstream str;
|
|
AutoPtr<StreamChannel> pChannel = new StreamChannel(str);
|
|
AutoPtr<Formatter> pFormatter = new SimpleFormatter;
|
|
AutoPtr<FormattingChannel> pFormatterChannel = new FormattingChannel(pFormatter, pChannel);
|
|
Message msg("Source", "Text", Message::PRIO_INFORMATION);
|
|
pFormatterChannel->log(msg);
|
|
assertTrue (str.str().find("Source: Text") == 0);
|
|
}
|
|
|
|
|
|
void ChannelTest::setUp()
|
|
{
|
|
}
|
|
|
|
|
|
void ChannelTest::tearDown()
|
|
{
|
|
}
|
|
|
|
|
|
CppUnit::Test* ChannelTest::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("ChannelTest");
|
|
|
|
CppUnit_addTest(pSuite, ChannelTest, testSplitter);
|
|
CppUnit_addTest(pSuite, ChannelTest, testAsync);
|
|
CppUnit_addTest(pSuite, ChannelTest, testFormatting);
|
|
CppUnit_addTest(pSuite, ChannelTest, testConsole);
|
|
CppUnit_addTest(pSuite, ChannelTest, testStream);
|
|
|
|
return pSuite;
|
|
}
|