/** * Copyright (c) 2014 - 2017 Frank Appel * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Frank Appel - initial API and implementation */ package com.codeaffine.eclipse.swt.widget.scrollable; import static com.codeaffine.eclipse.swt.test.util.ShellHelper.createShellWithoutLayout; import static com.codeaffine.eclipse.swt.widget.scrollable.TreeHelper.createTree; import static com.codeaffine.eclipse.swt.widget.scrollable.TreeHelper.expandRootLevelItems; import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.Matchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; import org.eclipse.swt.SWT; import org.eclipse.swt.widgets.Shell; import org.eclipse.swt.widgets.Tree; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import com.codeaffine.eclipse.swt.test.util.DisplayHelper; import com.codeaffine.eclipse.swt.widget.scrollable.context.AdaptionContext; import com.codeaffine.eclipse.swt.widget.scrollable.context.ScrollableControl; public class StructuredScrollableSizeObserverTest { @Rule public final DisplayHelper displayHelper = new DisplayHelper(); private PreferredWidthComputer preferredWidthComputer; private AdaptionContext<Tree> context; private SizeObserver observer; private Shell shell; private Tree tree; @Before public void setUp() { shell = createShellWithoutLayout( displayHelper, SWT.RESIZE ); tree = createTree( shell, 6, 4 ); tree.pack(); preferredWidthComputer = mock( PreferredWidthComputer.class ); context = new AdaptionContext<>( tree.getParent(), new ScrollableControl<>( tree ) ); observer = new StructuredScrollableSizeObserver( preferredWidthComputer ); shell.open(); } @Test public void preferredWidthExceedsVisibleRange() { equipPreferredComputerWith( getVisbleRangeWidth() + getVerticalBarOffset() ); boolean actual = observer.mustLayoutAdapter( context.newContext() ); assertThat( actual ).isTrue(); } @Test public void preferredWidthExceedsVisibleRangeWhenVerticalScrollBarIsVisible() { expandRootLevelItems( tree ); setTreeWidth( shell.getClientArea().width + getVerticalBarWidth() ); context.updatePreferredSize(); equipPreferredComputerWith( getVisbleRangeWidth() + getVerticalBarOffset() ); boolean actual = observer.mustLayoutAdapter( context.newContext() ); assertThat( actual ).isFalse(); } @Test public void preferredIsSameAsVisibleRangeWhenVerticalScrollBarIsVisible() { expandRootLevelItems( tree ); setTreeWidth( shell.getClientArea().width ); context.updatePreferredSize(); equipPreferredComputerWith( getVisbleRangeWidth() + getVerticalBarOffset() ); boolean actual = observer.mustLayoutAdapter( context.newContext() ); assertThat( actual ).isTrue(); } private int getVerticalBarWidth() { return tree.getVerticalBar().isVisible() ? tree.getVerticalBar().getSize().x : 0 ; } @Test public void preferredWidthDeclinesBackIntoVisibleRange() { setTreeWidth( getVisbleRangeWidth() + 100 ); observer.update( context.newContext() ); equipPreferredComputerWith( getVisbleRangeWidth() - 100 ); boolean actual = observer.mustLayoutAdapter( context.newContext() ); assertThat( actual ).isTrue(); } @Test public void noDeclineIfPreferredWidthIsGreaterBufferedWidth() { setTreeWidth( getVisbleRangeWidth() - 100 ); observer.update( context.newContext() ); equipPreferredComputerWith( shell.getClientArea().width + getVerticalBarWidth() - 50 ); boolean actual = observer.mustLayoutAdapter( context.newContext() ); assertThat( actual ).isFalse(); } @Test public void noDeclineIfTreeHeightIsEqualToVisibleRangeHeight() { tree.setSize( getVisbleRangeWidth() + 100 , getVisibleRangeHeight() ); observer.update( context.newContext() ); equipPreferredComputerWith( getVisbleRangeWidth() - 100 ); boolean actual = observer.mustLayoutAdapter( context.newContext() ); assertThat( actual ).isFalse(); } @Test public void widthHasNotChanged() { boolean actual = observer.mustLayoutAdapter( context.newContext() ); assertThat( actual ).isFalse(); } private int getVisbleRangeWidth() { return shell.getClientArea().width; } private int getVisibleRangeHeight() { return shell.getClientArea().height; } private int getVerticalBarOffset() { return context.newContext( tree.getItemHeight() ).getVerticalBarOffset(); } private void equipPreferredComputerWith( int preferredWidth ) { when( preferredWidthComputer.compute( any( AdaptionContext.class ) ) ).thenReturn( preferredWidth ); } private void setTreeWidth( int expectedWidth ) { tree.setSize( expectedWidth, 0 ); } }