/* * Copyright (C) 2016 TIBCO Jaspersoft Corporation. All rights reserved. * http://community.jaspersoft.com/project/mobile-sdk-android * * Unless you have purchased a commercial license agreement from TIBCO Jaspersoft, * the following license terms apply: * * This program is part of TIBCO Jaspersoft Mobile SDK for Android. * * TIBCO Jaspersoft Mobile SDK is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * TIBCO Jaspersoft Mobile SDK 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with TIBCO Jaspersoft Mobile SDK for Android. If not, see * <http://www.gnu.org/licenses/lgpl>. */ package com.jaspersoft.android.sdk.service.rx.filter; import com.jaspersoft.android.sdk.network.AuthorizedClient; import com.jaspersoft.android.sdk.network.entity.control.InputControl; import com.jaspersoft.android.sdk.network.entity.control.InputControlState; import com.jaspersoft.android.sdk.network.entity.report.ReportParameter; import com.jaspersoft.android.sdk.service.data.dashboard.DashboardControlComponent; import com.jaspersoft.android.sdk.service.data.report.option.ReportOption; import com.jaspersoft.android.sdk.service.exception.ServiceException; import com.jaspersoft.android.sdk.service.filter.FiltersService; import com.jaspersoft.android.sdk.service.report.ReportExecution; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.mockito.Mock; import rx.observers.TestSubscriber; import java.util.Collections; import java.util.List; import java.util.Set; import static org.hamcrest.MatcherAssert.assertThat; import static org.hamcrest.Matchers.is; import static org.hamcrest.Matchers.notNullValue; import static org.junit.rules.ExpectedException.none; import static org.mockito.Matchers.anyBoolean; import static org.mockito.Matchers.anyListOf; import static org.mockito.Matchers.anyString; import static org.mockito.Mockito.*; import static org.mockito.MockitoAnnotations.initMocks; /** * @author Tom Koptel * @since 2.3 */ public class RxFiltersServiceTest { private static final String RESOURCE_URI = "/my/uri"; private static final List<ReportParameter> PARAMS = Collections.emptyList(); private static final String OPTION_LABEL = "label"; private static final String OPTION_ID = OPTION_LABEL; @Mock FiltersService mSyncDelegate; @Mock ReportExecution mReportExecution; @Mock ServiceException mServiceException; @Mock ReportOption fakeReportOption; @Mock AuthorizedClient mAuthorizedClient; private RxFiltersService rxFiltersService; @Rule public ExpectedException expected = none(); @Before public void setUp() throws Exception { initMocks(this); rxFiltersService = new RxFiltersService(mSyncDelegate); } @Test public void should_delegate_service_exception_to_subscription_on_list_controls() throws Exception { when(mSyncDelegate.listReportControls(anyString())).thenThrow(mServiceException); TestSubscriber<List<InputControl>> test = TestSubscriber.create(); rxFiltersService.listReportControls(RESOURCE_URI).subscribe(test); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).listReportControls(RESOURCE_URI); } @Test public void should_execute_delegate_as_observable_on_list_controls() throws Exception { when(mSyncDelegate.listReportControls(anyString())).thenReturn(Collections.<InputControl>emptyList()); TestSubscriber<List<InputControl>> test = TestSubscriber.create(); rxFiltersService.listReportControls(RESOURCE_URI).subscribe(test); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).listReportControls(RESOURCE_URI); } @Test public void should_delegate_service_exception_to_subscription_on_validate_controls_states() throws Exception { when(mSyncDelegate.validateControls(anyString(), anyListOf(ReportParameter.class), anyBoolean())).thenThrow(mServiceException); TestSubscriber<List<InputControlState>> test = validateControls(); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).validateControls(RESOURCE_URI, PARAMS, false); } @Test public void should_execute_delegate_as_observable_on_validate_controls_states() throws Exception { when(mSyncDelegate.validateControls(anyString(), anyListOf(ReportParameter.class), anyBoolean())) .thenReturn(Collections.<InputControlState>emptyList()); TestSubscriber<List<InputControlState>> test = validateControls(); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).validateControls(RESOURCE_URI, PARAMS, false); } @Test public void should_delegate_service_exception_to_subscription_on_list_controls_states() throws Exception { when(mSyncDelegate.listControlsStates(anyString(), anyListOf(ReportParameter.class), anyBoolean())).thenThrow(mServiceException); TestSubscriber<List<InputControlState>> test = listControlsStates(); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).listControlsStates(RESOURCE_URI, PARAMS, false); } @Test public void should_execute_delegate_as_observable_on_list_controls_states() throws Exception { when(mSyncDelegate.listResourceStates(anyString(), anyBoolean())) .thenReturn(Collections.<InputControlState>emptyList()); TestSubscriber<List<InputControlState>> test = listControlsStates(); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).listControlsStates(RESOURCE_URI, PARAMS, false); } @Test public void should_delegate_service_exception_to_subscription_on_list_resource_states() throws Exception { when(mSyncDelegate.listResourceStates(anyString(), anyBoolean())).thenThrow(mServiceException); TestSubscriber<List<InputControlState>> test = listResourceStates(); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).listResourceStates(RESOURCE_URI, false); } @Test public void should_execute_delegate_as_observable_on_list_resource_states() throws Exception { when(mSyncDelegate.listResourceStates(anyString(), anyBoolean())) .thenReturn(Collections.<InputControlState>emptyList()); TestSubscriber<List<InputControlState>> test = listResourceStates(); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).listResourceStates(RESOURCE_URI, false); } @Test public void should_delegate_service_exception_to_subscription_on_list_report_options() throws Exception { when(mSyncDelegate.listReportOptions(anyString())).thenThrow(mServiceException); TestSubscriber<Set<ReportOption>> test = TestSubscriber.create(); rxFiltersService.listReportOptions(RESOURCE_URI).subscribe(test); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).listReportOptions(RESOURCE_URI); } @Test public void should_delegate_service_exception_to_subscription_on_list_dashboard_controls() throws Exception { when(mSyncDelegate.listDashboardControls(anyString())).thenThrow(mServiceException); TestSubscriber<List<InputControl>> test = TestSubscriber.create(); rxFiltersService.listDashboardControls(RESOURCE_URI).subscribe(test); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).listDashboardControls(RESOURCE_URI); } @Test public void should_execute_delegate_as_observable_on_list_report_options() throws Exception { when(mSyncDelegate.listReportOptions(anyString())) .thenReturn(Collections.<ReportOption>emptySet()); TestSubscriber<Set<ReportOption>> test = TestSubscriber.create(); rxFiltersService.listReportOptions(RESOURCE_URI).subscribe(test); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).listReportOptions(RESOURCE_URI); } @Test public void should_delegate_service_exception_to_subscription_on_create_report_option() throws Exception { when(mSyncDelegate.createReportOption(anyString(), anyString(), anyListOf(ReportParameter.class), anyBoolean())) .thenThrow(mServiceException); TestSubscriber<ReportOption> test = TestSubscriber.create(); rxFiltersService.createReportOption(RESOURCE_URI, OPTION_LABEL, PARAMS, true).subscribe(test); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).createReportOption(RESOURCE_URI, OPTION_LABEL, PARAMS, true); } @Test public void should_execute_delegate_as_observable_on_create_report_option() throws Exception { when(mSyncDelegate.createReportOption(anyString(), anyString(), anyListOf(ReportParameter.class), anyBoolean())) .thenReturn(fakeReportOption); TestSubscriber<ReportOption> test = TestSubscriber.create(); rxFiltersService.createReportOption(RESOURCE_URI, OPTION_LABEL, PARAMS, true).subscribe(test); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).createReportOption(RESOURCE_URI, OPTION_LABEL, PARAMS, true); } @Test public void should_delegate_service_exception_to_subscription_on_update_report_option() throws Exception { doThrow(mServiceException).when(mSyncDelegate).updateReportOption(anyString(), anyString(), anyListOf(ReportParameter.class)); TestSubscriber<Void> test = TestSubscriber.create(); rxFiltersService.updateReportOption(RESOURCE_URI, OPTION_ID, PARAMS).subscribe(test); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).updateReportOption(RESOURCE_URI, OPTION_ID, PARAMS); } @Test public void should_execute_delegate_as_observable_on_update_report_option() throws Exception { TestSubscriber<Void> test = TestSubscriber.create(); rxFiltersService.updateReportOption(RESOURCE_URI, OPTION_ID, PARAMS).subscribe(test); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).updateReportOption(RESOURCE_URI, OPTION_ID, PARAMS); } @Test public void should_delegate_service_exception_to_subscription_on_delete_report_option() throws Exception { doThrow(mServiceException).when(mSyncDelegate).deleteReportOption(anyString(), anyString()); TestSubscriber<Void> test = TestSubscriber.create(); rxFiltersService.deleteReportOption(RESOURCE_URI, OPTION_ID).subscribe(test); test.assertError(mServiceException); test.assertNotCompleted(); verify(mSyncDelegate).deleteReportOption(RESOURCE_URI, OPTION_ID); } @Test public void should_execute_delegate_as_observable_on_delete_report_option() throws Exception { TestSubscriber<Void> test = TestSubscriber.create(); rxFiltersService.deleteReportOption(RESOURCE_URI, OPTION_ID).subscribe(test); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); verify(mSyncDelegate).deleteReportOption(RESOURCE_URI, OPTION_ID); } @Test public void should_execute_delegate_as_observable_on_list_dashboards_controls() throws Exception { TestSubscriber<List<InputControl>> test = TestSubscriber.create(); rxFiltersService.listDashboardControls(RESOURCE_URI).subscribe(test); test.assertNoErrors(); test.assertCompleted(); test.assertValueCount(1); verify(mSyncDelegate).listDashboardControls(RESOURCE_URI); } @Test public void should_execute_delegate_as_observable_on_delete_list_dashboard_control_components() throws Exception { when(mSyncDelegate.listDashboardControlComponents(anyString())) .thenReturn(Collections.<DashboardControlComponent>emptyList()); TestSubscriber<List<DashboardControlComponent>> test = listDashboardComponentsList(); test.assertCompleted(); test.assertNoErrors(); test.assertValueCount(1); } @Test public void should_delegate_service_exception_to_subscription_on_list_dashboard_control_components() throws Exception { when(mSyncDelegate.listDashboardControlComponents(anyString())).thenThrow(mServiceException); TestSubscriber<List<DashboardControlComponent>> test = listDashboardComponentsList(); test.assertError(mServiceException); test.assertNotCompleted(); } @Test public void should_not_accept_null_for_factory_method() throws Exception { expected.expectMessage("Client should not be null"); expected.expect(NullPointerException.class); RxFiltersService.newService(null); } @Test public void should_provide_impl_with_factory_method() throws Exception { RxFiltersService service = RxFiltersService.newService(mAuthorizedClient); assertThat(service, is(notNullValue())); } private TestSubscriber<List<DashboardControlComponent>> listDashboardComponentsList() throws ServiceException { TestSubscriber<List<DashboardControlComponent>> test = TestSubscriber.create(); rxFiltersService.listDashboardControlComponents(RESOURCE_URI).subscribe(test); verify(mSyncDelegate).listDashboardControlComponents(RESOURCE_URI); return test; } private TestSubscriber<List<InputControlState>> validateControls() { TestSubscriber<List<InputControlState>> test = TestSubscriber.create(); rxFiltersService.validateControls(RESOURCE_URI, PARAMS, false).subscribe(test); return test; } private TestSubscriber<List<InputControlState>> listControlsStates() { TestSubscriber<List<InputControlState>> test = TestSubscriber.create(); rxFiltersService.listControlsStates(RESOURCE_URI, PARAMS, false).subscribe(test); return test; } private TestSubscriber<List<InputControlState>> listResourceStates() { TestSubscriber<List<InputControlState>> test = TestSubscriber.create(); rxFiltersService.listResourceStates(RESOURCE_URI, false).subscribe(test); return test; } }