/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.jersey.samples.osgihttpservice.test; import com.sun.jersey.api.client.Client; import com.sun.jersey.api.client.WebResource; import java.net.URI; import java.util.Arrays; import java.util.Dictionary; import java.util.Hashtable; import java.util.LinkedList; import java.util.List; import java.util.concurrent.Semaphore; import javax.ws.rs.core.UriBuilder; import org.ops4j.pax.exam.Inject; import org.ops4j.pax.exam.Option; import org.ops4j.pax.exam.junit.Configuration; import org.osgi.framework.BundleContext; import org.osgi.service.event.Event; import org.osgi.service.event.EventConstants; import org.osgi.service.event.EventHandler; import static org.ops4j.pax.exam.CoreOptions.felix; import static org.ops4j.pax.exam.CoreOptions.equinox; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.CoreOptions.mavenBundle; import static org.ops4j.pax.exam.CoreOptions.systemProperty; import static org.ops4j.pax.exam.container.def.PaxRunnerOptions.repositories; import static org.junit.Assert.assertEquals; /** * * @author japod */ public abstract class AbstractHttpServiceTest { public abstract List<Option> httpServiceProviderOptions(); public abstract List<Option> osgiRuntimeOptions(); public List<Option> genericOsgiOptions() { String bundleLocation = mavenBundle().groupId("com.sun.jersey.samples.osgi-http-service").artifactId("bundle").versionAsInProject().getURL().toString(); return Arrays.asList(options( systemProperty("org.osgi.service.http.port").value(String.valueOf(port)), systemProperty(BundleLocationProperty).value(bundleLocation), repositories("http://repo1.maven.org/maven2", "http://repository.apache.org/content/groups/snapshots-group", "http://repository.ops4j.org/maven2", "http://svn.apache.org/repos/asf/servicemix/m2-repo", "http://repository.springsource.com/maven/bundles/release", "http://repository.springsource.com/maven/bundles/external", "http://download.java.net/maven/2"), mavenBundle("org.ops4j.pax.url", "pax-url-mvn"), mavenBundle().groupId("org.osgi").artifactId("org.osgi.compendium").versionAsInProject(), mavenBundle().groupId("com.sun.jersey").artifactId("jersey-core").versionAsInProject(), mavenBundle().groupId("com.sun.jersey").artifactId("jersey-server").versionAsInProject(), mavenBundle().groupId("com.sun.jersey").artifactId("jersey-client").versionAsInProject())); } public List<Option> felixOptions() { return Arrays.asList(options( mavenBundle().groupId("org.apache.felix").artifactId("org.apache.felix.eventadmin").versionAsInProject(), felix())); } public List<Option> equinoxOptions() { return Arrays.asList(options( mavenBundle().groupId("org.eclipse.equinox").artifactId("event").versionAsInProject(), equinox())); } public List<Option> grizzlyOptions() { return Arrays.asList(options( mavenBundle().groupId("com.sun.grizzly.osgi").artifactId("grizzly-httpservice-bundle").versionAsInProject())); } public List<Option> jettyOptions() { return Arrays.asList(options( mavenBundle().groupId("org.ops4j.pax.web").artifactId("pax-web-jetty-bundle").versionAsInProject())); } public class WebEventHandler implements EventHandler { @Override public void handleEvent(Event event) { semaphore.release(); } public WebEventHandler(String handlerName) { this.handlerName = handlerName; } private final String handlerName; protected String getHandlerName() { return handlerName; } } final Semaphore semaphore = new Semaphore(0); private static final int port = getEnvVariable("JERSEY_HTTP_PORT", 8080); private static final String CONTEXT = "/jersey-http-service"; private static final URI baseUri = UriBuilder.fromUri("http://localhost").port(port).path(CONTEXT).build(); private static final String BundleLocationProperty = "jersey.bundle.location"; @Inject BundleContext bundleContext; @Configuration public Option[] configuration() { List<Option> options = new LinkedList<Option>(); options.addAll(genericOsgiOptions()); options.addAll(httpServiceProviderOptions()); options.addAll(osgiRuntimeOptions()); return options.toArray(new Option[0]); } public void defaultMandatoryBeforeMethod() { bundleContext.registerService(EventHandler.class.getName(), new WebEventHandler("Deploy Handler"), getHandlerServiceProperties("jersey/test/DEPLOYED")); } public void defaultHttpServiceTestMethod() throws Exception { bundleContext.installBundle(System.getProperty(BundleLocationProperty)).start(); semaphore.acquire(); // wait till the servlet gets really registered final WebResource r = resource(); String result = r.path("/status").get(String.class); System.out.println("JERSEY RESULT = " + result); assertEquals("active", result); } public static int getEnvVariable(final String varName, int defaultValue) { if (null == varName) { return defaultValue; } String varValue = System.getenv(varName); if (null != varValue) { try { return Integer.parseInt(varValue); } catch (NumberFormatException e) { // will return default value below } } return defaultValue; } public WebResource resource() { final Client c = Client.create(); final WebResource rootResource = c.resource(baseUri); return rootResource; } private Dictionary getHandlerServiceProperties(String... topics) { Dictionary result = new Hashtable(); result.put(EventConstants.EVENT_TOPIC, topics); return result; } }