我使用Guice / Gin设计了一个新项目,因此我可以使我们的代码更加模块化和可交换,尤其是在测试时。
但是,我无法找到如何在实践中完成这项工作。我的印象是我可以在我的测试中创建一个新的Gin / Guice模块并安装我的“基础”模块,重载我想用特定测试实现替换的任何绑定。
我不想使用GWTTestCase并加载我的整个模块,因为对于我需要进行的粒度测试类型来说,它非常缓慢且不自由。
我尝试过使用Jukito(http://code.google.com/p/jukito/),gwt-test-utils(http://code.google.com/p/gwt-test-utils/wiki/HowToUseWithGIN)以及使用guice(http://fabiostrozzi.eu/2011/03/27/junit-tests-easy-guice/)执行此操作的一些资源。
这些方法都没有产生任何结果。
如果我为我的Gin模块定义了镜像模块,我认为Guice方法可能会有效。但是我真的不想管理这两个。我真的只想测试我的GIN模块,就像我假设人们用Guice测试一样。
我觉得这应该非常简单,有人能指出我有效的例子吗?
更新
另一种看待这个问题的方法是:
当我注射的课程是在外部Gin模块中时,如何让Jukito网站(http://code.google.com/p/jukito/)上的示例工作?
**更新 - 参考Thomas Boyer的回答**
感谢提示Tom,我无法找到使用适配器的示例,但我尝试增加Jukito示例以使用GinModuleAdapter:
@RunWith(JukitoRunner.class)
public class MyGinTest {
public static class Module extends JukitoModule {
protected void configureTest() {
install(new GinModuleAdapter(new ClientModule()));
}
}
@Test
@Inject
public void testAdd(SyncedDOMModel mod){
assertNotNull(mod);
}
}
当我尝试运行此测试时,我收到了这个例外:
java.lang.AssertionError: should never be actually called
at com.google.gwt.inject.rebind.adapter.GwtDotCreateProvider.get(GwtDotCreateProvider.java:43)
at com.google.inject.internal.InternalFactoryToProviderAdapter.get(InternalFactoryToProviderAdapter.java:40)
at com.google.inject.internal.ProviderToInternalFactoryAdapter$1.call(ProviderToInternalFactoryAdapter.java:46)
at com.google.inject.internal.InjectorImpl.callInContext(InjectorImpl.java:1031)
at com.google.inject.internal.ProviderToInternalFactoryAdapter.get(ProviderToInternalFactoryAdapter.java:40)
at com.google.inject.Scopes$1$1.get(Scopes.java:65)
at com.google.inject.internal.InternalFactoryToProviderAdapter.get(InternalFactoryToProviderAdapter.java:40)
at com.google.inject.internal.InternalInjectorCreator$1.call(InternalInjectorCreator.java:204)
at com.google.inject.internal.InternalInjectorCreator$1.call(InternalInjectorCreator.java:198)
at com.google.inject.internal.InjectorImpl.callInContext(InjectorImpl.java:1024)
at com.google.inject.internal.InternalInjectorCreator.loadEagerSingletons(InternalInjectorCreator.java:198)
at com.google.inject.internal.InternalInjectorCreator.injectDynamically(InternalInjectorCreator.java:179)
at com.google.inject.internal.InternalInjectorCreator.build(InternalInjectorCreator.java:109)
at com.google.inject.Guice.createInjector(Guice.java:95)
at com.google.inject.Guice.createInjector(Guice.java:72)
at com.google.inject.Guice.createInjector(Guice.java:62)
at org.jukito.JukitoRunner.ensureInjector(JukitoRunner.java:118)
at org.jukito.JukitoRunner.computeTestMethods(JukitoRunner.java:177)
at org.jukito.JukitoRunner.validateInstanceMethods(JukitoRunner.java:276)
at org.junit.runners.BlockJUnit4ClassRunner.collectInitializationErrors(BlockJUnit4ClassRunner.java:102)
at org.junit.runners.ParentRunner.validate(ParentRunner.java:344)
at org.junit.runners.ParentRunner.<init>(ParentRunner.java:74)
at org.junit.runners.BlockJUnit4ClassRunner.<init>(BlockJUnit4ClassRunner.java:55)
at org.jukito.JukitoRunner.<init>(JukitoRunner.java:72)
我的gin模块是GWTP项目的一部分,如下所示:
public class ClientModule extends AbstractPresenterModule {
@Override
protected void configure() {
install(new DefaultModule(ClientPlaceManager.class));
bindPresenter(MainPagePresenter.class, MainPagePresenter.MyView.class,
MainPageView.class, MainPagePresenter.MyProxy.class);
bindConstant().annotatedWith(DefaultPlace.class).to(NameTokens.main);
bindPresenterWidget(MapTreePresenter.class,
MapTreePresenter.MyView.class, MapTreeView.class);
bindPresenterWidget(MapTreeItemPresenter.class,
MapTreeItemPresenter.MyView.class, MapTreeItemView.class);
bind(ResourcePool.class).to(DefferredResourcePool.class);
bind(WebSocket.class).to(WebSocketImpl.class);
}
}
正如您可以看到的那样,我在我的测试SyncedDOMModel
中注入的类使用了我在模块中绑定的WebSocket
。当我测试时,我不想使用真正的websocket和服务器。所以我想在我的测试中重载该绑定,使用一个基本上模拟整个事物的类。在这种情况下,更容易注入WebSocket的不同实现而不是使用模拟。
如果有帮助,这是SyncedDOMMOdel类的基本概要:
public class SyncedDOMMOdel {
....
@Inject
public SyncedDOMModel(WebSocket socket){
this.socket = socket;
}
....
}
答案 0 :(得分:2)
您可以使用GinModuleAdapter
将任何GinModule
用作Guice Module
。
显然,你不会受益于GIN的特定功能:默认为GWT.create()
当某些东西没有特定的绑定时(这包括接口和抽象类,它会抛出Guice),并自动搜索{{ 1}}当名称以RemoteService
结尾的接口没有特定绑定时的接口
并且您将无法使用任何依赖于JSNI或延迟绑定(Async
)的内容,就像在任何非GWT.create()
单元测试中一样。