]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/test/SimpleTestResult.java
Finalize JMS serialization
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / src / main / java / org / argeo / slc / core / test / SimpleTestResult.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 package org.argeo.slc.core.test;
18
19 import java.util.Date;
20 import java.util.List;
21 import java.util.Map;
22 import java.util.TreeMap;
23 import java.util.UUID;
24 import java.util.Vector;
25
26 import org.apache.commons.logging.Log;
27 import org.apache.commons.logging.LogFactory;
28
29 import org.argeo.slc.SlcException;
30 import org.argeo.slc.test.TestResult;
31 import org.argeo.slc.test.TestResultPart;
32 import org.argeo.slc.test.TestRun;
33
34 /**
35 * Basic implementation of a test result containing only a list of result parts.
36 */
37 public class SimpleTestResult implements TestResult {
38 private static Log log = LogFactory.getLog(SimpleTestResult.class);
39
40 private String uuid;
41 private String currentTestRunUuid;
42
43 private Boolean throwError = true;
44
45 private Date closeDate;
46 private List<TestResultPart> parts = new Vector<TestResultPart>();
47
48 private Map<String, String> attributes = new TreeMap<String, String>();
49
50 public void addResultPart(TestResultPart part) {
51 if (throwError && part.getStatus() == ERROR) {
52 throw new SlcException(
53 "There was an error in the underlying test: "
54 + part.getExceptionMessage());
55 }
56 parts.add(part);
57 if (log.isDebugEnabled())
58 log.debug(part);
59 }
60
61 public void close() {
62 parts.clear();
63 closeDate = new Date();
64 }
65
66 public List<TestResultPart> getParts() {
67 return parts;
68 }
69
70 public Date getCloseDate() {
71 return closeDate;
72 }
73
74 public void setThrowError(Boolean throwError) {
75 this.throwError = throwError;
76 }
77
78 public void notifyTestRun(TestRun testRun) {
79 currentTestRunUuid = testRun.getUuid();
80 }
81
82 public String getUuid() {
83 if (uuid == null) {
84 uuid = UUID.randomUUID().toString();
85 }
86 return uuid;
87 }
88
89 public void setUuid(String uuid) {
90 this.uuid = uuid;
91 }
92
93 public String getCurrentTestRunUuid() {
94 return currentTestRunUuid;
95 }
96
97 public Map<String, String> getAttributes() {
98 return attributes;
99 }
100
101 }