单元测试中的弹簧启动数据源

我有一个简单的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;
   }

答案 1

由于您正在加载配置类数据源 bean 将被创建,请尝试在另一个未在测试中使用的 Bean 中移动数据源,请确保为测试加载的所有类都不依赖于数据源。
或者在
测试中创建一个标记的配置类,并将其包含在模拟数据源中,例如MyApplication.class@TestConfigurationSpringBootTest(classes=TestConfig.class)

@Bean
public DataSource dataSource() {
    return Mockito.mock(DataSource.class);
}

但这可能会失败,因为对这个模拟数据源的方法调用连接将返回null,在这种情况下,您必须创建一个内存数据源,然后模拟jdbcTemplate和其余的依赖项。


答案 2

尝试将数据源添加为@MockBean

@MockBean
private DataSource dataSource

这样,Spring将为您执行替换逻辑,其优点是您的生产代码bean创建甚至不会执行(没有JNDI查找)。


推荐