]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.spring/ext/test/org/argeo/slc/core/test/context/ContextTest.java
Re-activate Spring runtime unit tests.
[gpl/argeo-slc.git] / org.argeo.slc.spring / ext / test / org / argeo / slc / core / test / context / ContextTest.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.core.test.context;
17
18 import java.util.List;
19
20 import org.argeo.slc.core.test.SimpleTestResult;
21 import org.argeo.slc.test.TestResultPart;
22 import org.argeo.slc.test.TestStatus;
23 import org.argeo.slc.test.context.ContextAware;
24
25 public class ContextTest extends AbstractInternalSpringTestCase {
26
27 public void testComplexContext() {
28 SimpleTestResult testResult = new SimpleTestResult();
29 ContextUtils.compareReachedExpected(
30 (ContextAware) getBean("context.c1"), testResult);
31 ContextUtils.compareReachedExpected(
32 (ContextAware) getBean("context.c2"), testResult);
33 ContextUtils.compareReachedExpected(
34 (ContextAware) getBean("context.c3"), testResult);
35
36 List<TestResultPart> parts = testResult.getParts();
37 assertEquals(6, parts.size());
38 assertEquals(TestStatus.PASSED, parts.get(0).getStatus());
39 assertEquals(TestStatus.PASSED, parts.get(1).getStatus());
40 assertEquals(TestStatus.PASSED, parts.get(2).getStatus());
41 assertEquals(TestStatus.FAILED, parts.get(3).getStatus());
42 assertEquals(TestStatus.PASSED, parts.get(4).getStatus());
43 assertEquals(TestStatus.PASSED, parts.get(5).getStatus());
44 }
45 }