Package org.apache.cxf.dosgi.discovery.zookeeper

Source Code of org.apache.cxf.dosgi.discovery.zookeeper.EndpointListenerTrackerCustomizerTest

/**
* 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.cxf.dosgi.discovery.zookeeper;

import java.util.ArrayList;
import java.util.Properties;

import junit.framework.TestCase;

import org.apache.cxf.dosgi.discovery.zookeeper.EndpointListenerTrackerCustomizer.Interest;
import org.easymock.IAnswer;
import org.easymock.classextension.EasyMock;
import org.easymock.classextension.IMocksControl;
import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.service.remoteserviceadmin.EndpointListener;

public class EndpointListenerTrackerCustomizerTest extends TestCase{
   
    public void testEndpointListenerTrackerCustomizer(){
       
        IMocksControl c = EasyMock.createNiceControl();
       
        BundleContext ctx = c.createMock(BundleContext.class);
        ZooKeeperDiscovery zkd = c.createMock(ZooKeeperDiscovery.class);
       
        ServiceReference sref = c.createMock(ServiceReference.class);
        ServiceReference sref2 = c.createMock(ServiceReference.class);
       
        final Properties p = new Properties();
       
       
        EasyMock.expect(sref.getPropertyKeys()).andAnswer(new IAnswer<String[]>() {
            public String[] answer() throws Throwable {
                return p.keySet().toArray(new String[p.keySet().size()]);
            }
        }).anyTimes();
       
        EasyMock.expect(sref.getProperty((String)EasyMock.anyObject())).andAnswer(new IAnswer<Object>() {
            public Object answer() throws Throwable {
                String key = (String)(EasyMock.getCurrentArguments()[0]);
                return p.getProperty(key);
            }
        }).anyTimes();
       
        EasyMock.expect(sref2.getPropertyKeys()).andAnswer(new IAnswer<String[]>() {
            public String[] answer() throws Throwable {
                return p.keySet().toArray(new String[p.keySet().size()]);
            }
        }).anyTimes();
       
        EasyMock.expect(sref2.getProperty((String)EasyMock.anyObject())).andAnswer(new IAnswer<Object>() {
            public Object answer() throws Throwable {
                String key = (String)(EasyMock.getCurrentArguments()[0]);
                return p.getProperty(key);
            }
        }).anyTimes();
       
       
        final ArrayList<IMocksControl> controls = new ArrayList<IMocksControl>();
       
        EndpointListenerTrackerCustomizer eltc = new EndpointListenerTrackerCustomizer(zkd,ctx){
            protected InterfaceMonitor createInterfaceMonitor(String scope, String objClass, Interest interest){
                IMocksControl lc = EasyMock.createNiceControl();
                InterfaceMonitor im = lc.createMock(InterfaceMonitor.class);
                im.start();
                EasyMock.expectLastCall().once();
                im.close();
                EasyMock.expectLastCall().once();
                lc.replay();
                controls.add(lc);
                return im;
            }
        };
       
        c.replay();
       
        eltc.addingService(sref); // sref has no scope -> nothing should happen
       
        assertEquals(0, eltc.getHandledEndpointlisteners().size());
        assertEquals(0, eltc.getInterestingScopes().size());
       
        p.put(EndpointListener.ENDPOINT_LISTENER_SCOPE, "(objectClass=mine)");
       
        eltc.addingService(sref);
       
        assertEquals(1, eltc.getHandledEndpointlisteners().size());
        assertEquals(1, eltc.getHandledEndpointlisteners().get(sref).size());
        assertEquals("(objectClass=mine)", eltc.getHandledEndpointlisteners().get(sref).get(0));
        assertEquals(1, eltc.getInterestingScopes().size());
       
       
        eltc.addingService(sref);
       
        assertEquals(1, eltc.getHandledEndpointlisteners().size());
        assertEquals(1, eltc.getHandledEndpointlisteners().get(sref).size());
        assertEquals("(objectClass=mine)", eltc.getHandledEndpointlisteners().get(sref).get(0));
        assertEquals(1, eltc.getInterestingScopes().size());
       
        eltc.addingService(sref2);
       
        assertEquals(2, eltc.getHandledEndpointlisteners().size());
        assertEquals(1, eltc.getHandledEndpointlisteners().get(sref).size());
        assertEquals(1, eltc.getHandledEndpointlisteners().get(sref2).size());
        assertEquals("(objectClass=mine)", eltc.getHandledEndpointlisteners().get(sref).get(0));
        assertEquals("(objectClass=mine)", eltc.getHandledEndpointlisteners().get(sref2).get(0));
        assertEquals(1, eltc.getInterestingScopes().size());
       
       
        eltc.removedService(sref, null);
       
        assertEquals(1, eltc.getHandledEndpointlisteners().size());
        assertEquals(1, eltc.getHandledEndpointlisteners().get(sref2).size());
        assertEquals("(objectClass=mine)", eltc.getHandledEndpointlisteners().get(sref2).get(0));
        assertEquals(1, eltc.getInterestingScopes().size());
       
        eltc.removedService(sref, null);
       
        assertEquals(1, eltc.getHandledEndpointlisteners().size());
        assertEquals(1, eltc.getHandledEndpointlisteners().get(sref2).size());
        assertEquals("(objectClass=mine)", eltc.getHandledEndpointlisteners().get(sref2).get(0));
        assertEquals(1, eltc.getInterestingScopes().size());
       
       
        eltc.removedService(sref2, null);
       
        assertEquals(0, eltc.getHandledEndpointlisteners().size());
        assertEquals(0, eltc.getInterestingScopes().size());
       
        c.verify();
        for (IMocksControl control : controls) {
            control.verify();
        }
    }
   
}
TOP

Related Classes of org.apache.cxf.dosgi.discovery.zookeeper.EndpointListenerTrackerCustomizerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.