aboutsummaryrefslogtreecommitdiff
path: root/src/test/cpp/propertyconfiguratortest.cpp
blob: c93c363ce11cafc032feab9274ded88b7bdfc7cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * 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/helpers/properties.h>
#include <log4cxx/propertyconfigurator.h>
#include <log4cxx/logmanager.h>
#include "vectorappender.h"
#include "logunit.h"

using namespace log4cxx;
using namespace log4cxx::helpers;


LOGUNIT_CLASS(PropertyConfiguratorTest)
{
        LOGUNIT_TEST_SUITE(PropertyConfiguratorTest);
                LOGUNIT_TEST(testInherited);
                LOGUNIT_TEST(testNull);
                LOGUNIT_TEST(testAppenderThreshold);
        LOGUNIT_TEST_SUITE_END();

public:
    void testInherited() {
        Properties props;
        props.put(LOG4CXX_STR("log4j.rootLogger"),LOG4CXX_STR("DEBUG,VECTOR1"));
        props.put(LOG4CXX_STR("log4j.logger.org.apache.log4j.PropertyConfiguratorTest"), LOG4CXX_STR("inherited,VECTOR2"));
        props.put(LOG4CXX_STR("log4j.appender.VECTOR1"), LOG4CXX_STR("org.apache.log4j.VectorAppender"));
        props.put(LOG4CXX_STR("log4j.appender.VECTOR2"), LOG4CXX_STR("org.apache.log4j.VectorAppender"));
        PropertyConfigurator::configure(props);
        LoggerPtr logger = Logger::getLogger("org.apache.log4j.PropertyConfiguratorTest");
        LOGUNIT_ASSERT_EQUAL((int) Level::DEBUG_INT,
                logger->getEffectiveLevel()->toInt());
        Logger::getRootLogger()->setLevel(Level::getError());
        LOGUNIT_ASSERT_EQUAL((int) Level::ERROR_INT,
                logger->getEffectiveLevel()->toInt());
        LogManager::resetConfiguration();
    }

    void testNull() {
        Properties props;
        props.put(LOG4CXX_STR("log4j.rootLogger"),LOG4CXX_STR("DEBUG,VECTOR1"));
        props.put(LOG4CXX_STR("log4j.logger.org.apache.log4j.PropertyConfiguratorTest"), LOG4CXX_STR("NuLL,VECTOR2"));
        props.put(LOG4CXX_STR("log4j.appender.VECTOR1"), LOG4CXX_STR("org.apache.log4j.VectorAppender"));
        props.put(LOG4CXX_STR("log4j.appender.VECTOR2"), LOG4CXX_STR("org.apache.log4j.VectorAppender"));
        PropertyConfigurator::configure(props);
        LoggerPtr logger = Logger::getLogger("org.apache.log4j.PropertyConfiguratorTest");
        LOGUNIT_ASSERT_EQUAL((int) Level::DEBUG_INT,
                logger->getEffectiveLevel()->toInt());
        Logger::getRootLogger()->setLevel(Level::getError());
        LOGUNIT_ASSERT_EQUAL((int) Level::ERROR_INT,
                logger->getEffectiveLevel()->toInt());
        LogManager::resetConfiguration();
    }

    void testAppenderThreshold() {
        Properties props;
        props.put(LOG4CXX_STR("log4j.rootLogger"), LOG4CXX_STR("ALL,VECTOR1"));
        props.put(LOG4CXX_STR("log4j.appender.VECTOR1"), LOG4CXX_STR("org.apache.log4j.VectorAppender"));
        props.put(LOG4CXX_STR("log4j.appender.VECTOR1.threshold"), LOG4CXX_STR("WARN"));
        PropertyConfigurator::configure(props);
        LoggerPtr root(Logger::getRootLogger());
        VectorAppenderPtr appender(root->getAppender(LOG4CXX_STR("VECTOR1")));
        LOGUNIT_ASSERT_EQUAL((int) Level::WARN_INT, appender->getThreshold()->toInt());
        LOG4CXX_INFO(root, "Info message");
        LOG4CXX_WARN(root, "Warn message");
        LOG4CXX_WARN(root, "Error message");
        LOGUNIT_ASSERT_EQUAL((size_t) 2, appender->vector.size());        
        LogManager::resetConfiguration();
    }

};


LOGUNIT_TEST_SUITE_REGISTRATION(PropertyConfiguratorTest);