/* * Copyright (c) 2015 Ushahidi Inc * * This program is free software: you can redistribute it and/or modify it under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program in the file LICENSE-AGPL. If not, see * https://www.gnu.org/licenses/agpl-3.0.html */ package com.ushahidi.platform.mobile.app.domain.usecase.form; import com.addhen.android.raiburari.domain.executor.PostExecutionThread; import com.addhen.android.raiburari.domain.executor.ThreadExecutor; import com.ushahidi.platform.mobile.app.BuildConfig; import com.ushahidi.platform.mobile.app.DefaultConfig; import com.ushahidi.platform.mobile.app.domain.entity.TestFixtures; import com.ushahidi.platform.mobile.app.domain.repository.FormRepository; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.robolectric.RobolectricGradleTestRunner; import org.robolectric.annotation.Config; import static com.google.common.truth.Truth.assertThat; import static com.google.common.truth.Truth.assert_; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verifyNoMoreInteractions; /** * Tests {@link ListFormUsecase} * * @author Ushahidi Team <team@ushahidi.com> */ @RunWith(RobolectricGradleTestRunner.class) @Config(sdk = DefaultConfig.EMULATE_SDK, constants = BuildConfig.class) public class GetFormUsecaseTest { @Mock private FormRepository mMockFormJsonRepository; @Mock private ThreadExecutor mMockThreadExecutor; @Mock private PostExecutionThread mMockPostExecutionThread; private GetFormUsecase mGetFormUsecase; @Before public void setUp() { MockitoAnnotations.initMocks(this); mGetFormUsecase = new GetFormUsecase(mMockFormJsonRepository, mMockThreadExecutor, mMockPostExecutionThread); } @Test public void shouldSuccessfullyFetchFromOnline() { mGetFormUsecase.setGetForm(1l, TestFixtures.DEPLOYMENT_ID); mGetFormUsecase.buildUseCaseObservable(); verify(mMockFormJsonRepository).getForm(1l, TestFixtures.DEPLOYMENT_ID); verifyNoMoreInteractions(mMockFormJsonRepository); verifyNoMoreInteractions(mMockPostExecutionThread); verifyNoMoreInteractions(mMockThreadExecutor); } @Test public void shouldThrowRuntimeException() { assertThat(mGetFormUsecase).isNotNull(); mGetFormUsecase.setGetForm(null, null); try { mGetFormUsecase.execute(null); assert_().fail("Should have thrown RuntimeException"); } catch (RuntimeException e) { assertThat(e).hasMessage( "Deployment id and form id cannot be null. You must call setGetForm(...)"); } } }