gpt4 book ai didi

java - 使用 MockMvcstandaloneSetup 时 MockBean 未初始化服务 bean

转载 作者:行者123 更新时间:2023-12-01 17:24:49 24 4
gpt4 key购买 nike

在这里,我使用 WebMvcTestMockMvc 测试我的端点,并使用 @MockBean 模拟服务。如果不使用 standaloneSetup 方法,下面的代码可以正常运行。

public class MessageControllerTest {

@Nested
@WebMvcTest
class TestUsingMockServer {

@MockBean
MessageServiceImpl messageService;

@Autowired
MockMvc mockMvc;

@Test
public void test_to_return_id_with_message_json() throws Exception {

when(messageService.findById(anyLong())).thenAnswer(invocation -> new Message("Hello World", (Long) invocation.getArguments()[0], LocalDateTime.now()));

mockMvc.perform(get("/resources/messages/{id}", 3)
.contextPath("/resources")
.accept(MediaType.APPLICATION_JSON))
.andDo(print())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(result -> {
result.toString().contains("3");
result.toString().contains("Hello World");
});

}


@Test
public void test_to_get_the_name_passed() throws Exception {

when(messageService.getMessageByIdName(anyLong(), anyString())).thenAnswer(invocation -> new Message("Hello " + invocation.getArguments()[1],
(Long) invocation.getArguments()[0], LocalDateTime.now()));


mockMvc.perform(get("/resources/messages/{id}", 3)
.queryParam("name", "kaustubh")
.contextPath("/resources")
.accept(MediaType.APPLICATION_JSON))
.andDo(print())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(result -> {
result.toString().contains("3");
result.toString().contains("kaustubh");
});

}

}
}

为了避免重复,当我添加 standaloneSetup 方法并运行测试时,我收到错误,提示 MessageServiceImpl bean 未初始化(因为 NullPointerException )

    public class MessageControllerTest {

@Nested
@WebMvcTest
class TestUsingMockServer {

@MockBean
MessageServiceImpl messageService;

@Autowired
MockMvc mockMvc;

@BeforeEach
public void setUp(){
mockMvc = standaloneSetup(new MessageController())
.defaultRequest(get("/")
.contextPath("/resources")
.accept(MediaType.APPLICATION_JSON)
).build();
}

@Test
public void test_to_return_id_with_message_json() throws Exception {

when(messageService.findById(anyLong())).thenAnswer(invocation -> new Message("Hello World", (Long) invocation.getArguments()[0], LocalDateTime.now()));

mockMvc.perform(get("/resources/messages/{id}",3))
.andDo(print())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(status().isOk())
.andExpect(result -> {
result.toString().contains("3");
result.toString().contains("Hello World");
});

}
}
}

报错如下

Error showing NullPointerException in MessageController

第 17 行,在错误中,调用 MessageServiceImpl

@RestController
@RequestMapping("/messages")
public class MessageController {

@Autowired
MessageServiceImpl messageService;

@GetMapping(path = "/{id}")
public Message getMessageById(@PathVariable Long id) {
return messageService.findById(id); // LINE 17
}

@GetMapping(path = "/{id}", params = "name")
public Message getMessageByIdName(@PathVariable Long id, @RequestParam(value = "name", defaultValue = "ST") String name) {
return messageService.getMessageByIdName(id, name);
}

}

发生这种情况是因为 MockMvc 构建器是在创建服务 bean 之前设置的吗?

最佳答案

关于测试设置,您必须了解一些事情。

在第一个示例中:

@WebMvcTest
class TestUsingMockServer {

@MockBean
MessageServiceImpl messageService;

@Autowired
MockMvc mockMvc;

这里测试上下文是由@WebMvcTest启动的,因此MockMvc可以 Autowiring 。 @WebMvcTest 还将查看 @Mockbean 以查看需要模拟的内容。

在我们的第二个示例中:

    @WebMvcTest
class TestUsingMockServer {

@MockBean
MessageServiceImpl messageService;

@Autowired
MockMvc mockMvc;

@BeforeEach
public void setUp(){
mockMvc = standaloneSetup(new MessageController())
.defaultRequest(get("/")
.contextPath("/resources")
.accept(MediaType.APPLICATION_JSON)
).build();
}

在这里,您将使用另一个实例覆盖您的 @Autowired mockMvc 对象。在这里您将设置上下文,

        mockMvc = standaloneSetup(new MessageController())

此设置将跳过任何 Autowiring ,因此在您的 MessageController 类中,

@Autowired
MessageServiceImpl messageService;

这将被跳过。并且将为空。

所以寻求解决方案。一个简单的解决方法是通过构造函数进行 Autowiring :

@Autowired
public MessageController(MessageServiceImpl messageService) {
this.messageService = messageService;
}

现在您可以在测试类中添加模拟:

mockMvc = standaloneSetup(new MessageController(messageService))

这将解决您的问题。

我想给出的其他建议是,您不必太担心重复测试。一旦加载了上下文,它们就会运行得非常快。

关于java - 使用 MockMvcstandaloneSetup 时 MockBean 未初始化服务 bean,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61224791/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com