Android プロジェクトでは、次の Dagger モジュールに示すように、Retrofit 2.1.0 と OkHttp 3.4.1 を Dagger 2.6 で構成しました。@Named
修飾子を使用して複数のバックエンドをサポートすることを目指しています。
@Module
public class ApiModule {
private static final String GITHUB_QUALIFIER = "GitHub";
private static final String TWITTER_QUALIFIER = "Twitter";
@Provides
GitHubClient provideGitHubClient(@Named(GITHUB_QUALIFIER) Retrofit retrofit) { /* ... */ }
@Provides
TwitterClient provideTwitterClient(@Named(TWITTER_QUALIFIER) Retrofit retrofit) { /* ... */ }
@Named(GITHUB_QUALIFIER)
@Provides
@Singleton
HttpUrl provideGitHubBaseUrl() { /* ... */ }
@Named(TWITTER_QUALIFIER)
@Provides
@Singleton
HttpUrl provideTwitterBaseUrl() { /* ... */ }
@Named(GITHUB_QUALIFIER)
@Provides
@Singleton
Retrofit getGitHubRetrofit(@Named(GITHUB_QUALIFIER) HttpUrl httpUrl,
OkHttpClient okHttpClient) { /* ... */ }
@Named(TWITTER_QUALIFIER)
@Provides
@Singleton
Retrofit getTwitterRetrofit(@Named(TWITTER_QUALIFIER) HttpUrl httpUrl,
OkHttpClient okHttpClient) { /* ... */ }
private Retrofit getRetrofit(String baseUrl,
OkHttpClient okHttpClient) { /* ... */ }
@Provides
@Singleton
public OkHttpClient provideOkHttpClient() { /* ... */ }
}
テストにMockWebServerを使用したい。ただし、複数のバックエンドを同時にサポートしながら、MockWebServer の URL を渡す方法がわかりません。
// From a unit test
mockWebServer = new MockWebServer();
mockWebServer.start();
ApiModule apiModule = new ApiModule();
OkHttpClient okHttpClient = new OkHttpClient.Builder().build();
String url = mockWebServer.url("/").toString();
// Here I cannot pass the URL to Retrofit
Retrofit retrofit = apiModule.provideRetrofit(/* HERE */ okHttpClient);
gitHubClient = apiModule.provideGitHubClient(retrofit);