单元测试中的弹簧启动数据源
2022-09-04 20:19:46
我有一个简单的Spring Boot Web应用程序,它从数据库中读取并返回JSON响应。我有以下测试配置:
@RunWith(SpringRunner.class)
@SpringBootTest(classes=MyApplication.class, properties={"spring.config.name=myapp"})
@AutoConfigureMockMvc
public class ControllerTests {
@Autowired
private MockMvc mvc;
@MockBean
private ProductRepository productRepo;
@MockBean
private MonitorRepository monitorRepo;
@Before
public void setupMock() {
Mockito.when(productRepo.findProducts(anyString(), anyString()))
.thenReturn(Arrays.asList(dummyProduct()));
}
@Test
public void expectBadRequestWhenNoParamters() throws Exception {
mvc.perform(get("/products"))
.andExpect(status().is(400))
.andExpect(jsonPath("$.advice.status", is("ERROR")));
}
//other tests
}
我有一个在应用程序的主配置中配置的数据源 Bean。当我运行测试时,Spring尝试加载上下文并失败,因为数据源是从JNDI获取的。通常,我希望避免为此测试创建数据源,因为我模拟了存储库。
是否可以在运行单元测试时跳过数据源的创建?
在内存中,用于测试的数据库不是一个选项,因为我的数据库创建脚本具有特定的结构,并且无法轻松地从classpath:schema执行.sql
编辑数据源定义在MyApplication.class
@Bean
DataSource dataSource(DatabaseProeprties databaseProps) throws NamingException {
DataSource dataSource = null;
JndiTemplate jndi = new JndiTemplate();
setJndiEnvironment(databaseProps, jndi);
try {
dataSource = jndi.lookup(databaseProps.getName(), DataSource.class);
} catch (NamingException e) {
logger.error("Exception loading JNDI datasource", e);
throw e;
}
return dataSource;
}