/* * 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.jerseyosgird; import com.sun.grizzly.http.SelectorThread; import com.sun.grizzly.tcp.Adapter; import com.sun.jersey.api.client.Client; import com.sun.jersey.api.client.WebResource; import com.sun.jersey.api.container.grizzly.GrizzlyServerFactory; import com.sun.jersey.api.core.ClassNamesResourceConfig; import com.sun.jersey.osgi.rdtestbundle.SimpleResource; import com.sun.jerseyosgird.util.Helper; import javax.ws.rs.core.UriBuilder; import java.net.URI; import javax.ws.rs.core.Application; import javax.ws.rs.ext.RuntimeDelegate; import static org.ops4j.pax.exam.CoreOptions.options; import static org.ops4j.pax.exam.CoreOptions.systemProperty; import static org.ops4j.pax.exam.CoreOptions.wrappedBundle; import static org.ops4j.pax.exam.CoreOptions.mavenBundle; import static org.ops4j.pax.exam.CoreOptions.felix; import static org.ops4j.pax.exam.container.def.PaxRunnerOptions.repositories; import org.junit.Test; import org.junit.runner.RunWith; 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.*; @RunWith(JUnit4TestRunner.class) public class ServerClientMixedCreateEndpointTest { 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 protected BundleContext bundleContext; @Test public void testSimpleResource() throws Exception { Application app = new ClassNamesResourceConfig(SimpleResource.class); RuntimeDelegate rd = RuntimeDelegate.getInstance(); final Adapter jerseyAdapter = rd.createEndpoint(app, Adapter.class); assertNotNull(jerseyAdapter); final SelectorThread server = GrizzlyServerFactory.create(baseUri, jerseyAdapter); WebResource r = createResource().path("/simple"); String response = r.get(String.class); System.out.println("RESPONSE = " + response); assertEquals("jersey resource", response); server.stopEndpoint(); } public WebResource createResource() { final Client c = Client.create(); final WebResource rootResource = c.resource(baseUri); return rootResource; } @Configuration public static Option[] configuration() { Option[] options = options( systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("INFO"),//"DEBUG"), systemProperty("org.osgi.service.http.port").value(String.valueOf(port)), // 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://download.java.net/maven/2", "http://repository.springsource.com/maven/bundles/release", "http://repository.springsource.com/maven/bundles/external" ), // log mavenBundle("org.ops4j.pax.logging", "pax-logging-api", "1.4"), mavenBundle("org.ops4j.pax.logging", "pax-logging-service", "1.4"), //mvn: url handler mavenBundle("org.ops4j.pax.url", "pax-url-mvn", "1.1.2"), // felix config admin mavenBundle("org.apache.felix", "org.apache.felix.configadmin", "1.2.4"), // felix preference service mavenBundle("org.apache.felix", "org.apache.felix.prefs","1.0.2"), // blueprint mavenBundle("org.apache.geronimo.blueprint", "geronimo-blueprint", "1.0.0"), // bundles mavenBundle("org.apache.mina", "mina-core", "2.0.0-RC1"), mavenBundle("org.apache.sshd", "sshd-core", "0.3.0"), // HTTP SPEC mavenBundle("org.apache.geronimo.specs","geronimo-servlet_2.5_spec","1.1.2"), // load PAX url war mavenBundle("org.ops4j.pax.url","pax-url-war","1.1.2"), 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(), mavenBundle().groupId("com.sun.jersey.test.osgi.runtime-delegate-tests").artifactId("runtime-delegate-test-bundle").versionAsInProject(), mavenBundle("com.sun.grizzly", "grizzly-http", "1.9.18-i"), mavenBundle("com.sun.grizzly", "grizzly-framework", "1.9.18-i"), mavenBundle("com.sun.grizzly", "grizzly-portunif", "1.9.18-i"), mavenBundle("com.sun.grizzly", "grizzly-utils", "1.9.18-i"), mavenBundle("com.sun.grizzly", "grizzly-rcm", "1.9.18-i"), wrappedBundle(mavenBundle("com.sun.net.httpserver", "http", "20070405")), // start felix framework felix()); return options; } }