source code formatting.
[utils] / system / general / src / test / java / org / wamblee / system / adapters / ObjectAdapterTest.java
1 /*
2  * Copyright 2008 the original author or authors.
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.wamblee.system.adapters;
17
18 import org.wamblee.system.container.Container;
19 import org.wamblee.system.core.Component;
20 import org.wamblee.system.core.DefaultProvidedInterface;
21 import org.wamblee.system.core.ProvidedInterface;
22 import org.wamblee.system.core.RequiredInterface;
23 import org.wamblee.system.core.RequiredInterfaceComparator;
24 import org.wamblee.system.core.Scope;
25
26 import org.wamblee.test.AssertionUtils;
27
28 import java.util.Collections;
29 import java.util.List;
30
31
32 /**
33  * DOCUMENT ME!
34  *
35  * @author $author$
36  * @version $Revision$
37   */
38 public class ObjectAdapterTest extends AdapterTestCase {
39     /**
40      * DOCUMENT ME!
41      */
42     public void testSetterInjection() {
43         ClassConfiguration x1Config = new ClassConfiguration(X1.class);
44         x1Config.getObjectConfig().getSetterConfig().initAllSetters();
45         x1Config.getConstructorConfig().getParameters().setValue(0, "hello");
46
47         ClassConfiguration x4Config = new ClassConfiguration(X4.class);
48         x4Config.getObjectConfig().getSetterConfig().initAllSetters();
49
50         ObjectConfiguration x8Config = new ObjectConfiguration(X8.class);
51         x8Config.getSetterConfig().initAllSetters();
52
53         X1            x1        = new X1();
54         X8            x8        = new X8(x1);
55
56         ClassAdapter  x1Adapter = new ClassAdapter("x1", x1Config);
57         ClassAdapter  x4Adapter = new ClassAdapter("x4", x4Config);
58         ObjectAdapter x8Adapter = new ObjectAdapter("x8", x8, x8Config);
59
60         Container     container = new Container("top",
61                 new Component[] { x1Adapter, x4Adapter, x8Adapter },
62                 new ProvidedInterface[0], new RequiredInterface[0]);
63
64         EVENT_TRACKER.clear();
65
66         Scope scope = container.start();
67         AssertionUtils.assertEquals(new String[] {
68                 "x1(hello)", "x4(x1)", "x8.setX4(x4)"
69             }, EVENT_TRACKER.getEvents(Thread.currentThread()).toArray());
70
71         Object obj1 = scope.getRuntime(x1Adapter);
72         assertTrue(obj1 instanceof X1);
73
74         Object obj4 = scope.getRuntime(x4Adapter);
75         assertTrue(obj4 instanceof X4);
76
77         Object obj8 = scope.getRuntime(x8Adapter);
78         assertSame(x8, obj8);
79
80         X4 x4 = (X4) obj4;
81
82         assertSame(x4, x8.getX4());
83         assertSame(x1, x8.getX1());
84     }
85 }