我有一个带有身份验证路线的播放应用程序。我实现了一个Authenticator,将用户存储到elasticsearch中。我的控制器中的安全方法使用@Security.Authenticated
注释进行注释。对于我使用mockito的单元测试,我想嘲笑这个课程,但我不知道该怎么做。
我正在使用DI与Guice。所以我尝试了这种方法:
开发AuthenticatorWrapper如下:
public class AuthenticatorWrapper extends Security.Authenticator {
private Authenticator authenticator;
@Override
public String getUsername(Http.Context ctx) {
return authenticator.getUsername(ctx);
}
@Override
public Result onUnauthorized(Http.Context ctx) {
return authenticator.onUnauthorized(ctx);
}
@Inject
public void setAuthenticator(Authenticator authenticator) {
this.authenticator = authenticator;
}
}
这个类有一个Authenticator作为参数,应该在应用程序启动时由Guice注入。
我开发了一个guice模块,用于定义类Authenticator.class
到MyCustomAuthenticator.class
的绑定
我的证券化路线使用@Security.Authenticated(AuthenticatorWrapper.class)
在我的测试中,我可以轻松地提供类MyCustomAuthenticator
的模拟,我创建模拟,定义测试范围guice模块,以及定义从Authenticator.class
到模拟的绑定。
我认为这应该有效,但事实并非如此。无论是在正常运行时还是从我的测试中,绑定似乎都不起作用。我在包装器中有nullPointerException
:Authenticator
参数不是由Guice注入的。
所以我的问题是:
MyCustomAuthenticator
设置到注释中来简化我的应用程序,但是如何在我的测试中模拟这个验证器呢?谢谢:)
答案 0 :(得分:0)
找到了解决方法。我刚刚使用了Play框架2.4提供的访问方法,因为它完全集成了Guice。这是我的Authentication Wrapper类:
public class AuthenticatorWrapper extends Security.Authenticator {
private final Security.Authenticator authenticator;
public AuthenticatorWrapper() {
authenticator = Play.application().injector().instanceOf(Security.Authenticator.class);
}
@Override
public String getUsername(Http.Context ctx) {
return authenticator.getUsername(ctx);
}
@Override
public Result onUnauthorized(Http.Context ctx) {
return authenticator.onUnauthorized(ctx);
}
}
我只是使用 Play.application()。injector()访问器来获取Guice提供的 Security.Authenticator 实例。所以在我的application.conf中,我只是配置了一个Guice模块,它将Security.Authenticator绑定到所需的实现。