是否可以通过dagger将不同的对象注入android.app.IntentService,具体取决于它是测试还是生产?
这主要是将WebRequest类注入服务的代码(简化)。
public class SomeService extends android.app.IntentService {
@Inject
WebReqeust mWebRequest;
public SomeService(String name) {
super(name);
MainApplication.getInstance().inject(this);
}
@Override
protected void onHandleIntent(Intent intent) {
String json = mWebRequest.getHttpString(url);
JSONObject o = new JSONObject(json);
DBHelper.insert(o);
}
}
@Module(injects = { SomeService.class })
public class WebRequestModule {
@Provides
WebRequest provideWebRequest() {
return new WebRequest();
}
}
public class Modules {
public static Object[] list() {
return new Object[] {
new WebRequestModule()
};
}
}
public class MainApplication extends Application {
private ObjectGraph mOjectGraph;
private static MainApplication sInstance;
@Override
public void onCreate() {
sInstance = this;
mOjectGraph = ObjectGraph.create(Modules.list());
}
public void inject(Object dependent) {
mOjectGraph.inject(dependent);
}
public void addToGraph(Object module) {
mOjectGraph.plus(module);
}
}
我想写一个测试来模拟http响应。我从一个新的模块开始
@Module(
injects = SomeService.class,
overrides = true
)
final class MockTestModule {
@Provides
WebRequest provideWebRequest() {
WebRequest webRequest = mock(WebRequest.class);
when(webRequest.getJSONObjectResponse(contains("/register/"))).thenReturn(
new JSONObject(FileHelper.loadJSONFromAssets(this.getClass(),
"mock_register.json")));
when(webRequest.getJSONObjectResponse(contains("/register_validate/"))).thenReturn(
new JSONObject(FileHelper.loadJSONFromAssets(this.getClass(),
"mock_register_validate.json")));
return webRequest;
}
}
在测试中,我尝试了以下
public class RegisterTest extends AndroidTestCase {
protected void setUp() throws Exception {
MainApplication.getInstance().addToGraph(new MockTestModule());
super.setUp();
}
public void test_theActuallTest() {
Registration.registerUser("email@email.com"); // this will start the service
wait_hack(); // This makes the test wait for the reposen form the intentservice, works fine
DBHelper.isUserRegisterd("email@email.com"));
}
}
测试执行成功(记住,代码很简单,可能不会编译,只是应该代表想法)。然而,它仍然使用"真实的"WebRequest Impl。,不是嘲笑的那个。我在日志、代理和服务器上看到了它。。。
我用一种非常相似的方式和RoboGuice做了这件事,它正在发挥作用。但不知怎么的,我无法用dagger完成这件事。(我目前正在评估DI框架,这是一个"必须具备的")
plus
方法实际返回新的图。它不会覆盖原始图形。也就是说,要想完成你想要的,你可以简单地做到这一点。
public class MainApplication extends Application {
...
// Mostly used for testing
public void addToGraph(Object module) {
mObjectGraph = mOjectGraph.plus(module);
}
}
这将获取原始图形并将其与新模块相加,然后简单地将新图形分配给mObjectGraph引用。