~ubuntu-branches/ubuntu/trusty/netbeans/trusty

« back to all changes in this revision

Viewing changes to nbbuild/antsrc/org/netbeans/nbbuild/SubAntJUnitReport.java

  • Committer: Bazaar Package Importer
  • Author(s): Marek Slama
  • Date: 2008-01-29 14:11:22 UTC
  • Revision ID: james.westby@ubuntu.com-20080129141122-fnzjbo11ntghxfu7
Tags: upstream-6.0.1
ImportĀ upstreamĀ versionĀ 6.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 
3
 *
 
4
 * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
 
5
 *
 
6
 * The contents of this file are subject to the terms of either the GNU
 
7
 * General Public License Version 2 only ("GPL") or the Common
 
8
 * Development and Distribution License("CDDL") (collectively, the
 
9
 * "License"). You may not use this file except in compliance with the
 
10
 * License. You can obtain a copy of the License at
 
11
 * http://www.netbeans.org/cddl-gplv2.html
 
12
 * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
 
13
 * specific language governing permissions and limitations under the
 
14
 * License.  When distributing the software, include this License Header
 
15
 * Notice in each file and include the License file at
 
16
 * nbbuild/licenses/CDDL-GPL-2-CP.  Sun designates this
 
17
 * particular file as subject to the "Classpath" exception as provided
 
18
 * by Sun in the GPL Version 2 section of the License file that
 
19
 * accompanied this code. If applicable, add the following below the
 
20
 * License Header, with the fields enclosed by brackets [] replaced by
 
21
 * your own identifying information:
 
22
 * "Portions Copyrighted [year] [name of copyright owner]"
 
23
 *
 
24
 * Contributor(s):
 
25
 *
 
26
 * The Original Software is NetBeans. The Initial Developer of the Original
 
27
 * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
 
28
 * Microsystems, Inc. All Rights Reserved.
 
29
 *
 
30
 * If you wish your version of this file to be governed by only the CDDL
 
31
 * or only the GPL Version 2, indicate your decision by adding
 
32
 * "[Contributor] elects to include this software in this distribution
 
33
 * under the [CDDL or GPL Version 2] license." If you do not indicate a
 
34
 * single choice of license, a recipient has the option to distribute
 
35
 * your version of this file under either the CDDL, the GPL Version 2 or
 
36
 * to extend the choice of license to its licensees as provided above.
 
37
 * However, if you add GPL Version 2 code and therefore, elected the GPL
 
38
 * Version 2 license, then the option applies only if the new code is
 
39
 * made subject to such option by the copyright holder.
 
40
 */
 
41
 
 
42
package org.netbeans.nbbuild;
 
43
 
 
44
import java.io.File;
 
45
import java.io.PrintWriter;
 
46
import java.io.StringWriter;
 
47
import java.util.HashMap;
 
48
import java.util.Map;
 
49
import org.apache.tools.ant.BuildException;
 
50
import org.apache.tools.ant.Project;
 
51
import org.apache.tools.ant.Task;
 
52
import org.apache.tools.ant.taskdefs.Ant;
 
53
import org.apache.tools.ant.types.Path;
 
54
 
 
55
/**
 
56
 * Akin to (a simple subset of) <subant> but failures in subtasks are collected
 
57
 * and optionally sent to a JUnit-format report rather than halting the build.
 
58
 */
 
59
public class SubAntJUnitReport extends Task {
 
60
 
 
61
    private Path buildPath;
 
62
    public void setBuildPath(Path buildPath) {
 
63
        this.buildPath = buildPath;
 
64
    }
 
65
 
 
66
    private String targetToRun;
 
67
    public void setTarget(String target) {
 
68
        this.targetToRun = target;
 
69
    }
 
70
 
 
71
    private boolean failOnError;
 
72
    public void setFailOnError(boolean failOnError) {
 
73
        this.failOnError = failOnError;
 
74
    }
 
75
 
 
76
    private File report;
 
77
    public void setReport(File report) {
 
78
        this.report = report;
 
79
    }
 
80
 
 
81
    public @Override void execute() throws BuildException {
 
82
        Map<String,String> pseudoTests = new HashMap<String,String>();
 
83
        for (String path : buildPath.list()) {
 
84
            log("Entering: " + path);
 
85
            File dir = new File(path);
 
86
            Ant ant = new Ant(this);
 
87
            ant.init();
 
88
            ant.setTarget(targetToRun);
 
89
            ant.setDir(dir);
 
90
            String msg = null;
 
91
            try {
 
92
                ant.execute();
 
93
            } catch (BuildException x) {
 
94
                if (failOnError) {
 
95
                    throw x;
 
96
                } else {
 
97
                    msg = x.getMessage().replaceFirst("(?s).*The following error occurred while executing this line:\r?\n", "");
 
98
                }
 
99
            } catch (Throwable x) {
 
100
                if (failOnError) {
 
101
                    throw new BuildException(x, getLocation());
 
102
                } else {
 
103
                    StringWriter sw = new StringWriter();
 
104
                    x.printStackTrace(new PrintWriter(sw));
 
105
                    msg = sw.toString();
 
106
                }
 
107
            }
 
108
            pseudoTests.put(path, msg);
 
109
            if (msg != null) {
 
110
                log("Failed to build " + path + ": " + msg, Project.MSG_WARN);
 
111
            } else {
 
112
                log("Exiting: " + path);
 
113
            }
 
114
        }
 
115
        // XXX would be nice to permit the 'classname' field to be customized in output...
 
116
        JUnitReportWriter.writeReport(this, report, pseudoTests);
 
117
    }
 
118
 
 
119
}