web-dev-qa-db-ja.com

ParameterizedでJUnit SpringJUnit4ClassRunnerを実行する方法は?

@RunWith注釈が重複しているため、次のコードは無効です。

@RunWith(SpringJUnit4ClassRunner.class)
@RunWith(Parameterized.class)
@SpringApplicationConfiguration(classes = {ApplicationConfigTest.class})
public class ServiceTest {
}

しかし、これらの2つの注釈を組み合わせて使用​​するにはどうすればよいですか?

63
membersound

それを行うには、少なくとも2つのオプションがあります。

  1. 次の http://www.blog.project13.pl/index.php/coding/1077/runwith-junit4-with-both-springjunit4classrunner-and-parameterized/

    テストは次のようにする必要があります。

     @RunWith(Parameterized.class)
     @ContextConfiguration(classes = {ApplicationConfigTest.class})
     public class ServiceTest {
    
         private TestContextManager testContextManager;
    
         @Before
         public void setUpContext() throws Exception {
             //this is where the magic happens, we actually do "by hand" what the spring runner would do for us,
            // read the JavaDoc for the class bellow to know exactly what it does, the method names are quite accurate though
           this.testContextManager = new TestContextManager(getClass());
           this.testContextManager.prepareTestInstance(this);
         }
         ...
     }
    
  2. Githubプロジェクトがあります https://github.com/mmichaelis/spring-aware-rule 。これは以前のブログに基づいていますが、一般的な方法でサポートを追加します

    @SuppressWarnings("InstanceMethodNamingConvention")
    @ContextConfiguration(classes = {ServiceTest.class})
    public class SpringAwareTest {
    
        @ClassRule
        public static final SpringAware SPRING_AWARE = SpringAware.forClass(SpringAwareTest.class);
    
        @Rule
        public TestRule springAwareMethod = SPRING_AWARE.forInstance(this);
    
        @Rule
        public TestName testName = new TestName();
    
        ...
    }
    

そのため、アプローチの1つを実装する基本クラスと、それを継承するすべてのテストを持つことができます。

35
mavarazy

SpringClassRuleとSpringMethodRuleを使用できます-Springに付属

import org.junit.ClassRule;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.springframework.test.context.junit4.rules.SpringClassRule;
import org.springframework.test.context.junit4.rules.SpringMethodRule;

@RunWith(Parameterized.class)
@ContextConfiguration(...)
public class MyTest {

    @ClassRule
    public static final SpringClassRule SPRING_CLASS_RULE = new SpringClassRule();

    @Rule
    public final SpringMethodRule springMethodRule = new SpringMethodRule();

    ...
79
keyoxy

Spring 4.2+を必要としないJUnit 4.12の別のソリューションがあります。

JUnit 4.12では、パラメータ化されたテストとSpringインジェクションを組み合わせることができる ParametersRunnerFactory が導入されています。

public class SpringParametersRunnerFactory implements ParametersRunnerFactory {
@Override
  public Runner createRunnerForTestWithParameters(TestWithParameters test) throws InitializationError {
    final BlockJUnit4ClassRunnerWithParameters runnerWithParameters = new BlockJUnit4ClassRunnerWithParameters(test);
    return new SpringJUnit4ClassRunner(test.getTestClass().getJavaClass()) {
      @Override
      protected Object createTest() throws Exception {
        final Object testInstance = runnerWithParameters.createTest();
        getTestContextManager().prepareTestInstance(testInstance);
        return testInstance;
      }
    };
  }
}

ファクトリをテストクラスに追加して、 テストトランザクションダーティコンテキストの再初期化 、および サーブレットテスト などの完全なSpringサポートを提供できます。

@UseParametersRunnerFactory(SpringParametersRunnerFactory.class)
@RunWith(Parameterized.class)
@ContextConfiguration(locations = {"/test-context.xml", "/mvc-context.xml"})
@WebAppConfiguration
@Transactional
@TransactionConfiguration
public class MyTransactionalTest {

  @Autowired
  private WebApplicationContext context;

  ...
}

@ Parameters staticメソッド内でSpringコンテキストが必要な場合、テストインスタンスにパラメーターを提供するには、こちらの回答を参照してください Springを使用して注入されたフィールドでParameterized JUnitテストランナーを使用するにはどうすればよいですか?

1
Arnor

アプリケーションコンテキストを自分で処理する

私のために働いたのは、アプリケーションコンテキストを「手動で」管理する@RunWith(Parameterized.class)テストクラスを持つことでした。

そのために、@ContextConfigurationにある同じ文字列コレクションを使用してアプリケーションコンテキストを作成しました。だから代わりに

@ContextConfiguration(locations = { "classpath:spring-config-file1.xml",
    "classpath:spring-config-file2.xml" })

持っていた

ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[] {
            "classpath:spring-config-file1.xml", "classpath:spring-config-file2.xml"  });

そして、@ Autowiredごとに、作成されたコンテキストから手動で取得しました。

SomeClass someBean = ctx.getBean("someClassAutowiredBean", SomeClass.class);

最後にコンテキストを閉じることを忘れないでください:

((ClassPathXmlApplicationContext) ctx).close();
0
manuelvigarcia