blob: 19098d3d3a09aa7f285b9b5ff4693549ff168d96 [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.core;
import static org.easymock.EasyMock.anyObject;
import static org.easymock.EasyMock.isA;
import java.util.HashMap;
import java.util.Map;
import org.apache.aries.rsa.spi.DistributionProvider;
import org.easymock.EasyMock;
import org.easymock.IMocksControl;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.Constants;
import org.osgi.framework.ServiceRegistration;
import org.osgi.framework.wiring.BundleWiring;
import org.osgi.service.remoteserviceadmin.EndpointDescription;
import org.osgi.service.remoteserviceadmin.RemoteConstants;
import junit.framework.TestCase;
public class ClientServiceFactoryTest extends TestCase {
@SuppressWarnings({
"rawtypes"
})
public void testGetService() throws ClassNotFoundException {
final Object myTestProxyObject = new Object();
IMocksControl control = EasyMock.createControl();
EndpointDescription endpoint = createTestEndpointDesc();
ImportRegistrationImpl iri = new ImportRegistrationImpl(endpoint, null, null);
BundleContext consumerContext = control.createMock(BundleContext.class);
Bundle consumerBundle = control.createMock(Bundle.class);
BundleWiring bundleWiring = control.createMock(BundleWiring.class);
EasyMock.expect(bundleWiring.getClassLoader()).andReturn(this.getClass().getClassLoader());
EasyMock.expect(consumerBundle.adapt(BundleWiring.class)).andReturn(bundleWiring);
EasyMock.expect(consumerBundle.getBundleContext()).andReturn(consumerContext);
ServiceRegistration sreg = control.createMock(ServiceRegistration.class);
DistributionProvider handler = mockDistributionProvider(myTestProxyObject);
control.replay();
ClientServiceFactory csf = new ClientServiceFactory(endpoint, handler, iri);
assertSame(myTestProxyObject, csf.getService(consumerBundle, sreg));
}
/**
* Creating dummy class as I was not able to really mock it
* @param myTestProxyObject
* @return
*/
private DistributionProvider mockDistributionProvider(final Object proxy) {
DistributionProvider handler = EasyMock.createMock(DistributionProvider.class);
EasyMock.expect(handler.importEndpoint(anyObject(ClassLoader.class),
anyObject(BundleContext.class),
isA(Class[].class),
anyObject(EndpointDescription.class))).andReturn(proxy);
EasyMock.replay(handler);
return handler;
}
private EndpointDescription createTestEndpointDesc() {
Map<String, Object> map = new HashMap<>();
map.put(RemoteConstants.ENDPOINT_ID, "http://google.de");
map.put(RemoteConstants.SERVICE_IMPORTED_CONFIGS, "myGreatConfiguration");
map.put(Constants.OBJECTCLASS, new String[]{String.class.getName()});
EndpointDescription endpoint = new EndpointDescription(map);
return endpoint;
}
}