]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.runtime/src/org/argeo/slc/runtime/test/BasicTestDefinition.java
Continue to remove dependencies with Spring.
[gpl/argeo-slc.git] / org.argeo.slc.runtime / src / org / argeo / slc / runtime / test / BasicTestDefinition.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
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 package org.argeo.slc.runtime.test;
17
18 import org.argeo.slc.SlcException;
19 import org.argeo.slc.test.IncompatibleTestDataException;
20 import org.argeo.slc.test.TestData;
21 import org.argeo.slc.test.TestDefinition;
22 import org.argeo.slc.test.TestResult;
23 import org.argeo.slc.test.TestRun;
24 import org.argeo.slc.test.TestStatus;
25 import org.argeo.slc.test.context.ContextAware;
26
27 /** Understands basic test data and context aware test data. */
28 public class BasicTestDefinition implements TestDefinition {
29
30 public void execute(TestRun testRun) {
31 if (testRun.<TestData> getTestData() instanceof BasicTestData) {
32 BasicTestData testData = testRun.getTestData();
33 TestResult result = testRun.getTestResult();
34
35 if (result == null)
36 throw new SlcException("No test result defined.");
37
38 try {
39 if (testData.getExpected().equals(testData.getReached())) {
40 result.addResultPart(new SimpleResultPart(
41 TestStatus.PASSED, "Reached and expected equals"));
42 } else {
43 result.addResultPart(new SimpleResultPart(
44 TestStatus.FAILED, "Expected "
45 + testData.getExpected() + " but reached "
46 + testData.getReached()));
47 }
48 } catch (Exception e) {
49 result.addResultPart(new SimpleResultPart(TestStatus.ERROR,
50 "Could not compare", e));
51 }
52 } else if (testRun.<TestData> getTestData() instanceof ContextAware) {
53 TestData testData = testRun.getTestData();
54 ContextUtils.compareReachedExpected((ContextAware) testData,
55 testRun.getTestResult());
56 } else {
57 throw new IncompatibleTestDataException(testRun);
58 }
59 }
60 }