Return-Path: X-Original-To: apmail-cxf-commits-archive@www.apache.org Delivered-To: apmail-cxf-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 0CF7417A70 for ; Mon, 26 Jan 2015 17:12:00 +0000 (UTC) Received: (qmail 39290 invoked by uid 500); 26 Jan 2015 17:12:00 -0000 Delivered-To: apmail-cxf-commits-archive@cxf.apache.org Received: (qmail 39225 invoked by uid 500); 26 Jan 2015 17:12:00 -0000 Mailing-List: contact commits-help@cxf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cxf.apache.org Delivered-To: mailing list commits@cxf.apache.org Received: (qmail 39216 invoked by uid 99); 26 Jan 2015 17:12:00 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jan 2015 17:12:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2E55FE03F2; Mon, 26 Jan 2015 17:12:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sergeyb@apache.org To: commits@cxf.apache.org Message-Id: <93177de4f7ea403690d1aee9355953b1@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cxf git commit: [CXF-6200] Adding a missing test class Date: Mon, 26 Jan 2015 17:12:00 +0000 (UTC) Repository: cxf Updated Branches: refs/heads/master 6b5c8e5c0 -> 7ff554ff3 [CXF-6200] Adding a missing test class Project: http://git-wip-us.apache.org/repos/asf/cxf/repo Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/7ff554ff Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/7ff554ff Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/7ff554ff Branch: refs/heads/master Commit: 7ff554ff3cfb4b26baee78c9ee8d8cc1f77785e9 Parents: 6b5c8e5 Author: Sergey Beryozkin Authored: Mon Jan 26 17:11:46 2015 +0000 Committer: Sergey Beryozkin Committed: Mon Jan 26 17:11:46 2015 +0000 ---------------------------------------------------------------------- ...AXRSClientServerUserResourceDefaultTest.java | 173 +++++++++++++++++++ 1 file changed, 173 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cxf/blob/7ff554ff/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerUserResourceDefaultTest.java ---------------------------------------------------------------------- diff --git a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerUserResourceDefaultTest.java b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerUserResourceDefaultTest.java new file mode 100644 index 0000000..4678c29 --- /dev/null +++ b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSClientServerUserResourceDefaultTest.java @@ -0,0 +1,173 @@ +/** + * 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.cxf.systest.jaxrs; + +import java.io.InputStream; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Map; + +import javax.ws.rs.HttpMethod; +import javax.ws.rs.NotAllowedException; +import javax.ws.rs.Path; +import javax.ws.rs.core.Context; +import javax.ws.rs.core.HttpHeaders; +import javax.ws.rs.core.Request; +import javax.ws.rs.core.Response; +import javax.ws.rs.core.UriInfo; +import javax.xml.bind.JAXBContext; +import javax.xml.bind.Unmarshaller; + +import org.apache.commons.httpclient.HttpClient; +import org.apache.commons.httpclient.methods.GetMethod; +import org.apache.cxf.jaxrs.JAXRSServerFactoryBean; +import org.apache.cxf.jaxrs.model.AbstractResourceInfo; +import org.apache.cxf.jaxrs.model.Parameter; +import org.apache.cxf.jaxrs.model.ParameterType; +import org.apache.cxf.jaxrs.model.UserOperation; +import org.apache.cxf.jaxrs.model.UserResource; +import org.apache.cxf.testutil.common.AbstractBusClientServerTestBase; +import org.apache.cxf.testutil.common.AbstractBusTestServerBase; + +import org.junit.BeforeClass; +import org.junit.Ignore; +import org.junit.Test; + +public class JAXRSClientServerUserResourceDefaultTest extends AbstractBusClientServerTestBase { + public static final String PORT = allocatePort(Server.class); + + @Ignore + public static class Server extends AbstractBusTestServerBase { + org.apache.cxf.endpoint.Server server; + protected void run() { + JAXRSServerFactoryBean sf = new JAXRSServerFactoryBean(); + sf.setAddress("http://localhost:" + PORT + "/default"); + sf.getServiceFactory().setDefaultModelClass(DefaultResource.class); + + UserResource ur = new UserResource(); + ur.setPath("/bookstoreNoAnnotations"); + UserOperation op = new UserOperation(); + op.setPath("/books/{id}"); + op.setName("getBook"); + op.setVerb("GET"); + op.setParameters(Collections.singletonList(new Parameter(ParameterType.PATH, "id"))); + + UserOperation op2 = new UserOperation(); + op2.setPath("/books/{id}/chapter"); + op2.setName("getBookChapter"); + op2.setParameters(Collections.singletonList(new Parameter(ParameterType.PATH, "id"))); + + List ops = new ArrayList(); + ops.add(op); + ops.add(op2); + + ur.setOperations(ops); + + UserResource ur2 = new UserResource(); + ur2.setName(ChapterNoAnnotations.class.getName()); + UserOperation op3 = new UserOperation(); + op3.setPath("/"); + op3.setName("getItself"); + op3.setVerb("GET"); + ur2.setOperations(Collections.singletonList(op3)); + + sf.setModelBeans(ur, ur2); + + server = sf.create(); + } + + @Override + public void tearDown() { + server.stop(); + server.destroy(); + server = null; + } + public static void main(String[] args) { + try { + Server s = new Server(); + s.start(); + } catch (Exception ex) { + ex.printStackTrace(); + System.exit(-1); + } finally { + System.out.println("done!"); + } + } + } + + @BeforeClass + public static void startServers() throws Exception { + AbstractResourceInfo.clearAllMaps(); + assertTrue("server did not launch correctly", + launchServer(Server.class, true)); + createStaticBus(); + } + + @Test + public void testGetBook123() throws Exception { + getAndCompare("http://localhost:" + PORT + "/default/bookstoreNoAnnotations/books/123", + "application/xml", 200); + } + + private void getAndCompare(String address, + String acceptType, + int expectedStatus) throws Exception { + GetMethod get = new GetMethod(address); + get.setRequestHeader("Accept", acceptType); + HttpClient httpClient = new HttpClient(); + try { + int result = httpClient.executeMethod(get); + assertEquals(expectedStatus, result); + Book book = readBook(get.getResponseBodyAsStream()); + assertEquals(123, book.getId()); + assertEquals("CXF in Action", book.getName()); + } finally { + get.releaseConnection(); + } + } + + private Book readBook(InputStream is) throws Exception { + JAXBContext c = JAXBContext.newInstance(new Class[]{Book.class}); + Unmarshaller u = c.createUnmarshaller(); + return (Book)u.unmarshal(is); + } + + @Path("/") + public static class DefaultResource { + @Context + private Request request; + @Context + private UriInfo ui; + @Context + private HttpHeaders headers; + private Map books = Collections.singletonMap("123", new Book("CXF in Action", 123L)); + @Path("{a:.*}") + public Response handle() { + if (HttpMethod.GET.equals(request.getMethod())) { + String id = ui.getPathParameters().getFirst("id"); + Book book = books.get(id); + return Response.ok(book, headers.getAcceptableMediaTypes().get(0)).build(); + } else { + throw new NotAllowedException("GET"); + } + } + } +}