/* * Copyright 2010 The Rabbit Eclipse Plug-in Project * * 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 rabbit.ui.internal.treebuilders; import rabbit.data.access.model.ISessionData; import rabbit.data.access.model.WorkspaceStorage; import rabbit.ui.IProvider; import rabbit.ui.internal.pages.Category; import rabbit.ui.internal.treebuilders.SessionDataTreeBuilder.ISessionDataProvider; import rabbit.ui.internal.util.ICategory; import rabbit.ui.internal.util.ICategoryProvider; import rabbit.ui.internal.viewers.ITreePathBuilder; import static org.hamcrest.CoreMatchers.equalTo; import static org.junit.Assert.assertThat; import static org.junit.matchers.JUnitMatchers.hasItems; import static org.mockito.BDDMockito.given; import static org.mockito.Mockito.mock; import org.eclipse.core.runtime.Path; import org.eclipse.jface.viewers.TreePath; import org.joda.time.Duration; import org.joda.time.LocalDate; import org.junit.Before; import static java.util.Arrays.asList; import java.util.Collection; import java.util.List; /** * Tests for a {@link SessionDataTreeBuilder}. */ public final class SessionDataTreeBuilderTest extends AbstractDataTreeBuilderTest<ISessionData> { LocalDate date; Duration duration; WorkspaceStorage ws; ISessionData data; @Before public void setup() { date = new LocalDate().minusDays(1); duration = new Duration(System.currentTimeMillis()); ws = new WorkspaceStorage(new Path(".a"), new Path("/a")); data = mock(ISessionData.class); given(data.get(ISessionData.DATE)).willReturn(date); given(data.get(ISessionData.DURATION)).willReturn(duration); given(data.get(ISessionData.WORKSPACE)).willReturn(ws); } @Override public void shouldCorrectlyBuildASinglePath() { ICategory[] categories = {Category.DATE, Category.WORKSPACE}; List<TreePath> expected = asList(newPath(date, ws, duration)); ICategoryProvider provider = mock(ICategoryProvider.class); given(provider.getSelected()).willReturn(asList(categories)); ITreePathBuilder builder = create(provider); ISessionDataProvider input = mock(ISessionDataProvider.class); given(input.get()).willReturn(asList(data)); List<TreePath> actual = builder.build(input); assertThat(toString(actual, expected), actual, equalTo(expected)); } @Override public void shouldCorrectlyBuildMultiplePaths() { WorkspaceStorage ws2 = new WorkspaceStorage(new Path(".b"), null); LocalDate date2 = date.minusDays(2); Duration duration2 = duration.withMillis(10000); ICategory[] categories = {Category.WORKSPACE, Category.DATE}; List<TreePath> expected = asList( newPath(ws, date, duration), newPath(ws2, date2, duration2)); ISessionData data2 = mock(ISessionData.class); given(data2.get(ISessionData.DATE)).willReturn(date2); given(data2.get(ISessionData.DURATION)).willReturn(duration2); given(data2.get(ISessionData.WORKSPACE)).willReturn(ws2); ICategoryProvider provider = mock(ICategoryProvider.class); given(provider.getSelected()).willReturn(asList(categories)); ITreePathBuilder builder = create(provider); ISessionDataProvider input = mock(ISessionDataProvider.class); given(input.get()).willReturn(asList(data, data2)); List<TreePath> actual = builder.build(input); assertThat(actual.size(), equalTo(expected.size())); assertThat(toString(actual, expected), actual, hasItems(expected.toArray(new TreePath[0]))); } @Override public void shouldRetainIdenticalPaths() { ICategory[] categories = {Category.DATE, Category.WORKSPACE}; List<TreePath> expected = asList( newPath(date, ws, duration), newPath(date, ws, duration)); ICategoryProvider provider = mock(ICategoryProvider.class); given(provider.getSelected()).willReturn(asList(categories)); ITreePathBuilder builder = create(provider); ISessionDataProvider input = mock(ISessionDataProvider.class); given(input.get()).willReturn(asList(data, data)); List<TreePath> actual = builder.build(input); assertThat(toString(actual, expected), actual, equalTo(expected)); } @Override protected ITreePathBuilder create(ICategoryProvider p) { return new SessionDataTreeBuilder(p); } @Override protected IProvider<ISessionData> input(Collection<ISessionData> inputData) { IProvider<ISessionData> p = mock(ISessionDataProvider.class); given(p.get()).willReturn(inputData); return p; } }