Search in sources :

Example 6 with ProjectRepository

use of com.jakdor.labday.common.repository.ProjectRepository in project LabDayApp by jakdor.

the class ProjectRepositoryIntegrationTest method integrationUpdateTestScenario1.

/**
 * {@link ProjectRepository} getUpdate() integration test scenario 1
 * - local last update id doesn't match API id
 * - get API last update id
 * - get appData API response (successful)
 * - check ProjectRepository after successful call
 */
@Test
public void integrationUpdateTestScenario1() throws Exception {
    SharedPreferences sharedPreferences = targetContext.getSharedPreferences(targetContext.getString(R.string.pref_file_name), Context.MODE_PRIVATE);
    sharedPreferences.edit().putString(targetContext.getString(R.string.pref_api_last_update_id), "0").commit();
    Assert.assertEquals(projectRepository.getRepositoryState(), ProjectRepository.repositoryStates.INIT);
    Assert.assertNull(projectRepository.getData());
    projectRepository.setAccessToken(dummyToken);
    Gson gson = new Gson();
    AppData appData = gson.fromJson(readAssetFile(testContext, "api/app_data.json"), AppData.class);
    TestObserver<RxResponse<AppData>> testObserver = projectRepository.getUpdate(dummyApiUrl, targetContext).subscribeOn(Schedulers.io()).doOnError(throwable -> Assert.fail()).test();
    testObserver.assertSubscribed();
    testObserver.awaitCount(1);
    testObserver.assertNoErrors();
    testObserver.assertValue(appDataRxResponse -> {
        Assert.assertNotNull(appDataRxResponse);
        Assert.assertNotNull(appDataRxResponse.data);
        Assert.assertNull(appDataRxResponse.error);
        Assert.assertEquals(RxStatus.SUCCESS, appDataRxResponse.status);
        Assert.assertEquals(appData, appDataRxResponse.data);
        Assert.assertEquals(appData.hashCode(), appDataRxResponse.data.hashCode());
        Assert.assertEquals(projectRepository.getRepositoryState(), ProjectRepository.repositoryStates.READY);
        Assert.assertNotNull(projectRepository.getData());
        Assert.assertEquals(projectRepository.getData().data, appData);
        LastUpdate expectedLastUpdate = gson.fromJson(readAssetFile(testContext, "api/last_update.json"), LastUpdate.class);
        Assert.assertNotNull(expectedLastUpdate.getUpdatedAt());
        Assert.assertEquals(new String(expectedLastUpdate.getUpdatedAt().toCharArray()), sharedPreferences.getString(targetContext.getString(R.string.pref_api_last_update_id), null));
        return true;
    });
    testObserver.onComplete();
}
Also used : Context(android.content.Context) TestUtils.readAssetFile(com.jakdor.labday.TestUtils.readAssetFile) R(com.jakdor.labday.R) Instrumentation(android.app.Instrumentation) LabService(com.jakdor.labday.common.network.LabService) ApplicationProvider(androidx.test.core.app.ApplicationProvider) ProjectRepository(com.jakdor.labday.common.repository.ProjectRepository) LocalDbHandler(com.jakdor.labday.common.localdb.LocalDbHandler) Charset(java.nio.charset.Charset) Gson(com.google.gson.Gson) RxSchedulersFacade(com.jakdor.labday.rx.RxSchedulersFacade) After(org.junit.After) Schedulers(io.reactivex.schedulers.Schedulers) ExpectedException(org.junit.rules.ExpectedException) RxStatus(com.jakdor.labday.rx.RxStatus) Before(org.junit.Before) NetworkManager(com.jakdor.labday.common.repository.NetworkManager) AppData(com.jakdor.labday.common.model.AppData) RetrofitBuilder(com.jakdor.labday.common.network.RetrofitBuilder) InstrumentationRegistry(androidx.test.platform.app.InstrumentationRegistry) RxResponse(com.jakdor.labday.rx.RxResponse) FileOutputStream(java.io.FileOutputStream) Test(org.junit.Test) TestObserver(io.reactivex.observers.TestObserver) LastUpdate(com.jakdor.labday.common.model.LastUpdate) Rule(org.junit.Rule) SharedPreferences(android.content.SharedPreferences) SoLoader(com.facebook.soloader.SoLoader) Assert(org.junit.Assert) TestApp(com.jakdor.labday.TestApp) SharedPreferences(android.content.SharedPreferences) AppData(com.jakdor.labday.common.model.AppData) LastUpdate(com.jakdor.labday.common.model.LastUpdate) Gson(com.google.gson.Gson) RxResponse(com.jakdor.labday.rx.RxResponse) Test(org.junit.Test)

Aggregations

LocalDbHandler (com.jakdor.labday.common.localdb.LocalDbHandler)6 RetrofitBuilder (com.jakdor.labday.common.network.RetrofitBuilder)6 NetworkManager (com.jakdor.labday.common.repository.NetworkManager)6 ProjectRepository (com.jakdor.labday.common.repository.ProjectRepository)6 RxSchedulersFacade (com.jakdor.labday.rx.RxSchedulersFacade)6 Before (org.junit.Before)6 Instrumentation (android.app.Instrumentation)5 Context (android.content.Context)5 SharedPreferences (android.content.SharedPreferences)5 ApplicationProvider (androidx.test.core.app.ApplicationProvider)5 InstrumentationRegistry (androidx.test.platform.app.InstrumentationRegistry)5 SoLoader (com.facebook.soloader.SoLoader)5 Gson (com.google.gson.Gson)5 R (com.jakdor.labday.R)5 TestApp (com.jakdor.labday.TestApp)5 TestUtils.readAssetFile (com.jakdor.labday.TestUtils.readAssetFile)5 AppData (com.jakdor.labday.common.model.AppData)5 LastUpdate (com.jakdor.labday.common.model.LastUpdate)5 LabService (com.jakdor.labday.common.network.LabService)5 RxResponse (com.jakdor.labday.rx.RxResponse)5