blob: 79b2d8d2e76775f0c7e4f250840169f98b135e23 [file] [log] [blame]
/**
* 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.aries.rsa.discovery.zookeeper.subscribe;
import static org.easymock.EasyMock.expect;
import static org.junit.Assert.assertEquals;
import java.util.ArrayList;
import java.util.List;
import org.apache.aries.rsa.discovery.zookeeper.ZooKeeperDiscovery;
import org.apache.aries.rsa.discovery.zookeeper.repository.ZookeeperEndpointRepository;
import org.easymock.EasyMock;
import org.easymock.IMocksControl;
import org.junit.Test;
import org.osgi.framework.ServiceReference;
import org.osgi.service.remoteserviceadmin.EndpointDescription;
import org.osgi.service.remoteserviceadmin.EndpointEventListener;
public class InterfaceMonitorManagerTest {
@Test
public void testEndpointListenerTrackerCustomizer() {
IMocksControl c = EasyMock.createControl();
ServiceReference<EndpointEventListener> sref = createService(c, "(objectClass=mine)");
ServiceReference<EndpointEventListener> sref2 = createService(c, "(objectClass=mine)");
ZookeeperEndpointRepository repository = c.createMock(ZookeeperEndpointRepository.class);
List<EndpointDescription> endpoints = new ArrayList<>();
expect(repository.getAll()).andReturn(endpoints).atLeastOnce();
EndpointEventListener epListener1 = c.createMock(EndpointEventListener.class);
EndpointEventListener epListener2 = c.createMock(EndpointEventListener.class);
c.replay();
InterestManager eltc = new InterestManager(repository);
// sref has no scope -> nothing should happen
assertEquals(0, eltc.getInterests().size());
eltc.addInterest(sref, epListener1);
assertEquals(1, eltc.getInterests().size());
eltc.addInterest(sref, epListener1);
assertEquals(1, eltc.getInterests().size());
eltc.addInterest(sref2, epListener2);
assertEquals(2, eltc.getInterests().size());
eltc.removeInterest(sref);
assertEquals(1, eltc.getInterests().size());
eltc.removeInterest(sref);
assertEquals(1, eltc.getInterests().size());
eltc.removeInterest(sref2);
assertEquals(0, eltc.getInterests().size());
c.verify();
}
@SuppressWarnings("unchecked")
private ServiceReference<EndpointEventListener> createService(IMocksControl c, String scope) {
ServiceReference<EndpointEventListener> sref = c.createMock(ServiceReference.class);
expect(sref.getProperty(EndpointEventListener.ENDPOINT_LISTENER_SCOPE)).andReturn(scope).atLeastOnce();
expect(sref.getProperty(ZooKeeperDiscovery.DISCOVERY_ZOOKEEPER_ID)).andReturn(null).atLeastOnce();
return sref;
}
}