summaryrefslogtreecommitdiffstats
path: root/tags/java/sca/1.5.1/modules/implementation-notification/src/test/java/org/apache/tuscany/sca/implementation/notification/NotificationComponentTestCase.java
blob: f9a20edccd7153fac857fd80fde2ee2749ab6606 (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
/*
 * 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.sca.implementation.notification;

import java.util.ArrayList;
import java.util.List;

import junit.framework.Assert;
import junit.framework.TestCase;

import org.apache.tuscany.sca.assembly.ComponentReference;
import org.apache.tuscany.sca.assembly.SCABinding;
import org.apache.tuscany.sca.binding.sca.impl.SCABindingFactoryImpl;
import org.apache.tuscany.sca.interfacedef.Operation;
import org.apache.tuscany.sca.invocation.Interceptor;
import org.apache.tuscany.sca.invocation.InvocationChain;
import org.apache.tuscany.sca.invocation.Invoker;
import org.apache.tuscany.sca.invocation.Message;
import org.apache.tuscany.sca.runtime.EndpointReference;
import org.apache.tuscany.sca.runtime.RuntimeComponent;
import org.apache.tuscany.sca.runtime.RuntimeComponentReference;
import org.apache.tuscany.sca.runtime.RuntimeWire;
import org.easymock.EasyMock;

/**
 * 
 * @version $Rev$ $Date$
 *
 */
public class NotificationComponentTestCase extends TestCase {

    public void testLocalNotificationComponent() throws Exception {
        try {
        Operation operation = EasyMock.createNiceMock(Operation.class);
        EasyMock.replay(operation);
        
        InvocationChain sub1Chain = EasyMock.createNiceMock(InvocationChain.class);
        EasyMock.expect(sub1Chain.getTargetOperation()).andReturn(operation);
        EasyMock.expect(sub1Chain.getHeadInvoker()).andReturn(new MockInterceptor());
        EasyMock.replay(sub1Chain);
        List<InvocationChain> sub1Chains = new ArrayList<InvocationChain>();
        sub1Chains.add(sub1Chain);
        SCABinding b1 = new SCABindingFactoryImpl().createSCABinding();
        EndpointReference epr1 = EasyMock.createNiceMock(EndpointReference.class);
        EasyMock.expect(epr1.getURI()).andReturn("wire1Target");
        EasyMock.expect(epr1.getBinding()).andReturn(b1);
        EasyMock.replay(epr1);
        RuntimeWire sub1Wire = EasyMock.createNiceMock(RuntimeWire.class);
        EasyMock.expect(sub1Wire.getInvocationChains()).andReturn(sub1Chains);
        EasyMock.expect(sub1Wire.getTarget()).andReturn(epr1).anyTimes();
        EasyMock.replay(sub1Wire);
        ArrayList<RuntimeWire> rtWires1 = new ArrayList<RuntimeWire>();
        rtWires1.add(sub1Wire);
        RuntimeComponentReference rtCompRef1 = EasyMock.createNiceMock(RuntimeComponentReference.class);
        EasyMock.expect(rtCompRef1.getName()).andReturn("sub1Reference");
        EasyMock.expect(rtCompRef1.getRuntimeWires()).andReturn(rtWires1);
        EasyMock.replay(rtCompRef1);
        
        InvocationChain sub2Chain = EasyMock.createNiceMock(InvocationChain.class);
        EasyMock.expect(sub2Chain.getTargetOperation()).andReturn(operation);
        EasyMock.expect(sub2Chain.getHeadInvoker()).andReturn(new MockInterceptor());
        EasyMock.replay(sub2Chain);
        List<InvocationChain> sub2Chains = new ArrayList<InvocationChain>();
        sub2Chains.add(sub2Chain);
        SCABinding b2 = new SCABindingFactoryImpl().createSCABinding();
        EndpointReference epr2 = EasyMock.createNiceMock(EndpointReference.class);
        EasyMock.expect(epr2.getURI()).andReturn("wire2Target");
        EasyMock.expect(epr2.getBinding()).andReturn(b2);
        EasyMock.replay(epr2);
        RuntimeWire sub2Wire = EasyMock.createNiceMock(RuntimeWire.class);
        EasyMock.expect(sub2Wire.getInvocationChains()).andReturn(sub2Chains);
        EasyMock.expect(sub2Wire.getTarget()).andReturn(epr2).anyTimes();
        EasyMock.replay(sub2Wire);
        ArrayList<RuntimeWire> rtWires2 = new ArrayList<RuntimeWire>();
        rtWires2.add(sub2Wire);
        RuntimeComponentReference rtCompRef2 = EasyMock.createNiceMock(RuntimeComponentReference.class);
        EasyMock.expect(rtCompRef2.getName()).andReturn("sub2Reference");
        EasyMock.expect(rtCompRef2.getRuntimeWires()).andReturn(rtWires2);
        EasyMock.replay(rtCompRef2);
        
        ArrayList<ComponentReference> references = new ArrayList<ComponentReference>();
        references.add(rtCompRef1);
        references.add(rtCompRef2);
        RuntimeComponent component = EasyMock.createNiceMock(RuntimeComponent.class);
        EasyMock.expect(component.getName()).andReturn("LocalNotificationComponentTest");
        EasyMock.expect(component.getReferences()).andReturn(references);
        EasyMock.replay(component);
        
        Invoker localNotificationInvoker = new NotificationComponentInvoker(operation, component);
        
        Message msg = EasyMock.createNiceMock(Message.class);
        EasyMock.expect(msg.getBody()).andReturn("msg").times(3);  // once per sub int + once in notif target invoker
        EasyMock.replay(msg);
        localNotificationInvoker.invoke(msg);
        EasyMock.verify(msg);
        } catch(Throwable e) {
            e.printStackTrace();
        }
    }
    
    class MockInterceptor implements Interceptor {
        
        public Message invoke(Message msg) {
            Assert.assertEquals("msg", msg.getBody());
            return msg;
        }
        
        public void setNext(Invoker next) {
            throw new AssertionError();
        }

        public Interceptor getNext() {
            throw new AssertionError();
        }

        public boolean isOptimizable() {
            throw new AssertionError();
        }
    }
}