Remove logback related stuff
[controller.git] / opendaylight / config / logback-config / src / test / java / org / opendaylight / controller / config / yang / logback / config / LogbackModuleWithInitialConfigurationTest.java
diff --git a/opendaylight/config/logback-config/src/test/java/org/opendaylight/controller/config/yang/logback/config/LogbackModuleWithInitialConfigurationTest.java b/opendaylight/config/logback-config/src/test/java/org/opendaylight/controller/config/yang/logback/config/LogbackModuleWithInitialConfigurationTest.java
deleted file mode 100644 (file)
index eeed459..0000000
+++ /dev/null
@@ -1,216 +0,0 @@
-/*
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-package org.opendaylight.controller.config.yang.logback.config;
-
-import static org.junit.Assert.assertEquals;
-
-import ch.qos.logback.classic.LoggerContext;
-import ch.qos.logback.classic.encoder.PatternLayoutEncoder;
-import ch.qos.logback.classic.joran.JoranConfigurator;
-import ch.qos.logback.classic.spi.ILoggingEvent;
-import ch.qos.logback.core.joran.spi.JoranException;
-import ch.qos.logback.core.rolling.FixedWindowRollingPolicy;
-import ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy;
-import com.google.common.collect.Lists;
-import java.io.File;
-import java.io.IOException;
-import java.lang.management.ManagementFactory;
-import java.util.ArrayList;
-import java.util.Arrays;
-import java.util.List;
-import javax.management.InstanceAlreadyExistsException;
-import javax.management.InstanceNotFoundException;
-import javax.management.JMX;
-import javax.management.MalformedObjectNameException;
-import javax.management.ObjectName;
-import org.junit.Before;
-import org.junit.Test;
-import org.opendaylight.controller.config.api.ConflictingVersionException;
-import org.opendaylight.controller.config.api.ValidationException;
-import org.opendaylight.controller.config.api.jmx.ObjectNameUtil;
-import org.opendaylight.controller.config.manager.impl.AbstractConfigTest;
-import org.opendaylight.controller.config.manager.impl.factoriesresolver.HardcodedModuleFactoriesResolver;
-import org.opendaylight.controller.config.util.ConfigTransactionClient;
-import org.opendaylight.controller.config.util.ConfigTransactionJMXClient;
-import org.slf4j.LoggerFactory;
-
-public class LogbackModuleWithInitialConfigurationTest extends AbstractConfigTest {
-
-    private LogbackModuleFactory factory;
-
-    @Before
-    public void setUp() throws IOException, ClassNotFoundException {
-
-        factory = new LogbackModuleFactory();
-        super.initConfigTransactionManagerImpl(new HardcodedModuleFactoriesResolver(mockedContext,factory));
-    }
-
-    /**
-     * Tests that initial configuration was changed. Changed attributes:
-     * location, fileName, duplicateInsertTries. Added new FileAppender.
-     */
-    @Test
-    public void test() throws Exception {
-
-        createBeans();
-
-        ConfigTransactionClient transaction = configRegistryClient.createTransaction();
-
-        LogbackModuleMXBean bean = JMX.newMXBeanProxy(ManagementFactory.getPlatformMBeanServer(),
-                transaction.lookupConfigBean("logback", "singleton"), LogbackModuleMXBean.class);
-        assertEquals(1, bean.getConsoleAppenderTO().size());
-        assertEquals(1, bean.getRollingFileAppenderTO().size());
-        assertEquals(0, bean.getFileAppenderTO().size());
-        assertEquals(1, bean.getLoggerTO().size());
-
-        RollingFileAppenderTO rolling = new RollingFileAppenderTO();
-        RollingFileAppenderTO old = bean.getRollingFileAppenderTO().get(0);
-        rolling.setAppend(old.getAppend());
-        rolling.setEncoderPattern(old.getEncoderPattern());
-        rolling.setRollingPolicyType(old.getRollingPolicyType());
-        rolling.setFileName("target/logFile1.log");
-        rolling.setFileNamePattern("target/%i.log");
-        rolling.setMaxFileSize(old.getMaxFileSize());
-        rolling.setMinIndex(old.getMinIndex());
-        rolling.setMaxIndex(old.getMaxIndex());
-        rolling.setName("FILE");
-
-        ConsoleAppenderTO console = new ConsoleAppenderTO();
-        console.setEncoderPattern("%date %level [%thread] %logger{10} %msg%n");
-        console.setName("SYSTEM");
-        console.setThresholdFilter("DEBUG");
-
-        FileAppenderTO file = new FileAppenderTO();
-        file.setName("FILE_APPENDER");
-        file.setAppend(true);
-        file.setEncoderPattern("%-4relative [%thread] %-5level %logger{35} - %msg%n");
-        file.setFileName("target/testFile.log");
-
-        bean.setConsoleAppenderTO(Lists.newArrayList(console));
-        bean.setRollingFileAppenderTO(Lists.newArrayList(rolling));
-        bean.setFileAppenderTO(Lists.newArrayList(file));
-
-        LoggerTO logger = new LoggerTO();
-        logger.setLevel("INFO");
-        logger.setLoggerName("logger");
-        logger.setAppenders(Lists.newArrayList("SYSTEM"));
-
-        LoggerTO fileLogger = new LoggerTO();
-        fileLogger.setLevel("DEBUG");
-        fileLogger.setLoggerName("fileLogger");
-        fileLogger.setAppenders(Lists.newArrayList("FILE_APPENDER"));
-
-        List<LoggerTO> loggers = Lists.newArrayList(logger, fileLogger);
-        bean.setLoggerTO(loggers);
-
-        transaction.commit();
-
-        LogbackModuleMXBean logback = configRegistryClient.newMXBeanProxy(
-                ObjectNameUtil.createReadOnlyModuleON("logback", "singleton"), LogbackModuleMXBean.class);
-
-        List<RollingFileAppenderTO> rollingList = logback.getRollingFileAppenderTO();
-        assertEquals(1, rollingList.size());
-
-        RollingFileAppenderTO rollingApp = rollingList.get(0);
-        assertEquals(rollingApp.getFileName(), "target/logFile1.log");
-        assertEquals(rollingApp.getName(), "FILE");
-
-        List<ConsoleAppenderTO> consoleList = logback.getConsoleAppenderTO();
-        assertEquals(1, consoleList.size());
-
-        ConsoleAppenderTO consoleApp = consoleList.get(0);
-        assertEquals(consoleApp.getThresholdFilter(), "DEBUG");
-        assertEquals(consoleApp.getName(), "SYSTEM");
-
-        List<FileAppenderTO> fileList = logback.getFileAppenderTO();
-        assertEquals(1, fileList.size());
-
-        FileAppenderTO fileApp = fileList.get(0);
-        assertEquals(fileApp.getFileName(), "target/testFile.log");
-        assertEquals(fileApp.getName(), "FILE_APPENDER");
-
-        loggers = logback.getLoggerTO();
-        assertEquals(2, loggers.size());
-        assertEquals("logger", loggers.get(0).getLoggerName());
-        assertEquals("fileLogger", loggers.get(1).getLoggerName());
-
-    }
-
-    public ObjectName createBeans() throws JoranException, InstanceAlreadyExistsException, IOException,
-            MalformedObjectNameException, InstanceNotFoundException, ValidationException, ConflictingVersionException {
-
-        LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory();
-
-        JoranConfigurator configurator = new JoranConfigurator();
-        configurator.setContext(lc);
-        configurator.doConfigure("src/test/resources/simple_config_logback.xml");
-        File f = new File("target/it");
-        if (f.exists()) {
-            cleanDirectory(f);
-        }
-        ch.qos.logback.classic.Logger logger = lc.getLogger(ch.qos.logback.classic.Logger.ROOT_LOGGER_NAME);
-        ch.qos.logback.core.rolling.RollingFileAppender<ILoggingEvent> fileAppender = (ch.qos.logback.core.rolling.RollingFileAppender<ILoggingEvent>) logger
-                .getAppender("VARLOGFILE");
-        fileAppender.start();
-
-        ch.qos.logback.core.ConsoleAppender<ILoggingEvent> consoleAppender = (ch.qos.logback.core.ConsoleAppender<ILoggingEvent>) logger
-                .getAppender("STDOUT");
-        consoleAppender.start();
-        List<RollingFileAppenderTO> rollingAppenders = new ArrayList<>();
-        RollingFileAppenderTO rollingApp = new RollingFileAppenderTO();
-        rollingApp.setAppend(fileAppender.isAppend());
-        PatternLayoutEncoder enc = (PatternLayoutEncoder) fileAppender.getEncoder();
-        rollingApp.setEncoderPattern(enc.getPattern());
-        rollingApp.setFileName(fileAppender.getFile());
-        FixedWindowRollingPolicy rollingPolicy = (FixedWindowRollingPolicy) fileAppender.getRollingPolicy();
-        rollingApp.setRollingPolicyType("FixedWindowRollingPolicy");
-        rollingApp.setMaxIndex(rollingPolicy.getMaxIndex());
-        rollingApp.setMinIndex(rollingPolicy.getMinIndex());
-        SizeBasedTriggeringPolicy<ILoggingEvent> triggeringPolicy = (SizeBasedTriggeringPolicy<ILoggingEvent>) fileAppender
-                .getTriggeringPolicy();
-        rollingApp.setMaxFileSize(LogbackModuleFactory.getMaxFileSize(triggeringPolicy).toString());
-        rollingApp.setName(fileAppender.getName());
-        rollingApp.setFileNamePattern(rollingPolicy.getFileNamePattern());
-        rollingAppenders.add(rollingApp);
-
-        assertEquals("target/osgi.log", rollingApp.getFileName());
-        assertEquals("50 MB", rollingApp.getMaxFileSize());
-        assertEquals("VARLOGFILE", rollingApp.getName());
-
-        List<ConsoleAppenderTO> consoleAppenders = new ArrayList<>();
-        ConsoleAppenderTO consoleApp = new ConsoleAppenderTO();
-        enc = (PatternLayoutEncoder) consoleAppender.getEncoder();
-        consoleApp.setEncoderPattern(enc.getPattern());
-        consoleApp.setName(consoleAppender.getName());
-        consoleApp.setThresholdFilter("ALL");
-        consoleAppenders.add(consoleApp);
-
-        List<FileAppenderTO> fileAppenders = new ArrayList<>();
-
-        List<LoggerTO> loggersDTOs = new ArrayList<>();
-        LoggerTO log = new LoggerTO();
-        log.setAppenders(Arrays.asList(fileAppender.getName(), consoleApp.getName()));
-
-        log.setLevel(logger.getLevel().toString());
-        log.setLoggerName(logger.getName());
-        loggersDTOs.add(log);
-
-        ConfigTransactionJMXClient transaction = configRegistryClient.createTransaction();
-        ObjectName nameRetrieved = transaction.lookupConfigBean(factory.getImplementationName(), LogbackModuleFactory.INSTANCE_NAME);
-        LogbackModuleMXBean bean = transaction.newMXBeanProxy(nameRetrieved, LogbackModuleMXBean.class);
-
-        bean.setLoggerTO(loggersDTOs);
-        bean.setRollingFileAppenderTO(rollingAppenders);
-        bean.setConsoleAppenderTO(consoleAppenders);
-        bean.setFileAppenderTO(fileAppenders);
-
-        transaction.commit();
-
-        return nameRetrieved;
-    }
-}