java.lang.AssertionError : expected:<200> but was:<404> in jersey restful services unit test

标签 java json unit-testing rest junit

我有这个类JerseySpringSuiteTest.java:

@RunWith(Suite.class)
@Suite.SuiteClasses({ ProductTest.class })
public class JerseySpringSuiteTest {
    public static JerseyTest jerseyTest;

    @BeforeClass
    public static void init() {
        jerseyTest = new JerseyTest(new WebAppDescriptor.Builder("com.product.resource")
                .contextParam("contextConfigLocation", "classpath:applicationContext.xml").servletClass(SpringServlet.class)
                .contextListenerClass(ContextLoaderListener.class).requestListenerClass(RequestContextListener.class).build()) {

        };
    }
}

ProductTest.java:

public class ProductTest{

    @Before
    public void before() throws Exception {
        JerseySpringSuiteTest.jerseyTest.setUp();
        ExecutorService productExecutorService = ContextLoaderListener.getCurrentWebApplicationContext().getBean(
                "productExecutorService", ExecutorService.class);
        Assert.assertNotNull(productExecutorService);
    }

    @Test
    public void testNoAction() {
        WebResource webResource = JerseySpringSuiteTest.jerseyTest.resource();
        String responseMsg = webResource.path("product/").get(String.class);
        Assert.assertEquals("No Action Specified", responseMsg);
    }

    @Test
    public void testGetProducts() throws URISyntaxException {
        WebResource webResource = JerseySpringSuiteTest.jerseyTest.resource().path(
                "Products/rest/product/getProducts/1/productName/01-01-2013/");
        ClientResponse response = webResource.accept(MediaType.APPLICATION_JSON).get(ClientResponse.class);

        Assert.assertEquals(200, response.getStatus());
    }
}

Product.java:

@Component
@Path("/product")
public class Product{
    @Autowired
    private ProductService productService;

    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public Object noAction() {
        return "No Action Specified";
    }

    @GET
    @Path("/getProducts/{companyID}/{companyName}/{date}")
    @Produces(MediaType.APPLICATION_JSON)
    public Object getProducts(@PathParam("companyID") final int companyID,
            @PathParam("date") final String date, @PathParam("companyName") final String companyName)
            throws IOException {
        return productService.getProducts(companyID, companyName, date);
    }
}

当我执行它时,我看到:

java.lang.AssertionError: expected:<200> but was:<404>
    at org.junit.Assert.fail(Assert.java:88)
    at org.junit.Assert.failNotEquals(Assert.java:743)
    at org.junit.Assert.assertEquals(Assert.java:118)
    at org.junit.Assert.assertEquals(Assert.java:555)
    at org.junit.Assert.assertEquals(Assert.java:542)
    at com.product.resource.MonitoringEngineResourceTest.testGetProducts(ProductTest.java:27)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.junit.runners.Suite.runChild(Suite.java:127)
    at org.junit.runners.Suite.runChild(Suite.java:26)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

当我在浏览器中 ping URL 时,我能够获取数据。

有人可以帮我获取 200 和 JSON 对象的响应状态吗?

注意:我使用的是 jersey 1.17.1 版本和 grizzly2 容器。

最佳答案

根据您的 noAction 单元测试,正确的 URL 似乎是:

webResource.path("product/")

这也可以通过您的实际服务等级来确认:

@Path("/product")
public class Product {
   //...
}

这意味着您需要更改其他测试以使用相同的路径。

此外,根据您的服务类别,它是 companyName,而不是 productName

@Test
public void testGetProducts() throws URISyntaxException {

    WebResource webResource = JerseySpringSuiteTest.jerseyTest.resource();
    ClientResponse response =
        webResource.path("product/getProducts/1/companyName/01-01-2013/")
                   .accept(MediaType.APPLICATION_JSON)
                   .get(ClientResponse.class);

    Assert.assertEquals(200, response.getStatus());
}

它在浏览器中工作的一个可能原因是您的服务器(Tomcat、Jetty 等)配置为将公共(public) URL 前缀 Products/rest 添加到所有路径。当您执行单元测试时,该服务器不在图中。

关于java.lang.AssertionError : expected:<200> but was:<404> in jersey restful services unit test,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21422155/

相关文章:

.net - 如何使用 "proper"调用堆栈创建自定义 MSTest 断言方法

java - 如何在 Java 8 中并行读取文件的所有行

java - 如何将 System.setProperty 的范围限制为仅设置它的方法?

java - 嵌套 @Transactional(propagation = Propagation.REQUIRES_NEW) 是否创建新的 Hibernate session ?

java - 字符串在数据库中作为整数发布

json - 如何从 json 文件创建 ember 模型

python - “ascii”编解码器无法编码字符 : ordinal not in range (128)

ios - 我如何对 DispatchQueue.main 上运行的代码块进行单元测试

json - Spring Boot 中同一实体的多个自定义序列化程序

ios - 无法加载单元测试的底层模块