/* * Copyright � 2016 TIBCO Software,Inc.All rights reserved. * http://community.jaspersoft.com/project/jaspermobile-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 for Android. * * TIBCO Jaspersoft Mobile 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 3of the License,or * (at your option)any later version. * * TIBCO Jaspersoft Mobile 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 for Android.If not,see * <http://www.gnu.org/licenses/lgpl>. */ package com.jaspersoft.android.jaspermobile.data.repository.report; import android.support.annotation.NonNull; import com.jaspersoft.android.jaspermobile.BuildConfig; import com.jaspersoft.android.jaspermobile.data.cache.profile.JasperServerCache; import com.jaspersoft.android.jaspermobile.data.cache.report.VisualizeTemplateCache; import com.jaspersoft.android.jaspermobile.domain.JasperServer; import com.jaspersoft.android.jaspermobile.domain.Profile; import com.jaspersoft.android.jaspermobile.domain.VisualizeTemplate; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mock; import org.robolectric.RobolectricGradleTestRunner; import org.robolectric.RuntimeEnvironment; import org.robolectric.annotation.Config; import java.util.Collections; import java.util.Map; import rx.observers.TestSubscriber; import static org.mockito.Matchers.any; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.verifyZeroInteractions; import static org.mockito.Mockito.when; import static org.mockito.MockitoAnnotations.initMocks; /** * @author Tom Koptel * @since 2.3 */ @RunWith(RobolectricGradleTestRunner.class) @Config(constants = BuildConfig.class, sdk = 21) public class InMemoryVisualizeTemplateRepositoryTest { @Mock VisualizeTemplateCache mVisualizeTemplateCache; @Mock JasperServerCache mJasperServerCache; @Mock JasperServer mJasperServer; private final Profile fakeProfile = Profile.create("fake"); private final VisualizeTemplate fakeTemplate = new VisualizeTemplate("content", "http://server.url/"); private InMemoryVisualizeTemplateRepository mInMemoryVisualizeTemplateRepository; @Before public void setUp() throws Exception { initMocks(this); setUpMocks(); mInMemoryVisualizeTemplateRepository = new InMemoryVisualizeTemplateRepository( RuntimeEnvironment.application, mVisualizeTemplateCache, mJasperServerCache ); } private void setUpMocks() { when(mJasperServerCache.get(any(Profile.class))).thenReturn(mJasperServer); when(mJasperServer.getVersion()).thenReturn("6.1"); when(mJasperServer.getBaseUrl()).thenReturn("http://server.url/"); } @Test public void should_load_template_from_disk_if_cache_empty() throws Exception { when(mVisualizeTemplateCache.get(any(Profile.class))).thenReturn(null); TestSubscriber<VisualizeTemplate> test = getOperation(); test.assertNoErrors(); verify(mJasperServerCache).get(fakeProfile); verify(mJasperServer).getBaseUrl(); verify(mJasperServer).getVersion(); verify(mVisualizeTemplateCache).put(eq(fakeProfile), any(VisualizeTemplate.class)); } @Test public void should_load_template_from_memory_if_cache_not_empty() throws Exception { when(mVisualizeTemplateCache.get(any(Profile.class))).thenReturn(fakeTemplate); TestSubscriber<VisualizeTemplate> test = getOperation(); test.assertNoErrors(); verifyZeroInteractions(mJasperServerCache); verifyZeroInteractions(mJasperServer); verify(mVisualizeTemplateCache).get(eq(fakeProfile)); } @NonNull private TestSubscriber<VisualizeTemplate> getOperation() { TestSubscriber<VisualizeTemplate> test = new TestSubscriber<>(); Map<String, Object> params = Collections.emptyMap(); mInMemoryVisualizeTemplateRepository.get(fakeProfile, params).subscribe(test); return test; } }