在Play Framework中测试控制器

时间:2016-07-12 04:54:41

标签: java unit-testing playframework mocking integration-testing

我正在使用Play Framework并使用Java作为首选语言。我有一个Controller,它对外部服务进行REST调用。我打算模拟外部服务,以便我可以测试我的控制器的功能。为此,我创建了我的测试用例,如下所示(示例)。我在我的测试中嵌入了一个服务器来模拟外部服务。

public class SomeControllerTest extends WithApplication {

private static Server SERVER;

@Override
protected Application provideApplication() {
    final Module testModule = new AbstractModule() {
        @Override
        public void configure() {
            bind(AppDao.class).to(MockAppDaoImpl.class);
        }
    };
    return new GuiceApplicationBuilder().in(Environment.simple()).overrides(testModule).build();
}

@BeforeClass
public static void setup() {
    Router router = new RoutingDsl()
            .POST("/api/users")
            .routeTo(() -> created())
            .build();
    SERVER = Server.forRouter(router, 33373);
    PORT = SERVER.httpPort();
}

@AfterClass
public static void tearDown() {
    SERVER.stop();
}

@Test
public void testCreateUser() {
    ObjectNode obj = Json.newObject();
    obj.put("name", "John Doe");
    obj.put("email", "john.doe@example.com");
    Http.RequestBuilder request = new Http.RequestBuilder()
            .method(POST)
            .bodyJson(obj)
            .uri("/some/url/here");
    Result result = route(request);
    assertEquals(ERR_MSG_STATUS_CODE, CREATED, result.status());
    assertEquals(ERR_MSG_CONTENT_TYPE, Http.MimeTypes.JSON, result.contentType().get());
}

我的期望是,当我运行测试时,模拟服务器将运行并根据我的应用程序的测试配置,我的控制器将调用模拟服务器,它将返回201和我的测试用例会通过。 但是,这并不会发生,因为只要setup()方法完成,模拟服务器就会被终止,而我的控制器也无法调用它。

我在这里做错了什么?

1 个答案:

答案 0 :(得分:3)

控制器的测试应该通过继承来自WithApplication

来完成
public class TestController extends WithApplication {
   @Test  
   public void testSomething() {  
       Helpers.running(Helpers.fakeApplication(), () -> {  
           // put test stuff  
           // put asserts  
       });
   }  

}

为了测试控制器方法,使用Helpers.fakeRequest和反向路由。 外部服务可能只是嘲笑你喜欢的mockito或其他模拟框架。

您可以找到here几个示例。