环境:
Java: 17
Springboot: 2.6.2
Junit-jupiter:5.8.2
通常集成测试需要启动一个容器来执行测试用例。这可以使用以下代码来实现:
import org.junit.jupiter.api.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.core.io.ResourceLoader;
import org.springframework.test.context.TestPropertySource;
import org.springframework.test.context.junit4.SpringRunner;
import static org.junit.jupiter.api.Assertions.assertTrue;
@RunWith(SpringRunner.class)
@SpringBootTest
@TestPropertySource(locations = "classpath:application-integration-test.properties")
class TemplateKeyValidatorIT {
@Autowired
ResourceLoader resourceLoader;
@Autowired
private ResourceLoaderService resourceLoaderService;
@Test
void testResourceLoading() {
// Given
String fileName = "myTestFile.txt";
// When
File file = resourceLoaderService.load(fileName);
// Then
assertTrue(file.exists());
}
}
@RunWith(SpringRunner.class)
: SpringRunner 是基础的 Spring 框架 Runner。它扩展了 SpringJUnit4ClassRunner,但它只是该类的别名。
@SpringBootTest
:需要注解来引导整个容器;它创建一个 ApplicationContext 将被集成测试使用。
@TestPropertySource(locations = "classpath:application-integration-test.properties")
:加载集成特定的应用程序属性。
注意:这将引导真正的应用程序上下文,但您可以使用以下方法分离测试配置类:
@TestConfiguration
public class MyTestContextConfiguration {
@Bean
public ResourceLoaderService resourceLoaderService() {
return new ResourceLoaderService() {
// implement methods
};
}
}
然后可以通过您的测试类使用:
@Import(MyTestContextConfiguration.class)