summaryrefslogtreecommitdiffstats
path: root/sandbox/old/contrib/implementation-javascript/container/src/test/java/org/apache/tuscany/container/javascript/WireTestCase.java
blob: 58a831f66a4cd615ba3f0402620119f1df7ecc57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.    
 */
package org.apache.tuscany.container.javascript;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;

import org.apache.tuscany.spi.model.Operation;
import static org.apache.tuscany.spi.model.Operation.NO_CONVERSATION;
import org.apache.tuscany.spi.wire.InboundInvocationChain;
import org.apache.tuscany.spi.wire.InboundWire;
import org.apache.tuscany.spi.wire.Message;
import org.apache.tuscany.spi.wire.TargetInvoker;
import org.apache.tuscany.spi.wire.WireService;

import junit.framework.TestCase;
import org.apache.tuscany.container.javascript.mock.Greeting;
import org.apache.tuscany.container.javascript.rhino.RhinoScript;
import org.apache.tuscany.core.component.scope.CompositeScopeContainer;
import org.apache.tuscany.test.ArtifactFactory;
import static org.easymock.EasyMock.reportMatcher;
import org.easymock.IArgumentMatcher;

/**
 * Tests for JavaScript component wiring
 */
public class WireTestCase extends TestCase {

    private static final String SCRIPT =
        "   function setWire(ref){" +
            "       wire = ref;" + "   }" +
            "   " +
            "   function greet(name){" +
            "       return wire.greet(name);  " +
            "   }";

    private static final String SCRIPT2 =
        "   function greet(name){" +
            "       return name;  " +
            "   }";

    private RhinoScript implClass1;

    private RhinoScript implClass2;
    private WireService wireService;

    /**
     * Tests a basic invocation down a source wire
     */
    public void testReferenceWireInvocation() throws Exception {
//        CompositeScopeContainer scope = new CompositeScopeContainer(null);
//        scope.start();
//
//        List<Class<?>> serviceBindings = new ArrayList<Class<?>>();
//        serviceBindings.add(Greeting.class);
//        JavaScriptComponent<Greeting> context = new JavaScriptComponent<Greeting>("source", implClass1, serviceBindings, properties, null, scope,
//                ArtifactFactory.createWireService(), null);
//        OutboundWire wire = ArtifactFactory.createOutboundWire("wire", Greeting.class);
//        ArtifactFactory.terminateWire(wire);
//
//        TargetInvoker invoker = createMock(TargetInvoker.class);
//        expect(invoker.isCacheable()).andReturn(false);
//        Message response = new MessageImpl();
//        response.setBody("foo");
//        expect(invoker.invoke(eqMessage())).andReturn(response);
//        replay(invoker);
//
//        for (OutboundInvocationChain chain : wire.getInvocationChains().values()) {
//            chain.setTargetInvoker(invoker);
//        }
//        scope.register(context);
//        context.addOutboundWire(wire);
//        Greeting greeting = context.getServiceInstance();
//        assertEquals("foo", greeting.greet("foo"));
//        verify(invoker);
//
//        scope.stop();
    }

    // todo this could be generalized and moved to test module
    public static Message eqMessage() {
        reportMatcher(new IArgumentMatcher() {
            public boolean matches(Object object) {
                if (!(object instanceof Message)) {
                    return false;
                }
                final Message msg = (Message) object;
                Object[] body = (Object[]) msg.getBody();
                return "foo".equals(body[0]);
            }

            public void appendTo(StringBuffer stringBuffer) {
            }
        });
        return null;
    }

    /**
     * Tests a basic invocation to a target
     */
    public void testTargetInvocation() throws Exception {
        CompositeScopeContainer scope = new CompositeScopeContainer(null);
        scope.start();
        List<Class<?>> services = new ArrayList<Class<?>>();
        services.add(Greeting.class);
        JavaScriptComponent context =
            new JavaScriptComponent("source", implClass2, new HashMap<String, Object>(), null,
                ArtifactFactory.createWireService(), null, null);
        context.setScopeContainer(scope);
        scope.register(context);
        Operation<Type> operation = new Operation<Type>("greet", null, null, null, false, null, NO_CONVERSATION);
        TargetInvoker invoker = context.createTargetInvoker(null, operation, null);
        assertEquals("foo", invoker.invokeTarget(new String[]{"foo"}, TargetInvoker.NONE));
        scope.stop();
    }

    /**
     * Tests a basic invocation down a target wire
     */
    public void testTargetWireInvocation() throws Exception {
        CompositeScopeContainer scope = new CompositeScopeContainer(null);
        scope.start();
        List<Class<?>> services = new ArrayList<Class<?>>();
        services.add(Greeting.class);
        JavaScriptComponent context =
            new JavaScriptComponent("source", implClass2, new HashMap<String, Object>(), null,
                ArtifactFactory.createWireService(), null, null);
        context.setScopeContainer(scope);
        scope.register(context);

        InboundWire wire = ArtifactFactory.createLocalInboundWire("Greeting", Greeting.class);
        ArtifactFactory.terminateWire(wire);
        for (InboundInvocationChain chain : wire.getInvocationChains().values()) {
            chain.setTargetInvoker(context.createTargetInvoker(null, chain.getOperation(), null));
        }
        context.addInboundWire(wire);
        Greeting greeting = wireService.createProxy(Greeting.class, context.getInboundWire("Greeting"));
        assertEquals("foo", greeting.greet("foo"));
        scope.stop();
    }

    protected void setUp() throws Exception {
        super.setUp();
        wireService = ArtifactFactory.createWireService();
        implClass1 = new RhinoScript("script1", SCRIPT);
        implClass2 = new RhinoScript("script2", SCRIPT2);
    }
}