I actually found the answer to this a while back. I don't use the obr: protocol handler, instead I actually use an OBR implementation (Apache Aries).
This is how I configured my test case
@Configuration
public static Option[] configuration() throws Exception {
return options(
systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level")
.value("WARN"),
frameworkProperty("obr.repository.url").value(
new File("target/dependency/repository.xml").toURI()
.toASCIIString()),
bundle("mvn:org.apache.felix/org.osgi.service.obr/1.0.2"),
bundle("mvn:org.apache.felix/org.apache.felix.bundlerepository/1.6.6"),
bundle("mvn:org.apache.aries/org.apache.aries.util/0.4"),
bundle("mvn:org.apache.aries.proxy/org.apache.aries.proxy/0.4"),
junitBundles());
}
I then have a convenience method in the class to deploy from OBR using an OBR search string
private void obrDeploy(final String filter) throws Exception {
final Resolver resolver = repositoryAdmin.resolver();
final Resource[] discoverResources = repositoryAdmin
.discoverResources(filter);
for (final Resource r : discoverResources) {
resolver.add(r);
}
assertTrue(resolver.resolve());
resolver.deploy(true);
}
Then my test cases look like this. This ensures that the tests load up the services it exposes correctly.
@Test
public void testBlueprintBundle() throws Exception {
obrDeploy("(symbolicname=net.trajano.maven-jee6.blueprint.producer)");
getService(bundleContext, MongoDbFactory.class);
getService(bundleContext, BlockingQueue.class);
getService(bundleContext, Executor.class);
}
Note that this deploys only the bundles at have transitive links as designed. If you have other dependencies that are not present like the implementation bundles then they need to be deployed as well. The following shows a line on how to deploy multiple bundles from OBR with wildcards as well to simplify the tests.
obrDeploy("(|(symbolicname=*.blueprint.consumer)(symbolicname=*.blueprint.producer)(symbolicname=*.hello.osgi))");
The full source is in https://github.com/trajano/maven-jee6/blob/emerging-technologies/osgi-sample/assembly/src/test/java/net/trajano/osgi/test/PaxTest.java