/* * Copyright 2016 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.kie.workbench.common.screens.library.client.screens; import java.util.Arrays; import java.util.Collection; import com.google.gwt.user.client.Timer; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.kie.workbench.common.screens.library.api.AssetInfo; import org.kie.workbench.common.screens.library.api.ProjectAssetsQuery; import org.kie.workbench.common.screens.library.client.events.ProjectDetailEvent; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import org.uberfire.mocks.CallerMock; import static org.junit.Assert.*; import static org.mockito.Mockito.*; @RunWith(Parameterized.class) public class ProjectScreenFirstIndexTest extends ProjectScreenTestBase { private final int givenStep; private final int givenPageNumber; private final int expectedStartIndex; @Mock private Timer timer; public ProjectScreenFirstIndexTest(final int givenStep, final int givenPageNumber, final int expectedStartIndex) { this.givenStep = givenStep; this.givenPageNumber = givenPageNumber; this.expectedStartIndex = expectedStartIndex; } @Parameterized.Parameters public static Collection<Object[]> caseSensitivity() { return Arrays.asList( new Object[][]{ // Step, Page Number, Start Index {15, 1, 0}, {15, 2, 15}, {45, 1, 0}, {15, 0, 0}, {5, 10, 45} } ); } @Before public void setup() { MockitoAnnotations.initMocks(this); projectScreen = spy(new ProjectScreen(view, libraryPlaces, ts, new CallerMock<>(libraryService), assetClassifier, assetDetailEvent, busyIndicatorView) { @Override protected void reload() { onUpdateAssets(); } @Override protected Timer createTimer() { return timer; } }); doReturn("createdTime").when(projectScreen).getCreatedTime(any(AssetInfo.class)); doReturn("lastModifiedTime").when(projectScreen).getLastModifiedTime(any(AssetInfo.class)); doAnswer(a -> { projectScreen.loadProjectInfo(); return null; }).when(timer).schedule(anyInt()); mockClientResourceType(); mockAssets(); when(view.getFilterValue()).thenReturn(""); when(view.getStep()).thenReturn(15); projectInfo = createProjectInfo(); projectScreen.onStartup(new ProjectDetailEvent(projectInfo)); } @Test public void startIndexTest() throws Exception { reset(libraryService); doReturn(assets).when(libraryService).getProjectAssets(any(ProjectAssetsQuery.class)); when(view.getStep()).thenReturn(givenStep); when(view.getPageNumber()).thenReturn(givenPageNumber); projectScreen.onUpdateAssets(); verify(libraryService, times(1)).getProjectAssets(queryArgumentCaptor.capture()); assertEquals(expectedStartIndex, queryArgumentCaptor.getValue().getStartIndex()); } }