Package net.sourceforge.marathon.junit

Source Code of net.sourceforge.marathon.junit.MarathonResultReporter

/*******************************************************************************
*  Copyright (C) 2010 Jalian Systems Private Ltd.
*  Copyright (C) 2010 Contributors to Marathon OSS Project
*
*  This library is free software; you can redistribute it and/or
*  modify it under the terms of the GNU Library General Public
*  License as published by the Free Software Foundation; either
*  version 2 of the License, or (at your option) any later version.
*
*  This library 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
*  Library General Public License for more details.
*
*  You should have received a copy of the GNU Library General Public
*  License along with this library; if not, write to the Free Software
*  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
*  Project website: http://www.marathontesting.com
*  Help: Marathon help forum @ http://groups.google.com/group/marathon-testing
*
*******************************************************************************/
package net.sourceforge.marathon.junit;

import java.io.FileWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

import junit.framework.AssertionFailedError;
import junit.framework.Test;
import junit.framework.TestListener;
import net.sourceforge.marathon.junit.textui.MarathonTestResult;
import net.sourceforge.marathon.junit.textui.IOutputter;

public class MarathonResultReporter implements TestListener {
    private Test test;
    private Map<Test, MarathonTestResult> testOutputMap;
    private long testStartTime;

    public MarathonResultReporter(Test test) {
        this.test = test;
        testOutputMap = new HashMap<Test, MarathonTestResult>();
    }

    public synchronized void startTest(Test test) {
        testOutputMap.put(test, new MarathonTestResult(test));
        testStartTime = System.currentTimeMillis();
    }

    public synchronized void endTest(Test test) {
        long testEndTime = System.currentTimeMillis();
        double duration = (testEndTime - testStartTime) / (1000.0);
        MarathonTestResult result = (MarathonTestResult) testOutputMap.get(test);
        if (result != null) {
            result.setDuration(duration);
        }
    }

    public synchronized void addFailure(Test test, AssertionFailedError error) {
        addDefect(test, error, MarathonTestResult.STATUS_FAILURE);
    }

    public synchronized void addError(Test test, Throwable throwable) {
        addDefect(test, throwable, MarathonTestResult.STATUS_ERROR);
    }

    private void addDefect(Test test, Throwable throwable, int status) {
        MarathonTestResult result = (MarathonTestResult) testOutputMap.get(test);
        if (result != null) {
            result.setStatus(status);
            result.setThrowable(throwable);
        }
    }

    public void generateReport(IOutputter outputter, String fileName) {
        FileWriter writer = null;
        try {
            writer = new FileWriter(fileName);
            outputter.output(writer, test, testOutputMap);
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (writer != null)
                try {
                    writer.close();
                } catch (IOException e1) {
                    e1.printStackTrace();
                }
        }
    }
}
TOP

Related Classes of net.sourceforge.marathon.junit.MarathonResultReporter

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.