9

テスト メソッド トランザクション内でいくつかのデータベース操作を実行したいと考えています。これにはjunit TestRulesを使用したいと思います。ただし、ルールはトランザクションの外部で実行されます。トランザクション内でルールを実行する方法はありますか?

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {
    "classpath:/META-INF/spring/applicationContext.xml"})
public class ProductServiceTest extends AbstractTransactionalJUnit4SpringContextTests {

public @Rule @Autowired MySimpleSpringRule mySimpleSpringRule;

@Before
public void before() {
    logger.debug("before");
}

@After
public void after() {
    logger.debug("after");
}

@Test
public void testFindProducts() {
...

@Component
public class MySimpleSpringRule implements TestRule {

private class Banaani extends ExternalResource {
    @Override
    protected void before() throws Throwable {
        logger.debug("before");
    };

    @Override
    protected void after() {
        logger.debug("after");
    };
}

private final Banaani banaani = new Banaani();

@Override
public Statement apply(Statement st, Description desc) {
    return banaani.apply(st, desc);
}

結果は

2013-01-18 10:33:24,845 DEBUG [main]: MySimpleSpringRule         - before
2013-01-18 10:33:24,869 INFO  [main]: ionalTestExecutionListener - Began transaction (1): transaction manager [org.springframework.orm.jpa.JpaTransactionManager@a713a5]; rollback [true]
2013-01-18 10:33:24,869 DEBUG [main]: ProductServiceTest         - before
2013-01-18 10:33:24,869 DEBUG [main]: ProductServiceTest         - running test...
2013-01-18 10:33:24,984 DEBUG [main]: ProductServiceTest         - after
2013-01-18 10:33:24,986 INFO  [main]: ionalTestExecutionListener - Rolled back transaction after test execution for test context [[TestContext@67946a testClass = ProductServiceTest, testInstance = fi.liikennevirasto.service.ProductServiceTest@40f0b2, testMethod = testFindRootProducts@ProductServiceTest, testException = [null], mergedContextConfiguration = [MergedContextConfiguration@17a6b96 testClass = ProductServiceTest, locations = '{classpath:/META-INF/spring/test-bean-configuration.xml, classpath:/META-INF/spring/applicationContext.xml, classpath:/META-INF/spring/infrastructure.xml}', classes = '{}', activeProfiles = '{}', contextLoader = 'org.springframework.test.context.support.DelegatingSmartContextLoader']]]
2013-01-18 10:33:24,987 DEBUG [main]: MySimpleSpringRule         - after

テスト クラス内の @Before メソッドと @After メソッドはトランザクション内で直接実行されますが、MySimpleSpringRule 内のメソッドはトランザクション外で実行されます。

4

1 に答える 1

0

これは、@Rules を使用するとできない可能性があります....?

そうでない場合は、 http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/test/context/TestExecutionListener.htmlを使用して同じことを行うことができます

于 2013-01-18T14:46:26.723 に答える