Documentation

You are viewing the documentation for the 2.5.x release series. The latest stable release series is 3.0.x.

§Writing functional tests

Play provides a number of classes and convenience methods that assist with functional testing. Most of these can be found either in the play.test package or in the Helpers class.

You can add these methods and classes by importing the following:

import play.test.*;
import static play.test.Helpers.*;

§Creating Application instances for testing

Play frequently requires a running Application as context. To provide an environment for tests, Play provides helpers that produce new application instances for testing:

Application fakeApp = Helpers.fakeApplication();

Application fakeAppWithMemoryDb = fakeApplication(inMemoryDatabase("test"));

§Injecting tests

If you’re using Guice for dependency injection then an Application for testing can be built directly. You can also inject any members of a test class that you might need. It’s generally best practice to inject members only in functional tests and to manually create instances in unit tests.

@Inject Application application;

@Before
public void setup() {
  Module testModule = new AbstractModule() {
    @Override
    public void configure() {
      // Install custom test binding here
    }
  };

  GuiceApplicationBuilder builder = new GuiceApplicationLoader()
      .builder(new Context(Environment.simple()))
      .overrides(testModule);
  Guice.createInjector(builder.applicationModule()).injectMembers(this);

  Helpers.start(application);
}

@After
public void teardown() {
  Helpers.stop(application);
}

§Testing with an application

To run tests with an Application, you can do the following:

@Test
public void findById() {
    running(fakeApplication(inMemoryDatabase("test")), () -> {
        Computer macintosh = Computer.findById(21l);
        assertEquals("Macintosh", macintosh.name);
        assertEquals("1984-01-24", formatted(macintosh.introduced));
    });
}

You can also extend WithApplication, this will automatically ensure that an application is started and stopped for each test method:

public class FunctionalTest extends WithApplication {

§Testing with a Guice application

To run tests with an Application created by Guice, you can do the following:

@Test
public void findById() {
    ClassLoader classLoader = classLoader();
    Application application = new GuiceApplicationBuilder()
        .in(new Environment(new File("path/to/app"), classLoader, Mode.TEST))
        .build();

    running(application, () -> {
        Computer macintosh = Computer.findById(21l);
        assertEquals("Macintosh", macintosh.name);
        assertEquals("1984-01-24", macintosh.introduced);
    });
}

Note that there are different ways to customize the Application creation when using Guice to test.

§Testing with a server

Sometimes you want to test the real HTTP stack from within your test. You can do this by starting a test server:

@Test
public void testInServer() throws Exception {
    int testServerPort = play.api.test.Helpers.testServerPort();
    TestServer server = testServer(testServerPort);
    running(server, () -> {
        try {
            try (WSClient ws = WS.newClient(testServerPort)) {
                CompletionStage<WSResponse> completionStage = ws.url("/").get();
                WSResponse response = completionStage.toCompletableFuture().get();
                assertEquals(OK, response.getStatus());
            }
        } catch (Exception e) {
            logger.error(e.getMessage(), e);
        }
    });
}

Just as there exists a WithApplication class, there is also a WithServer which you can extend to automatically start and stop a TestServer for your tests:

public class ServerFunctionalTest extends WithServer {

    @Test
    public void testInServer() throws Exception {
        int timeout = 5000;
        String url = "http://localhost:" + this.testServer.port() + "/";
        try (WSClient ws = WS.newClient(this.testServer.port())) {
            CompletionStage<WSResponse> stage = ws.url(url).get();
            WSResponse response = stage.toCompletableFuture().get();
            assertEquals(NOT_FOUND, response.getStatus());
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }

}

§Testing with a browser

If you want to test your application from with a Web browser, you can use Selenium WebDriver. Play will start the WebDriver for you, and wrap it in the convenient API provided by FluentLenium.

@Test
public void runInBrowser() {
    running(testServer(), HTMLUNIT, browser -> {
        browser.goTo("/");
        assertEquals("Welcome to Play!", browser.$("#title").getText());
        browser.$("a").click();
        assertEquals("/login", browser.url());
    });
}

And, of course there, is the WithBrowser class to automatically open and close a browser for each test:

public class BrowserFunctionalTest extends WithBrowser {

    @Test
    public void runInBrowser() {
        browser.goTo("/");
        assertNotNull(browser.$("title").getText());
    }

}

§Testing the router

Instead of calling the Action yourself, you can let the Router do it:

import play.mvc.Http.RequestBuilder;
@Test
public void testBadRoute() {
    RequestBuilder request = new RequestBuilder()
            .method(GET)
            .uri("/xx/Kiwi");

    Result result = route(request);
    assertEquals(NOT_FOUND, result.status());
}

Next: Testing with Guice


Found an error in this documentation? The source code for this page can be found here. After reading the documentation guidelines, please feel free to contribute a pull request. Have questions or advice to share? Go to our community forums to start a conversation with the community.