I have to implement some JUnit tests for my rest services. For instance this is one of my Rest services:
@Path("/dni-fe")
public class HelloWorld
{
@POST
@Path("/home")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public MachineResponse doMachineRegister(MachineBean machineBean)
{
MachineResponse response = new MachineResponse();
String name = machineBean.getName();
String country = machineBean.getCountry();
String company = machineBean.getCompany();
String model = machineBean.getModel();
//make some stuff and some queries on db to populate the response object
return response;
}
And here is my test on this service:
public class MachineResponseTest {
private static final String BASE_URI = "http://localhost:8080/dni-fe/home"
@Test
public void testDevice() {
WebResource resource = Client.create().resource(BASE_URI);
resource.accept(MediaType.APPLICATION_JSON);
StringBuilder sb = new StringBuilder();
sb.append("{\"name\":\"123456\",\n");
sb.append(" \"country\":\"Spain\",\n");
sb.append(" \"company\":\"xxx\",\n");
sb.append(" \"model\":\"1.10.0\"\n}");
MachineResponse result = resource.post(MachineResponse.class,sb.toString());
}
The test fails with the following error:
com.sun.jersey.api.client.UniformInterfaceException: POST http://localhost:8080/dni-fe/home returned a response status of 415 Unsupported Media Type at com.sun.jersey.api.client.WebResource.handle(WebResource.java:686)