- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何告诉 @Sql
注释只为该类运行一次,而不是为每个 @Test
方法运行一次?
喜欢与 @BeforeClass
具有相同的行为吗?
@org.springframework.test.context.jdbc.Sql(
scripts = "classpath:schema-test.sql",
executionPhase = Sql.ExecutionPhase.BEFORE_TEST_METHOD
)
public class TestClass {
@Test
public void test1() {
//runs the @Sql script
}
@Test
public void test2() {
//runs the @Sql script again
}
}
最佳答案
对于 JUnit 5,直接的干净解决方案:
@MyInMemoryDbConfig
//@Sql(value = {"/appconfig.sql", "/album.sql"}) -> code below is equivalent but at class level
class SomeServiceTest {
@BeforeAll
void setup(@Autowired DataSource dataSource) {
try (Connection conn = dataSource.getConnection()) {
// you'll have to make sure conn.autoCommit = true (default for e.g. H2)
// e.g. url=jdbc:h2:mem:myDb;DB_CLOSE_DELAY=-1;MODE=MySQL
ScriptUtils.executeSqlScript(conn, new ClassPathResource("appconfig.sql"));
ScriptUtils.executeSqlScript(conn, new ClassPathResource("album.sql"));
}
}
// your @Test methods follow ...
但是当您的数据库连接未配置为 autoCommit = true
你必须将所有内容包装在一个事务中:
@RootInMemoryDbConfig
@Slf4j
class SomeServiceTest {
@BeforeAll
void setup(@Autowired DataSource dataSource,
@Autowired PlatformTransactionManager transactionManager) {
new TransactionTemplate(transactionManager).execute((ts) -> {
try (Connection conn = dataSource.getConnection()) {
ScriptUtils.executeSqlScript(conn, new ClassPathResource("appconfig.sql"));
ScriptUtils.executeSqlScript(conn, new ClassPathResource("album.sql"));
// should work without manually commit but didn't for me (because of using AUTOCOMMIT=OFF)
// I use url=jdbc:h2:mem:myDb;DB_CLOSE_DELAY=-1;MODE=MySQL;AUTOCOMMIT=OFF
// same will happen with DataSourceInitializer & DatabasePopulator (at least with this setup)
conn.commit();
} catch (SQLException e) {
SomeServiceTest.log.error(e.getMessage(), e);
}
return null;
});
}
// your @Test methods follow ...
为什么要干净解决方案?
因为根据Script Configuration with @SqlConfig :
The configuration options provided by
@Sql
and@SqlConfig
areequivalent to those supported byScriptUtils
andResourceDatabasePopulator
but are a superset of those provided by the<jdbc:initialize-database/>
XML namespace element.
奖金
您可以将此方法与其他方法混合使用 @Sql
声明。
关于java - Spring的测试注解@Sql如何表现得像@BeforeClass?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47775560/
我有一个 Maven 项目,其中我正在从 pom.xml 文件运行 testng.xml。 我的 testng.xml 文件如下所示:
我需要使用 TestNG 类向 @BeforeClass 方法添加参数。我正在使用以下代码动态运行 TestSuite: List suites = getXmlTestSuiteForUI(xmlN
我的JUnit 测试 很少,我想决定在运行时使用哪一个。我在 SO 上检查了以前的答案,最后动态创建了测试套件。 这个类是我的应用程序开始的地方。我有 CustomTestSuite 类和 Main
我有两个类,每个类包含 2 个测试用例和 Test1 类,其中一个方法带有 @BeforeClass,按照我的说法,这个方法也应该在 Test2 类之前运行,但它没有运行。 package W
我正在使用 JUnit 编写一些测试用例。我需要初始化一些静态变量,这些变量将用于该类中的所有测试用例。 为此我可以使用任何一个 静态初始化 block 或 @BeforeClass 的静态方法 使用
如何告诉 @Sql 注释只为该类运行一次,而不是为每个 @Test 方法运行一次? 喜欢与 @BeforeClass 具有相同的行为吗? @org.springframework.test.conte
我从 JUnit 开始,不理解注释 @Test 和 @BeforeClass。 我有以下代码: public class Toto { @BeforeClass public static v
我正在尝试使用 @BeforeClass 方法运行 Scala Junit 测试。当我运行这个测试类时,setup() 方法永远不会被执行。我在这里做错了什么?我正在使用 JUnit 4.12 和 S
我将 TestNG 与 Selenium WebDriver 一起使用,我使用的框架有一个基类,该基类具有 BeforeClass 方法,所有 Suite 类都从该基类扩展,并覆盖了 BeforeCl
我正在使用 IntelliJ IDEA CE 2018.3 和 JUnit 4.12。 我有一个看起来像这样的测试类: @RunWith(HierarchicalContextRunner.class
我正在使用 Selenium、TestNG 编写测试代码。我正在尝试在 @BeforeClass 部分设置一些元素,因为我在同一页面上重复这些操作。但是我收到空指针异常。有办法解决这个问题吗? pub
为什么不使用这些 JUnit 4 注释,我们为什么不使用静态和实例初始化程序 block 呢?以下代码显示只要静态初始化程序 block 运行,@BeforeClass 方法就会运行,而当实例初始化程
我希望使用 @BeforeClass 注释运行一个方法两次(或更多次)。有没有办法用 TestNG 做到这一点? 喜欢:@Test(invocationCount = 2)? 最佳答案 不,TestN
我很明白什么是@BeforeClass。它在 JUnit 测试运行开始之前执行一次并且 @Before 方法在每个测试用例之前执行。我的问题是关于一位非常资深的 stackoverflow 用户(Pé
我正在使用 @BeforeClass 注释来确保一组事件在一组 5-6 个测试中只完成一次。有 3 个 java 文件的层次结构。 File1 扩展了 TestCase File2 extends F
我的设置: 一个包含@BeforeClass 方法的TestBase 类 几个测试类 从 TestBase 类扩展并包含一个 @BeforeClass 方法 testNG 6.8.8 为什么要这样设置
TestNG 的@BeforeClass 和测试类的构造函数有什么区别?它在内部是如何运作的? 最佳答案 @BeforeClass 方法在测试类实例化后调用。 构造函数中的异常只会中止 TestNG
我正在学习junit,一开始就出现了问题。 一开始我想初始化将在测试中使用的对象。但是@BeforeClass 不会那样做。 public class InitTests { private Crou
根据 this父类(super class)的文档 @BeforeClass 方法将在当前类之前运行。但这不会发生在我的情况下。 我正在使用 junit 4.8.1。 你能告诉我我做错了什么吗? 我的
我有以下代码: @BeforeClass public static void setUpOnce() throws InterruptedException { fa
我是一名优秀的程序员,十分优秀!