我正在尝试隔离Spring应用程序上下文来测试我的控制器。
这是我的控制人
@RestController
public class AddressesController {
@Autowired
service service;
@GetMapping("/addresses/{id}")
public Address getAddress( @PathVariable Integer id ) {
return service.getAddressById(id);
}
}
我的服务界面
public interface service {
Address getAddressById(Integer id);
}
这是我的测试班
@ExtendWith(SpringExtension.class)
@WebMvcTest
public class AddressControllerTest {
@Autowired
private MockMvc mockMvc;
@MockBean
service myService;
@Test
public void getAddressTest() throws Exception {
Mockito.doReturn(new Address()).when(myService).getAddressById(1);
mockMvc.perform(MockMvcRequestBuilders.get("/addresses/1"))
.andExpect(status().isOk());
}
}
这是我得到的例外:
org.mockito.exceptions.misusing.NullInsteadOfMockException:参数 传递给when()为null!正确存根的示例: doThrow(new RuntimeException())。when(mock).someMethod();另外,如果您使用@Mock注释,请不要错过initMocks()
就像从未创建过服务一样。我该如何解决这个问题?
我们可以通过使用@RunWith(SpringRunner.class)
代替@ExtendWith(SpringExtension.class)
来解决此问题。有人可以解释为什么它行之有效吗?通常,第一个注释用于junit4,第二个注释用于junit5。
答案 0 :(得分:0)
不幸的是,由于依赖问题,问题得以解决。
我的pom.xml文件包含spring-boot-starter-test
,如果我们检查包含该启动程序的内容,则会发现它包含junit4作为依赖关系,而不是junit5。
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
<scope>compile</scope>
</dependency>
当我尝试在@ExtendWith(SpringExtension.class)的测试类中使用Junit5时,该测试很遗憾会编译,但会出现运行时错误。 我通过从Spring Boot Starter中排除junit4来解决了这个问题:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</exclusion>
</exclusions>
</dependency>
我的pom.xml还应该包含junit5依赖项
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.3.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.3.2</version>
<scope>test</scope>
</dependency>