无法用DAO模拟编写集成测试控制器?



我变得疯狂了,我尝试了各种测试运行器和可能的测试注释的所有可能组合进行测试,我需要的最接近的解决方案如下:

@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,但我不知道该怎么做。 我发现最接近我需求的 tuto 是这个带有 Spring MVC 测试的单元测试控制器,但还不够,因为他想要将模拟服务注入控制器以测试控制器,我魔杖模拟注入到实际服务中的 DAO 注入控制器(我想测试控制器 + 服务)。

在我看来,我已经通过在测试类上使用注释来做到这一点,该注释指定了在测试模式下 spring 应用程序必须实例化哪个类以及必须模拟哪个类,但我不记得'-_-。

需要你的帮助,它让我很恶心!

谢谢!!!

对于@Mock注释,您需要额外的初始化:

@Before
public void initMocks() {
MockitoAnnotations.initMocks(this);
}

或者将运行器更改为@RunWith(MockitoJUnitRunner...,但在这种情况下不确定 spring 上下文初始化。

我终于这样做了(但不满意,因为它不模拟HSQLDB数据库,它创建了一个测试数据库),而我想模拟DAO:

@RunWith(SpringRunner.class)
@SpringBootTest(classes = {MySpringApplication.class})
@WebAppConfiguration
public myTestClass {
MockMvc mockMvc;
@Autowired
ItemDAO itemDAO;
@Autowired
WebApplicationContext webApplicationContext;
@Before
public void setUp() throws Exception {
this.mockMvc = webAppContextSetup(webApplicationContext).build();
}
@After
public void tearDown() throws Exception {
itemDAO.deleteAll();
}
@Test
public void testMethod() {
// DB init by saving objects: create a item and save it via DAO, use real test DB
// Only mocking about rest call:
String res = mockMvc.perform(get("/items")).andExpect(status().isOk()).andReturn().getResponse().getContentAsString();
}

}

最新更新