如何使用guice注射模拟游戏框架中的Authenticator?

时间:2015-03-15 20:39:42

标签: java playframework playframework-2.0 guice guice-3

我有一个带有身份验证路线的播放应用程序。我实现了一个Authenticator,将用户存储到elasticsearch中。我的控制器中的安全方法使用@Security.Authenticated注释进行注释。对于我使用mockito的单元测试,我想嘲笑这个课程,但我不知道该怎么做。

我正在使用DI与Guice。所以我尝试了这种方法:

  1. 开发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注入。

  2. 我开发了一个guice模块,用于定义类Authenticator.classMyCustomAuthenticator.class的绑定

  3. 我的证券化路线使用@Security.Authenticated(AuthenticatorWrapper.class)

  4. 进行了注释

    在我的测试中,我可以轻松地提供类MyCustomAuthenticator的模拟,我创建模拟,定义测试范围guice模块,以及定义从Authenticator.class到模拟的绑定。

    我认为这应该有效,但事实并非如此。无论是在正常运行时还是从我的测试中,绑定似乎都不起作用。我在包装器中有nullPointerExceptionAuthenticator参数不是由Guice注入的。

    所以我的问题是:

    • Authenticator是否是从Guice注入我的身份验证器的好方法?也许有一种更容易的方法将游戏身份验证器注入Guice的注释中?
    • 认证者没有被Guice注入我的包装中是否正常? [编辑 - >是的,因为注释手动实例化我的对象并且不使用guice。我是对的吗?]
    • 我可以通过直接将MyCustomAuthenticator设置到注释中来简化我的应用程序,但是如何在我的测试中模拟这个验证器呢?

    谢谢:)

1 个答案:

答案 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绑定到所需的实现。