Package org.jboss.resteasy.test.providers.jaxb.seealso

Source Code of org.jboss.resteasy.test.providers.jaxb.seealso.SeeAlsoTest$SeeAlso

package org.jboss.resteasy.test.providers.jaxb.seealso;

import org.jboss.resteasy.client.ClientRequest;
import org.jboss.resteasy.client.ClientResponse;
import org.jboss.resteasy.test.BaseResourceTest;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import javax.ws.rs.Consumes;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.xml.bind.JAXBContext;
import java.io.InputStream;
import java.io.StringWriter;

import static org.jboss.resteasy.test.TestPortProvider.generateURL;

/**
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
* @version $Revision: 1 $
*/
public class SeeAlsoTest extends BaseResourceTest
{
   @Path("/see")
   public static class SeeAlso
   {
      @Path("base")
      @POST
      @Produces(MediaType.APPLICATION_XML)
      @Consumes(MediaType.APPLICATION_XML)
      public BaseFoo post(BaseFoo foo)
      {
         Assert.assertTrue(foo instanceof RealFoo);
         Assert.assertEquals(((RealFoo) foo).getName(), "bill");
         return foo;
      }


      @Path("intf")
      @POST
      @Produces(MediaType.APPLICATION_XML)
      @Consumes(MediaType.APPLICATION_XML)
      public IFoo post(IFoo foo)
      {
         Assert.assertTrue(foo instanceof RealFoo);
         Assert.assertEquals(((RealFoo) foo).getName(), "bill");
         return foo;
      }
   }


   @Before
   public void setUp() throws Exception
   {
      dispatcher.getRegistry().addPerRequestResource(SeeAlso.class);
   }


   @Test
   public void testBase() throws Exception
   {
      String url = generateURL("/see/base");
      runTest(url);

   }

   @Test
   public void testIntf() throws Exception
   {
      String url = generateURL("/see/intf");
      runTest(url);

   }

   private void runTest(String url) throws Exception
   {
      JAXBContext ctx = JAXBContext.newInstance(RealFoo.class);
      StringWriter writer = new StringWriter();
      RealFoo foo = new RealFoo();
      foo.setName("bill");

      ctx.createMarshaller().marshal(foo, writer);

      String s = writer.getBuffer().toString();
      System.out.println(s);

      ClientRequest request = new ClientRequest(url);
      request.header("Content-Type", "application/xml");
      request.body("application/xml", s);
      ClientResponse<InputStream> response = request.post(InputStream.class);
      Assert.assertEquals(200, response.getStatus());
      foo = (RealFoo) ctx.createUnmarshaller().unmarshal(response.getEntity());
      Assert.assertEquals(((RealFoo) foo).getName(), "bill");
      response.releaseConnection();
   }

}
TOP

Related Classes of org.jboss.resteasy.test.providers.jaxb.seealso.SeeAlsoTest$SeeAlso

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.