/* * 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 org.glassfish.jersey.examples.jaxb; import java.util.Collection; import javax.ws.rs.core.GenericEntity; import javax.ws.rs.core.GenericType; import static javax.ws.rs.client.Entity.xml; import javax.xml.bind.JAXBElement; import javax.xml.namespace.QName; import org.glassfish.jersey.server.ResourceConfig; import org.glassfish.jersey.test.JerseyTest; import org.glassfish.jersey.test.TestProperties; import org.junit.Test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; /** * Jersey JAXB example test. * * @author Paul Sandoz * @author Marek Potociar (marek.potociar at oracle.com) */ public class JaxbTest extends JerseyTest { @Override protected ResourceConfig configure() { enable(TestProperties.LOG_TRAFFIC); enable(TestProperties.DUMP_ENTITY); return App.createApp(); } /** * Test checks that the application.wadl is reachable. */ @Test public void testApplicationWadl() { String applicationWadl = target().path("application.wadl").request().get(String.class); assertTrue("Something wrong. Returned wadl length is not > 0", applicationWadl.length() > 0); } @Test public void testRootElement() { JaxbXmlRootElement e1 = target().path("jaxb/XmlRootElement").request().get(JaxbXmlRootElement.class); JaxbXmlRootElement e2 = target().path("jaxb/XmlRootElement").request("application/xml") .post(xml(e1), JaxbXmlRootElement.class); assertEquals(e1, e2); } @Test public void testRootElementWithHeader() { String e1 = target().path("jaxb/XmlRootElement").request().get(String.class); String e2 = target().path("jaxb/XmlRootElementWithHeader").request().get(String.class); assertTrue(e2.contains("<?xml-stylesheet type='text/xsl' href='foobar.xsl' ?>") && e2.contains(e1.substring(e1.indexOf("?>") + 2).trim())); } @Test public void testJAXBElement() { GenericType<JAXBElement<JaxbXmlType>> genericType = new GenericType<JAXBElement<JaxbXmlType>>() {}; JAXBElement<JaxbXmlType> e1 = target().path("jaxb/JAXBElement").request().get(genericType); JAXBElement<JaxbXmlType> e2 = target().path("jaxb/JAXBElement").request("application/xml") .post(xml(e1), genericType); assertEquals(e1.getValue(), e2.getValue()); } @Test public void testXmlType() { JaxbXmlType t1 = target().path("jaxb/JAXBElement").request().get(JaxbXmlType.class); JAXBElement<JaxbXmlType> e = new JAXBElement<JaxbXmlType>( new QName("jaxbXmlRootElement"), JaxbXmlType.class, t1); JaxbXmlType t2 = target().path("jaxb/XmlType").request("application/xml") .post(xml(e), JaxbXmlType.class); assertEquals(t1, t2); } @Test public void testRootElementCollection() { GenericType<Collection<JaxbXmlRootElement>> genericType = new GenericType<Collection<JaxbXmlRootElement>>() {}; Collection<JaxbXmlRootElement> ce1 = target().path("jaxb/collection/XmlRootElement").request().get(genericType); Collection<JaxbXmlRootElement> ce2 = target().path("jaxb/collection/XmlRootElement").request("application/xml") .post(xml(new GenericEntity<Collection<JaxbXmlRootElement>>(ce1) {}), genericType); assertEquals(ce1, ce2); } @Test public void testXmlTypeCollection() { GenericType<Collection<JaxbXmlRootElement>> genericRootElement = new GenericType<Collection<JaxbXmlRootElement>>() {}; GenericType<Collection<JaxbXmlType>> genericXmlType = new GenericType<Collection<JaxbXmlType>>() { }; Collection<JaxbXmlRootElement> ce1 = target().path("jaxb/collection/XmlRootElement").request() .get(genericRootElement); Collection<JaxbXmlType> ct1 = target().path("jaxb/collection/XmlType").request("application/xml") .post(xml(new GenericEntity<Collection<JaxbXmlRootElement>>(ce1) {}), genericXmlType); Collection<JaxbXmlType> ct2 = target().path("jaxb/collection/XmlRootElement").request() .get(genericXmlType); assertEquals(ct1, ct2); } @Test public void testRootElementArray() { JaxbXmlRootElement[] ae1 = target().path("jaxb/array/XmlRootElement").request() .get(JaxbXmlRootElement[].class); JaxbXmlRootElement[] ae2 = target().path("jaxb/array/XmlRootElement").request("application/xml") .post(xml(ae1), JaxbXmlRootElement[].class); assertEquals(ae1.length, ae2.length); for (int i = 0; i < ae1.length; i++) { assertEquals(ae1[i], ae2[i]); } } @Test public void testXmlTypeArray() { JaxbXmlRootElement[] ae1 = target().path("jaxb/array/XmlRootElement").request() .get(JaxbXmlRootElement[].class); JaxbXmlType[] at1 = target().path("jaxb/array/XmlType").request("application/xml") .post(xml(ae1), JaxbXmlType[].class); JaxbXmlType[] at2 = target().path("jaxb/array/XmlRootElement").request() .get(JaxbXmlType[].class); assertEquals(at1.length, at2.length); for (int i = 0; i < at1.length; i++) { assertEquals(at1[i], at2[i]); } } }