blob: 5a479258c53760f923a9c5e8c667f570ca5dbcc2 [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <log4cxx/logger.h>
#include <log4cxx/xml/domconfigurator.h>
#include <log4cxx/fileappender.h>
#include <log4cxx/varia/fallbackerrorhandler.h>
#include <log4cxx/appender.h>
#include <log4cxx/helpers/loglog.h>
#include <log4cxx/helpers/pool.h>
#include "../logunit.h"
#include "../util/transformer.h"
#include "../util/compare.h"
#include "../util/controlfilter.h"
#include "../util/linenumberfilter.h"
#include <iostream>
namespace
{
/*
The following path is carefully designed to fail on Linux and Windows,
so that the appender FALLBACK is used instead and the test succeeds in
the end. Linux considers "." as current directory, which can not be
created as a file, while Windows strips "/."[1] internally and fails at
":", which is an invalid name.
[1]: https://en.wikipedia.org/wiki/Filename#Comparison_of_filename_limitations
*/
log4cxx::LogString BadPath{ LOG4CXX_STR("output/xyz/:/.") };
}
using namespace log4cxx;
using namespace log4cxx::helpers;
using namespace log4cxx::xml;
LOGUNIT_CLASS(ErrorHandlerTestCase)
{
LOGUNIT_TEST_SUITE(ErrorHandlerTestCase);
LOGUNIT_TEST(test1);
LOGUNIT_TEST(test2);
LOGUNIT_TEST_SUITE_END();
LoggerPtr root;
LoggerPtr logger;
#ifdef _DEBUG
struct Fixture
{
Fixture() {
helpers::LogLog::setInternalDebugging(true);
}
} suiteFixture;
#endif
public:
void setUp()
{
root = Logger::getRootLogger();
logger = Logger::getLogger("test");
}
void tearDown()
{
auto rep = logger->getLoggerRepository();
if (rep)
{
rep->resetConfiguration();
}
}
void test1()
{
auto status = DOMConfigurator::configure("input/xml/fallback1.xml");
LOGUNIT_ASSERT_EQUAL(status, spi::ConfigurationStatus::Configured);
auto appender = root->getAppender(LOG4CXX_STR("PRIMARY"));
auto primary = log4cxx::cast<FileAppender>(appender);
auto errHandle = primary->getErrorHandler();
auto eh = log4cxx::cast<log4cxx::varia::FallbackErrorHandler>(errHandle);
LOGUNIT_ASSERT(eh != 0);
primary->setOption(LOG4CXX_STR("FILE"), BadPath);
Pool p;
primary->activateOptions(p);
LOGUNIT_ASSERT(eh->errorReported());
common();
std::string TEST1_PAT =
"FALLBACK - (root|test) - Message {0-9}";
ControlFilter cf;
cf << TEST1_PAT;
LineNumberFilter lineNumberFilter;
std::vector<Filter*> filters;
filters.push_back(&cf);
filters.push_back(&lineNumberFilter);
try
{
Transformer::transform("output/fallback1", "output/fallbackfiltered1", filters);
}
catch (UnexpectedFormatException& e)
{
std::cout << "UnexpectedFormatException :" << e.what() << std::endl;
throw;
}
LOGUNIT_ASSERT(Compare::compare("output/fallbackfiltered1", "witness/fallback1"));
}
void test2()
{
auto status = DOMConfigurator::configure("input/xml/fallback2.xml");
LOGUNIT_ASSERT_EQUAL(status, spi::ConfigurationStatus::Configured);
auto appender = root->getAppender(LOG4CXX_STR("PRIMARY"));
auto primary = log4cxx::cast<FileAppender>(appender);
auto errHandle = primary->getErrorHandler();
auto eh = log4cxx::cast<varia::FallbackErrorHandler>(errHandle);
LOGUNIT_ASSERT(eh != 0);
// Also check the logger named "test" for a reference to "PRIMARY" when "PRIMARY" fails
eh->setLogger(logger);
primary->setOption(LOG4CXX_STR("FILE"), BadPath);
Pool p;
primary->activateOptions(p);
LOGUNIT_ASSERT(eh->errorReported());
common();
std::string TEST1_PAT =
"FALLBACK - (root|test) - Message {0-9}";
ControlFilter cf;
cf << TEST1_PAT;
LineNumberFilter lineNumberFilter;
std::vector<Filter*> filters;
filters.push_back(&cf);
filters.push_back(&lineNumberFilter);
try
{
Transformer::transform("output/fallback2", "output/fallbackfiltered2", filters);
}
catch (UnexpectedFormatException& e)
{
std::cout << "UnexpectedFormatException :" << e.what() << std::endl;
throw;
}
LOGUNIT_ASSERT(Compare::compare("output/fallbackfiltered2", "witness/fallback1"));
}
void common()
{
int i = -1;
LOG4CXX_DEBUG(logger, "Message " << ++i);
LOG4CXX_DEBUG(root, "Message " << i);
LOG4CXX_INFO(logger, "Message " << ++i);
LOG4CXX_INFO(root, "Message " << i);
LOG4CXX_WARN(logger, "Message " << ++i);
LOG4CXX_WARN(root, "Message " << i);
LOG4CXX_ERROR(logger, "Message " << ++i);
LOG4CXX_ERROR(root, "Message " << i);
LOG4CXX_FATAL(logger, "Message " << ++i);
LOG4CXX_FATAL(root, "Message " << i);
LOG4CXX_DEBUG(logger, "Message " << ++i);
LOG4CXX_DEBUG(root, "Message " << i);
LOG4CXX_ERROR(logger, "Message " << ++i);
LOG4CXX_ERROR(root, "Message " << i);
}
};
LOGUNIT_TEST_SUITE_REGISTRATION(ErrorHandlerTestCase)