001: /********************************************************************************
002: * CruiseControl, a Continuous Integration Toolkit
003: * Copyright (c) 2007, ThoughtWorks, Inc.
004: * 200 E. Randolph, 25th Floor
005: * Chicago, IL 60601 USA
006: * All rights reserved.
007: *
008: * Redistribution and use in source and binary forms, with or without
009: * modification, are permitted provided that the following conditions
010: * are met:
011: *
012: * + Redistributions of source code must retain the above copyright
013: * notice, this list of conditions and the following disclaimer.
014: *
015: * + Redistributions in binary form must reproduce the above
016: * copyright notice, this list of conditions and the following
017: * disclaimer in the documentation and/or other materials provided
018: * with the distribution.
019: *
020: * + Neither the name of ThoughtWorks, Inc., CruiseControl, nor the
021: * names of its contributors may be used to endorse or promote
022: * products derived from this software without specific prior
023: * written permission.
024: *
025: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
026: * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
027: * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
028: * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR
029: * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
030: * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
031: * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
032: * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
033: * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
034: * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
035: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
036: ********************************************************************************/package net.sourceforge.cruisecontrol.dashboard;
037:
038: import java.util.ArrayList;
039: import java.util.Iterator;
040: import java.util.LinkedList;
041: import java.util.List;
042:
043: public class BuildTestSuite {
044: private float duration;
045:
046: private String name;
047:
048: private List testCases;
049:
050: public BuildTestSuite(String name, float duration) {
051: this .duration = duration;
052: this .name = name;
053: this .testCases = null;
054: }
055:
056: public int getNumberOfErrors() {
057: return checkTestCases() ? getErrorTestCases().size() : 0;
058: }
059:
060: public String getName() {
061: return name;
062: }
063:
064: public int getNumberOfFailures() {
065: return checkTestCases() ? getFailingTestCases().size() : 0;
066: }
067:
068: public int getNumberOfTests() {
069: return checkTestCases() ? testCases.size() : 0;
070: }
071:
072: public float getDurationInSeconds() {
073: return duration;
074: }
075:
076: public List getErrorTestCases() {
077: if (checkTestCases()) {
078: List errorCases = new ArrayList();
079: for (int i = 0; i < testCases.size(); i++) {
080: BuildTestCase testCase = (BuildTestCase) testCases
081: .get(i);
082: BuildTestCaseResult result = testCase.getResult();
083: if (result.equals(BuildTestCaseResult.ERROR)) {
084: errorCases.add(testCase);
085: }
086: }
087: return errorCases;
088: }
089: return null;
090: }
091:
092: public List getFailingTestCases() {
093: if (checkTestCases()) {
094: List failingCases = new ArrayList();
095: for (int i = 0; i < testCases.size(); i++) {
096: BuildTestCase testCase = (BuildTestCase) testCases
097: .get(i);
098: if (testCase.getResult().equals(
099: BuildTestCaseResult.FAILED)) {
100: failingCases.add(testCase);
101: }
102: }
103: return failingCases;
104: }
105: return null;
106: }
107:
108: public List getPassedTestCases() {
109: if (checkTestCases()) {
110: List passedCases = new ArrayList();
111: for (int i = 0; i < testCases.size(); i++) {
112: BuildTestCase testCase = (BuildTestCase) testCases
113: .get(i);
114: BuildTestCaseResult result = testCase.getResult();
115: if (result.equals(BuildTestCaseResult.PASSED)) {
116: passedCases.add(testCase);
117: }
118: }
119: return passedCases;
120: }
121: return null;
122: }
123:
124: public void appendTestCases(List tests) {
125: this .testCases = tests;
126: }
127:
128: public void addTestCase(BuildTestCase testCase) {
129: if (!checkTestCases()) {
130: this .testCases = new LinkedList();
131: }
132: this .testCases.add(testCase);
133: }
134:
135: private boolean checkTestCases() {
136: return this .testCases != null;
137: }
138:
139: public boolean isFailed() {
140: if (checkTestCases()) {
141: for (Iterator iterator = testCases.iterator(); iterator
142: .hasNext();) {
143: BuildTestCase testCase = (BuildTestCase) iterator
144: .next();
145: if (testCase.getResult().equals(
146: BuildTestCaseResult.ERROR)
147: || testCase.getResult().equals(
148: BuildTestCaseResult.FAILED)) {
149: return true;
150: }
151: }
152: }
153: return false;
154: }
155: }
|