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

org.rhq.test.testng.StdoutReporter Maven / Gradle / Ivy

The newest version!
/*
 * RHQ Management Platform
 * Copyright (C) 2012 Red Hat, Inc.
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 */
package org.rhq.test.testng;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Date;
import java.util.List;

import org.testng.ISuite;
import org.testng.ISuiteListener;
import org.testng.ITestContext;
import org.testng.ITestListener;
import org.testng.ITestNGMethod;
import org.testng.ITestResult;

/**
 * Prints messages to stdout during a TestNG execution, as suites, test classes, and tests are started and finished.
 *
 * @author Ian Springer
 */
public class StdoutReporter implements ISuiteListener, ITestListener {

    @Override
    public void onStart(ISuite suite) {
        List testMethodNames = getTestMethodNames(suite.getAllMethods());
        List excludedTestMethodNames = getTestMethodNames(suite.getExcludedMethods());
        System.out.println("\n(" + getDateTime() + ")" + " Running suite [" + suite.getName() + "] containing tests "
            + testMethodNames + " --- excluding tests " + excludedTestMethodNames + "...");
    }

    @Override
    public void onFinish(ISuite suite) {
        System.out.println("\n(" + getDateTime() + ")" + " Done running suite [" + suite.getName() + "].");
    }

    @Override
    public void onTestStart(ITestResult result) {
        String testMethodName = getQualifiedMethodName(result.getMethod());
        String[] groups = result.getMethod().getGroups();
        System.out.println("\n(" + getDateTime() + ")" + " Running test [" + testMethodName + "] which is in groups "
                + Arrays.toString(groups) + "...");
    }

    @Override
    public void onTestSuccess(ITestResult result) {
        return;
    }

    @Override
    public void onTestFailure(ITestResult result) {
        return;
    }

    @Override
    public void onTestSkipped(ITestResult result) {
        return;
    }

    @Override
    public void onTestFailedButWithinSuccessPercentage(ITestResult result) {
        return;
    }

    @Override
    public void onStart(ITestContext context) {
        String testClassName = getTestClassName(context);
        System.out.println("\n(" + getDateTime() + ")" + " Running test class [" + testClassName + "]...");
    }

    @Override
    public void onFinish(ITestContext context) {
        String testClassName = getTestClassName(context);
        System.out.println("\n(" + getDateTime() + ")" + " Done running test class [" + testClassName + "].");
    }

    private static String getDateTime() {
        return SimpleDateFormat.getTimeInstance().format(new Date());
    }

    private static List getTestMethodNames(Collection methods) {
        List testMethodNames = new ArrayList();
        for (ITestNGMethod method : methods) {
            if (method.isTest()) {
                String testMethodName = getQualifiedMethodName(method);
                testMethodNames.add(testMethodName);
            }
        }
        return testMethodNames;
    }

    private static String getQualifiedMethodName(ITestNGMethod method) {
        return method.getTestClass().getRealClass().getSimpleName() + "." + method.getMethodName();
    }

    private static String getTestClassName(ITestContext context) {
        String testClassName;
        ITestNGMethod[] testMethods = context.getAllTestMethods();
        if (testMethods != null && testMethods.length != 0) {
            testClassName = testMethods[0].getTestClass().getRealClass().getSimpleName();
        } else {
            testClassName = "?";
        }
        return testClassName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy