我正在使用 cucumber-jvm 来测试我正在工作的遗留系统的行为。我必须使用 Java 1.5 和 Hibernate 3.3,升级不是一种选择。因为在我的测试过程中,它在数据库中存储了一些对象,所以我创建了一个新的开发数据库。
困扰我的是,每次我重新运行测试时,我都必须手动删除记录(使用 sql 脚本),否则它们会失败。其他任何想要运行它们的人都必须这样做。我想通过以下任一方式快速自动清理我的测试数据库:
- 创建一个空数据库并用我需要的内容填充它,或者
- 使用已经存在的数据库,在开始测试之前删除记录。
到目前为止我所拥有的:我正在使用 cucumber-junit 插件,并且 RunTests 类重定向到我的测试数据库:
@RunWith(Cucumber.class)
@Cucumber.Options(
features = "test/resources/cucumber",
format = "html:target/cucumber"
)
public class RunTests {
private static Configuration configuration;
@BeforeClass
public static void preparaBase() {
// gets the mapped configuration to the db
configuration = HibernateUtil.getConfiguration();
configuration.setProperty("hibernate.connection.url", "test-db-url");
configuration.setProperty("hibernate.connection.username", "user");
configuration.setProperty("hibernate.connection.password", "pass");
// configuration.setProperty("hibernate.hbm2ddl.auto", "create-drop");
// rebuilds the configuration using my test database
HibernateUtil.rebuildSessionFactory(configuration);
}
}
我已经尝试使用带有值的hibernate.hbm2ddl.auto
属性并使用文件来准备数据库,但是开始测试需要很长时间,而且它似乎没有检测到我的 import.sql 文件。create-drop
import.sql
可悲的是,使用 Maven 及其出色的 maven-sql-plugin 不是一种选择(我建议切换到 Maven,但无济于事)。有替代方案吗?