Implement a JUnit test for a rest service

橙三吉。 提交于 2019-12-23 17:28:06

问题


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)


回答1:


I am fairly sure you have to use .type(MediaType.APPLICATION_JSON), not .accept(




回答2:


You can use simple JSONObject from org.json.JSONObject and pass data as toString of it. Sample code is

JSONObject address = new JSONObject();
address.put("line1", address1);
address.put("line2", address2);
address.put("city", city);
address.put("state", state);
address.put("postalCode", zip);
address.put("country", "US");
address.toString()


来源:https://stackoverflow.com/questions/41469143/implement-a-junit-test-for-a-rest-service

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!