简体   繁体   中英

java.lang.AssertionError when executing unit test

I got a java.lang.AssertionError when I was attempting to verify the href. The response body looks fine,

MockHttpServletResponse:
           Status = 200
    Error message = null
          Headers = {Content-Type=[application/json;charset=UTF-8]}
     Content type = application/json;charset=UTF-8
             Body = {"itemName":"ThinkPad","links":[{"rel":"self","href":"http://localhost/items/001"}]}
    Forwarded URL = null
   Redirected URL = null
          Cookies = []

but when called this sentence: andExpect(jsonPath("$.links[0].href", hasItem(endsWith("/items/001"))))

The error occured:

java.lang.AssertionError: JSON path "$.links[0].href"
Expected: a collection containing ""
     but: was "http://localhost/items/001"

    at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:20)
    at org.springframework.test.util.JsonPathExpectationsHelper.assertValue(JsonPathExpectationsHelper.java:74)
    at org.springframework.test.web.servlet.result.JsonPathResultMatchers$1.match(JsonPathResultMatchers.java:86)
    at org.springframework.test.web.servlet.MockMvc$1.andExpect(MockMvc.java:171)
    at scnz.api.controller.ItemDispatchControllerTest.getCurrentStock(ItemDispatchControllerTest.java:62)

Here is the test code:

@Test
    public void getCurrentStock() throws Exception {
        Item item = new Item("001", "ThinkPad");
        when(service.retrieve("001")).thenReturn(item);

        mockMvc.perform(get("/items/001"))
                .andDo(print())
                .andExpect(jsonPath("$.itemName", is(item.getItemName())))
                .andExpect(jsonPath("$.links[0].href", hasItem(endsWith("/items/001"))))
                .andExpect(status().isOk());

Can anyone figure out where is wrong?

The actual result of jsonPath(...) for "$.links[0].href" is just a String as stated in the AssertionError.

The expected result for hasItem(...) is a collection as stated in the AssertionError.

In your case therefore just use endsWith(...) withouch hasItem(...) . If your expression for jsonPath(...) returns a collection (eg via "$.links[*].href") instead of a single item you should use hasItem(...) .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM