All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.synopsys.integration.test.tool.TestLogger Maven / Gradle / Ivy

There is a newer version: 4.0.8
Show newest version
/**
 * integration-test-common
 *
 * Copyright (C) 2018 Black Duck Software, Inc.
 * http://www.blackducksoftware.com/
 *
 * 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.
 */
package com.synopsys.integration.test.tool;

import java.io.PrintWriter;
import java.io.StringWriter;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.lang3.StringUtils;

import com.synopsys.integration.log.IntLogger;
import com.synopsys.integration.log.LogLevel;

public class TestLogger extends IntLogger {
    public static final int DEFAULT_LOG_SIZE = 1000;

    private LogLevel logLevel = LogLevel.TRACE;

    private final List outputList;
    private final List errorList;

    public TestLogger() {
        outputList = new ArrayList<>();
        errorList = new ArrayList<>();
    }

    public List getOutputList() {
        return outputList;
    }

    public List getErrorList() {
        return errorList;
    }

    public void resetOutputList() {
        outputList.clear();
    }

    public void resetErrorList() {
        errorList.clear();
    }

    public void resetAllOutput() {
        resetOutputList();
        resetErrorList();
    }

    public String getOutputString() {
        return StringUtils.join(outputList, System.lineSeparator());
    }

    public String getErrorOutputString() {
        if (errorList == null || errorList.isEmpty()) {
            return "";
        }

        final List stackTraces = new ArrayList<>();
        for (final Throwable e : errorList) {
            final StringWriter stringWriter = new StringWriter();
            e.printStackTrace(new PrintWriter(stringWriter));
            stackTraces.add(stringWriter.toString());
        }

        return StringUtils.join(stackTraces, System.lineSeparator());
    }

    @Override
    public void alwaysLog(final String txt) {
        System.out.println(String.format("always log: %s", txt));
        outputList.add(txt);
    }

    @Override
    public void debug(final String txt) {
        System.out.println(String.format("debug: %s", txt));
        outputList.add(txt);
    }

    @Override
    public void debug(final String txt, final Throwable e) {
        debug(txt);
        System.out.println(String.format("exception: %s", e.getMessage()));
        errorList.add(e);
    }

    @Override
    public void error(final Throwable e) {
        System.out.println(String.format("error: exception: %s", e.getMessage()));
        errorList.add(e);
    }

    @Override
    public void error(final String txt) {
        System.out.println(String.format("error: %s", txt));
        outputList.add(txt);
    }

    @Override
    public void error(final String txt, final Throwable e) {
        error(txt);
        error(e);
    }

    @Override
    public void info(final String txt) {
        System.out.println(String.format("info: %s", txt));
        outputList.add(txt);
    }

    @Override
    public void trace(final String txt) {
        outputList.add(txt);
    }

    @Override
    public void trace(final String txt, final Throwable e) {
        trace(txt);
        errorList.add(e);
    }

    @Override
    public void warn(final String txt) {
        System.out.println(String.format("warn: %s", txt));
        outputList.add(txt);
    }

    @Override
    public void setLogLevel(final LogLevel level) {
        logLevel = level;
    }

    @Override
    public LogLevel getLogLevel() {
        return logLevel;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy