JerseyTest框架路径编码替换?与%3F

时间:2016-04-21 21:28:54

标签: java unit-testing junit jersey jersey-test-framework

我有一个失败的测试,应该通过。该服务工作正常,但JerseyTest JUnit测试失败,状态为400。

使用Postman或浏览器,当我针对已部署的服务尝试此URL时:

http://localhost:8080/myService/123?appId=local&userId=jcn

我得到正确的结果,状态200并在日志中看到以下内容:

    INFO: 4 * Server has received a request on thread http-nio-8080-exec-5
4 > GET http://localhost:8080/myService/123?appId=local&userId=jcn

注意?在URL中,这是正确的。

但是当我在JeryseyTest扩展的Junit类中尝试这个单元测试时:

@Test
public void getWithCorrectUrlExecutesWithoutError()
{
    String x = target("myService/123?appId=local&userId=jcn").request().get(String.class);
}

它失败,状态为400,我在日志中看到了这一点:

INFO: 1 * Server has received a request on thread grizzly-http-server-0
1 > GET http://localhost:9998/myService/123%3FappId=local&userId=jcn
注意那个?已被%3F取代。

我不明白发生了什么。如果我在浏览器中尝试“%3F”URL,我会从单元测试中看到相同的400错误。所以我觉得有点确定url的编码是问题。

这是我的泽西资源,部分列表,因为它有点长,但我很确定这是相关的部分:

    @Component
    @Path("/myService")
    public class MyResource
    {
        @Autowired
        SomeDao someDao;

        @NotBlank
        @QueryParam("appId")
        private String appId;

        @NotBlank
        @QueryParam("userId")
        private String userId;


        @GET
        @Path("/{id}")
        @Produces(MediaType.APPLICATION_JSON)
        public Status getStatus(@NotBlank @PathParam("id") String id)
        {
            errors = new ArrayList<>();
            Status retVal;

            if(validateId(id))
            {
                retVal = someDao.getStatus(id);
            }
            else
            {
                throw new BadParameterException(String.join(" | ", errors));
            }

            return retVal;
        }
}

1 个答案:

答案 0 :(得分:4)

您可以使用queryParam method实例上的WebTarget

String x = target("myService/123")
    .queryParam("appId", "local")
    .queryParam("userId", "jcn")
    .request()
    .get(String.class);