我变得疯狂,我尝试了各种测试运行器和可能注释的所有可能组合进行测试,我需要的最接近的解决方案如下:
@RunWith(SpringRunner.class)
@SpringBootTest(classes = {MyApplication.class})
@WebAppConfiguration
public class MyControllerTest {
MockMvc mockMvc;
// My DAO is an interface extending JpaRepository
@Mock
MyDAO myDAO;
@Autowired
WebApplicationContext webApplicationContext;
@Before
public void setUp() throws Exception {
List<MyItem> myItems = new ArrayList(){{
// Items init ...
}}
Mockito.when(myDAO.findAll()).thenReturn(myItems);
/* Other solution I tried with different annotations:
* given(myDAO.findAll()).willReturn(myItems);
* this.mockMvc = MockMvcBuilders.standaloneSetup(myController).build();
*/
this.mockMvc = webAppContextSetup(webApplicationContext).build();
}
@After
public void tearDown() throws Exception {
// Mockito.reset(myDAO);
}
@Test
public void getItems() {
String res = mockMvc.perform(get("/items"))/*.andExpect(status().isOk())*/.andReturn().getResponse().getContentAsString();
assertThat(res, is("TODO : string representation of myItems ..."));
assertNull(res); // For checking change in test functionning
}
}
我很好地在我的控制器方法中进入调试模式,在服务方法中但是当我看到 DAO 类型时,它不是 Mock 并且 findAll() 总是返回空的 ArrayList(),即使我这样做:
Mockito.when(myDAO.findAll()).thenReturn(myItems);
我没有提出异常,我的 DAO 没有被嘲笑,尽管我找到了所有 tuto,但我不知道该怎么做。我找到的最接近我需要的教程是这个带有 Spring MVC 测试的单元测试控制器,但还不够,因为他希望将模拟服务注入控制器以测试控制器,我想模拟注入到控制器中的真实服务(我想测试控制器+服务)。
在我看来,我已经通过在测试类上使用注释来做到这一点,该注释指定了 Spring 应用程序必须在测试模式下实例化哪些类以及必须模拟哪些类,但我不记得'-_-.
需要你的帮助,这让我发疯!
非常感谢你 !!!