/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 2010-2012 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 * http://glassfish.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.osgifunctionaltests; import java.io.IOException; import java.io.InputStream; import java.net.URI; import javax.ws.rs.core.UriBuilder; import com.sun.jersey.api.client.Client; import com.sun.jersey.api.client.WebResource; import com.sun.jersey.osgi.tests.util.Helper; import com.sun.jersey.spi.container.servlet.ServletContainer; import org.junit.Test; import org.junit.runner.RunWith; import org.ops4j.pax.exam.Customizer; import org.ops4j.pax.exam.Inject; import org.ops4j.pax.exam.Option; import org.ops4j.pax.exam.junit.Configuration; import org.ops4j.pax.exam.junit.JUnit4TestRunner; import org.osgi.framework.BundleContext; import static org.junit.Assert.assertEquals; import static org.ops4j.pax.exam.CoreOptions.felix; import static org.ops4j.pax.exam.CoreOptions.mavenBundle; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.CoreOptions.systemPackage; import static org.ops4j.pax.exam.CoreOptions.systemProperty; import static org.ops4j.pax.exam.container.def.PaxRunnerOptions.repositories; import static org.ops4j.pax.swissbox.tinybundles.core.TinyBundles.modifyBundle; import com.sun.grizzly.http.embed.GrizzlyWebServer; import com.sun.grizzly.http.servlet.ServletAdapter; @RunWith(JUnit4TestRunner.class) public class PackageScanningTest { private static final int port = Helper.getEnvVariable("JERSEY_HTTP_PORT", 8080); private static final String CONTEXT = "/jersey"; private static final URI baseUri = UriBuilder.fromUri("http://localhost").port(port).path(CONTEXT).build(); @Inject @SuppressWarnings("UnusedDeclaration") protected BundleContext bundleContext; @Configuration public static Option[] configuration() { return options( // systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("INFO"),//"DEBUG"), systemProperty("org.osgi.service.http.port").value(String.valueOf(port)), systemPackage("sun.misc"), // define maven repository 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://maven.java.net/content/repositories/snapshots"), // asm bundle mavenBundle().groupId("asm").artifactId("asm-all").versionAsInProject(), mavenBundle("org.apache.geronimo.specs", "geronimo-servlet_2.5_spec", "1.1.2"), // load grizzly bundle mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-servlet-webserver").versionAsInProject(), mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-http").versionAsInProject(), mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-framework").versionAsInProject(), mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-rcm").versionAsInProject(), mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-portunif").versionAsInProject(), mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-utils").versionAsInProject(), mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-lzma").versionAsInProject(), mavenBundle().groupId("com.sun.grizzly").artifactId("grizzly-http-servlet").versionAsInProject(), // load Jersey bundles 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-servlet").versionAsInProject(), mavenBundle().groupId("com.sun.jersey").artifactId("jersey-grizzly").versionAsInProject(), mavenBundle().groupId("com.sun.jersey").artifactId("jersey-client").versionAsInProject(), // customize the export header new Customizer() { @Override public InputStream customizeTestProbe(InputStream testProbe) throws IOException { return modifyBundle(testProbe).set("Export-Package", this.getClass().getPackage().getName()).build(); } }, // start felix framework felix()); } @Test public void testSimpleResource() throws Exception { GrizzlyWebServer gws = new GrizzlyWebServer(port); ServletAdapter jerseyAdapter = new ServletAdapter(); jerseyAdapter.addInitParameter("com.sun.jersey.config.property.packages", this.getClass().getPackage().getName()); jerseyAdapter.setContextPath("/jersey"); jerseyAdapter.setServletInstance(new ServletContainer()); gws.addGrizzlyAdapter(jerseyAdapter, new String[]{"/jersey"}); gws.start(); WebResource r = resource().path("/simple"); String result = r.get(String.class); System.out.println("RESULT = " + result); assertEquals("OK", result); gws.stop(); } public WebResource resource() { return Client.create().resource(baseUri); } }