I need to populate my ScalaTest tests with @Autowired fields from a Spring context, but most Scalatest tests (eg FeatureSpecs can't be run by the SpringJUnit4ClassRunner.class -

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="myPackage.UnitTestSpringConfiguration", loader=AnnotationConfigContextLoader.class)
public class AdminLoginTest {
    @Autowired private WebApplication app;
    @Autowired private SiteDAO siteDAO;

(Java, but you get the gist).

How do I populate @Autowired fields from an ApplicationContext for ScalaTest?

class AdminLoginFeatureTest extends FeatureSpec with GivenWhenThen with ShouldMatchersForJUnit {

  @Autowired val app: WebApplication = null
  @Autowired val siteDAO: SiteDAO = null

  feature("Admin Login") {
    scenario("Correct username and password") {...}
link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Use the TestContextManager, as this caches the contexts so that they aren't rebuilt every test. It is configured from the class annotations.

@ContextConfiguration(
  locations = Array("myPackage.UnitTestSpringConfiguration"), 
  loader = classOf[AnnotationConfigContextLoader])
class AdminLoginFeatureTest extends FeatureSpec with GivenWhenThen with ShouldMatchers {

  @Autowired val app: WebApplication = null
  @Autowired val siteDAO: SiteDAO = null
  new TestContextManager(this.getClass()).prepareTestInstance(this)

  feature("Admin Login") {
    scenario("Correct username and password") {...}
  }
}
link|improve this answer
feedback

[Edit - I think that my other answer is better, as it caches the ApplicationContext]

An AutowireCapableBeanFactory can do the wiring. So for an AnnotationConfig

public class TestAutowirer {
    public static void autoWire(Object wiree, Class<?>... configClasses) {
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(configClasses);
        context.getAutowireCapableBeanFactory().autowireBeanProperties(wiree, AutowireCapableBeanFactory.AUTOWIRE_NO, false);
    }
}

This can be used by the test to request wiring of its fields -

class AdminLoginFeatureTest extends FeatureSpec with GivenWhenThen with ShouldMatchersForJUnit {

  @Autowired val app: WebApplication = null
  @Autowired val siteDAO: SiteDAO = null
  TestAutowirer.autoWire(this, classOf[myPackage.UnitTestSpringConfiguration])

  feature("Admin Login") {
    scenario("Correct username and password") {...}

Note that this won't process all the annotations that SpringJUnit4ClassRunner uses, in particular @Transactional, but is enough to get me running FeatureSpec tests using Spring.

Now I just have to work out how to stop creating a new context for each test.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.