~ubuntu-branches/ubuntu/jaunty/ant/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/main/org/apache/tools/ant/taskdefs/optional/junit/SummaryJUnitResultFormatter.java

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Gybas
  • Date: 2002-02-14 14:28:48 UTC
  • Revision ID: james.westby@ubuntu.com-20020214142848-2ww7ynmqkj31vlmn
Tags: upstream-1.4.1
ImportĀ upstreamĀ versionĀ 1.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * The Apache Software License, Version 1.1
 
3
 *
 
4
 * Copyright (c) 2000 The Apache Software Foundation.  All rights
 
5
 * reserved.
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without
 
8
 * modification, are permitted provided that the following conditions
 
9
 * are met:
 
10
 *
 
11
 * 1. Redistributions of source code must retain the above copyright
 
12
 *    notice, this list of conditions and the following disclaimer.
 
13
 *
 
14
 * 2. Redistributions in binary form must reproduce the above copyright
 
15
 *    notice, this list of conditions and the following disclaimer in
 
16
 *    the documentation and/or other materials provided with the
 
17
 *    distribution.
 
18
 *
 
19
 * 3. The end-user documentation included with the redistribution, if
 
20
 *    any, must include the following acknowlegement:
 
21
 *       "This product includes software developed by the
 
22
 *        Apache Software Foundation (http://www.apache.org/)."
 
23
 *    Alternately, this acknowlegement may appear in the software itself,
 
24
 *    if and wherever such third-party acknowlegements normally appear.
 
25
 *
 
26
 * 4. The names "The Jakarta Project", "Ant", and "Apache Software
 
27
 *    Foundation" must not be used to endorse or promote products derived
 
28
 *    from this software without prior written permission. For written
 
29
 *    permission, please contact apache@apache.org.
 
30
 *
 
31
 * 5. Products derived from this software may not be called "Apache"
 
32
 *    nor may "Apache" appear in their names without prior written
 
33
 *    permission of the Apache Group.
 
34
 *
 
35
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 
36
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
37
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 
38
 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 
39
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 
40
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 
41
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 
42
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 
43
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 
44
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 
45
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 
46
 * SUCH DAMAGE.
 
47
 * ====================================================================
 
48
 *
 
49
 * This software consists of voluntary contributions made by many
 
50
 * individuals on behalf of the Apache Software Foundation.  For more
 
51
 * information on the Apache Software Foundation, please see
 
52
 * <http://www.apache.org/>.
 
53
 */
 
54
 
 
55
package org.apache.tools.ant.taskdefs.optional.junit;
 
56
 
 
57
import java.text.NumberFormat;
 
58
import java.io.IOException;
 
59
import java.io.OutputStream;
 
60
import junit.framework.AssertionFailedError;
 
61
import junit.framework.Test;
 
62
 
 
63
import org.apache.tools.ant.BuildException;
 
64
 
 
65
/**
 
66
 * Prints short summary output of the test to Ant's logging system.
 
67
 *
 
68
 * @author <a href="mailto:stefan.bodewig@epost.de">Stefan Bodewig</a>
 
69
 */
 
70
 
 
71
public class SummaryJUnitResultFormatter implements JUnitResultFormatter {
 
72
 
 
73
    /**
 
74
     * Formatter for timings.
 
75
     */
 
76
    private NumberFormat nf = NumberFormat.getInstance();
 
77
    /**
 
78
     * OutputStream to write to.
 
79
     */
 
80
    private OutputStream out;
 
81
 
 
82
    private boolean withOutAndErr = false;
 
83
    private String systemOutput = null;
 
84
    private String systemError = null;
 
85
 
 
86
    /**
 
87
     * Empty
 
88
     */
 
89
    public SummaryJUnitResultFormatter() {}
 
90
    /**
 
91
     * Empty
 
92
     */
 
93
    public void startTestSuite(JUnitTest suite) {}
 
94
    /**
 
95
     * Empty
 
96
     */
 
97
    public void startTest(Test t) {}
 
98
    /**
 
99
     * Empty
 
100
     */
 
101
    public void endTest(Test test) {}
 
102
    /**
 
103
     * Empty
 
104
     */
 
105
    public void addFailure(Test test, Throwable t) {}
 
106
    /**
 
107
     * Interface TestListener for JUnit &gt; 3.4.
 
108
     *
 
109
     * <p>A Test failed.
 
110
     */
 
111
    public void addFailure(Test test, AssertionFailedError t) {
 
112
        addFailure(test, (Throwable) t);
 
113
    }
 
114
    /**
 
115
     * Empty
 
116
     */
 
117
    public void addError(Test test, Throwable t) {}
 
118
    
 
119
    public void setOutput(OutputStream out) {
 
120
        this.out = out;
 
121
    }
 
122
 
 
123
    public void setSystemOutput( String out ) {
 
124
        systemOutput = out;
 
125
    }
 
126
 
 
127
    public void setSystemError( String err ) {
 
128
        systemError = err;
 
129
    }
 
130
 
 
131
    /**
 
132
     * Should the output to System.out and System.err be written to
 
133
     * the summary.
 
134
     */
 
135
    public void setWithOutAndErr( boolean value ) {
 
136
        withOutAndErr = value;
 
137
    }
 
138
 
 
139
    /**
 
140
     * The whole testsuite ended.
 
141
     */
 
142
    public void endTestSuite(JUnitTest suite) throws BuildException {
 
143
        String newLine = System.getProperty("line.separator");
 
144
        StringBuffer sb = new StringBuffer("Tests run: ");
 
145
        sb.append(suite.runCount());
 
146
        sb.append(", Failures: ");
 
147
        sb.append(suite.failureCount());
 
148
        sb.append(", Errors: ");
 
149
        sb.append(suite.errorCount());
 
150
        sb.append(", Time elapsed: ");
 
151
        sb.append(nf.format(suite.getRunTime()/1000.0));
 
152
        sb.append(" sec");
 
153
        sb.append(newLine);
 
154
 
 
155
        if (withOutAndErr) {
 
156
            if (systemOutput != null && systemOutput.length() > 0) {
 
157
                sb.append( "Output:" ).append(newLine).append(systemOutput)
 
158
                    .append(newLine);
 
159
            }
 
160
            
 
161
            if (systemError != null && systemError.length() > 0) {
 
162
                sb.append( "Error: " ).append(newLine).append(systemError)
 
163
                    .append(newLine);
 
164
            }
 
165
        }
 
166
 
 
167
        try {
 
168
            out.write(sb.toString().getBytes());
 
169
            out.flush();
 
170
        } catch (IOException ioex) {
 
171
            throw new BuildException("Unable to write summary output", ioex);
 
172
        } finally {
 
173
            if (out != System.out && out != System.err) {
 
174
                try {
 
175
                    out.close();
 
176
                } catch (IOException e) {}
 
177
            }
 
178
        }
 
179
    }
 
180
}