blob: 8d9b4497bbd1a0840de1c7d43f1b396734c26c06 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2015 Innoopract Informationssysteme GmbH and others.
* 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:
* Innoopract Informationssysteme GmbH - initial API and implementation
* EclipseSource - ongoing development
******************************************************************************/
package org.eclipse.swt.widgets;
import static org.eclipse.rap.rwt.testfixture.internal.TestUtil.createImage;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import static org.mockito.Mockito.mock;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.rap.rwt.RWT;
import org.eclipse.rap.rwt.internal.lifecycle.WidgetLCA;
import org.eclipse.rap.rwt.testfixture.TestContext;
import org.eclipse.rap.rwt.testfixture.internal.Fixture;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.ControlListener;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.internal.widgets.MarkupValidator;
import org.eclipse.swt.internal.widgets.treecolumnkit.TreeColumnLCA;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
public class TreeColumn_Test {
@Rule
public TestContext context = new TestContext();
private Display display;
private Shell shell;
private Tree tree;
private TreeColumn column;
private List<Event> eventLog;
@Before
public void setUp() {
display = new Display();
shell = new Shell( display );
tree = new Tree( shell, SWT.NONE );
column = new TreeColumn( tree, SWT.NONE );
eventLog = new ArrayList<Event>();
}
@Test
public void testCreation() {
assertEquals( 1, tree.getColumnCount() );
assertSame( column, tree.getColumn( 0 ) );
// Insert an item before first item
TreeColumn col0 = new TreeColumn( tree, SWT.NONE, 0 );
assertEquals( 2, tree.getColumnCount() );
assertSame( col0, tree.getColumn( 0 ) );
// Try to add an item whit an index which is out of bounds
try {
new TreeColumn( tree, SWT.NONE, tree.getColumnCount() + 8 );
String msg = "Index out of bounds expected when creating a column with "
+ "index > columnCount";
fail( msg );
} catch( IllegalArgumentException e ) {
// expected
}
}
@Test
public void testParent() {
assertSame( tree, column.getParent() );
// Test creating column without parent
try {
new TreeColumn( null, SWT.NONE );
fail( "Must not allow to create TreeColumn withh null-parent." );
} catch( IllegalArgumentException iae ) {
// expected
}
}
@Test
public void testDisplay() {
assertSame( display, column.getDisplay() );
}
@Test
public void testStyle() {
assertTrue( ( column.getStyle() & SWT.LEFT ) != 0 );
column = new TreeColumn( tree, SWT.LEFT | SWT.RIGHT | SWT.CENTER );
assertTrue( ( column.getStyle() & SWT.LEFT ) != 0 );
column = new TreeColumn( tree, SWT.RIGHT );
assertTrue( ( column.getStyle() & SWT.RIGHT ) != 0 );
}
@Test
public void testInitialValues() {
assertEquals( 0, column.getWidth() );
assertEquals( "", column.getText() );
assertEquals( null, column.getToolTipText() );
assertNull( column.getImage() );
assertTrue( column.getResizable() );
assertFalse( column.getMoveable() );
assertEquals( SWT.LEFT, column.getAlignment() );
}
@Test
public void testAlignment() {
assertEquals( SWT.LEFT, column.getAlignment() );
column = new TreeColumn( tree, SWT.LEFT );
assertEquals( SWT.LEFT, column.getAlignment() );
column = new TreeColumn( tree, SWT.CENTER );
assertEquals( SWT.CENTER, column.getAlignment() );
column = new TreeColumn( tree, SWT.RIGHT );
assertEquals( SWT.RIGHT, column.getAlignment() );
column.setAlignment( SWT.LEFT );
assertEquals( SWT.LEFT, column.getAlignment() );
column.setAlignment( 4712 );
assertEquals( SWT.LEFT, column.getAlignment() );
}
@Test
public void testWidth() {
// Initial value
assertEquals( 0, column.getWidth() );
// Setting 'normal' width
column.setWidth( 70 );
assertEquals( 70, column.getWidth() );
column.setWidth( 0 );
assertEquals( 0, column.getWidth() );
// Setting a negative is ignored
column.setWidth( 4711 );
column.setWidth( -1 );
assertEquals( 4711, column.getWidth() );
column.setWidth( -2 );
assertEquals( 4711, column.getWidth() );
column.setWidth( -3 );
assertEquals( 4711, column.getWidth() );
}
@Test
public void testPack() throws IOException {
tree.setHeaderVisible( true );
column.addListener( SWT.Resize, new LoggingListener() );
// Ensure that controlResized is fired when pack changes the width
column.setWidth( 12312 );
eventLog.clear();
column.pack();
assertSame( eventLog.get( 0 ).widget, column );
// Ensure that controlResized is *not* fired when pack doesn't change the
// width
eventLog.clear();
column.pack();
assertEquals( 0, eventLog.size() );
// pack calculates a minimal width for an empty column
column = new TreeColumn( tree, SWT.NONE );
column.pack();
assertTrue( column.getWidth() > 0 );
// Test that an image on a column is taken into account
column = new TreeColumn( tree, SWT.NONE );
Image image = createImage( display, Fixture.IMAGE_50x100 );
column.setImage( image );
column.pack();
assertTrue( column.getWidth() >= image.getBounds().width );
// An item wider than the column itself strechtes the column
column = new TreeColumn( tree, SWT.NONE );
TreeItem item = new TreeItem( tree, SWT.NONE );
item.setImage( image );
column.pack();
assertTrue( column.getWidth() >= item.getBounds().width );
int widthNoSortIndicator = column.getWidth();
tree.setSortColumn( column );
tree.setSortDirection( SWT.UP );
column.pack();
assertTrue( column.getWidth() > widthNoSortIndicator);
}
@Test
public void testPackRespectSubItems() {
TreeItem item = new TreeItem( tree, SWT.NONE );
item.setText( "Item 0" );
TreeItem subitem = new TreeItem( item, SWT.NONE );
subitem.setText( "Subitem 0.0" );
column.pack();
int columnWidth = column.getWidth();
item.setExpanded( true );
column.pack();
assertTrue( column.getWidth() > columnWidth );
}
@Test
public void testPackWithVirtual() {
// Must not try to access items if there aren't any
tree = new Tree( shell, SWT.VIRTUAL );
column = new TreeColumn( tree, SWT.NONE );
column.setWidth( 200 );
column.addListener( SWT.Resize, new LoggingListener() );
column.pack();
assertEquals( 1, eventLog.size() ); // ensure that pack() did something
// Ensure that pack does not resolve virtual items
eventLog.clear();
tree = new Tree( shell, SWT.VIRTUAL );
column = new TreeColumn( tree, SWT.NONE );
tree.setSize( 100, 50 );
tree.setItemCount( 100 );
tree.addListener( SWT.SetData, new LoggingListener() );
column.pack();
assertEquals( 0, eventLog.size() );
}
@Test
public void testResizeEvent() {
column.addListener( SWT.Resize, new LoggingListener() );
// Changing column width leads to resize event
column.setWidth( column.getWidth() + 1 );
assertEquals( 1, eventLog.size() );
Event event = eventLog.get( 0 );
assertSame( column, event.widget );
// Setting the column width to the same value it already has as well leads
// to resize event
eventLog.clear();
column.setWidth( column.getWidth() );
assertEquals( 0, eventLog.size() );
}
@Test
public void testDisposeLast() {
TreeColumn column1 = new TreeColumn( tree, SWT.NONE );
TreeItem item = new TreeItem( tree, SWT.NONE );
item.setText( "itemText for column 0" );
item.setText( 1, "itemText for column 1" );
column1.dispose();
assertEquals( "", item.getText( 1 ) );
assertEquals( "itemText for column 0", item.getText() );
column.dispose();
assertEquals( 0, tree.getColumnCount() );
assertEquals( 1, tree.getItemCount() );
assertEquals( "itemText for column 0", item.getText() );
}
@Test
public void testSetResizable() {
assertTrue( ":a:", column.getResizable() == true );
column.setResizable( false );
assertTrue( ":b:", column.getResizable() == false );
column.setResizable( false );
assertTrue( ":c:", column.getResizable() == false );
column.setResizable( true );
assertTrue( ":d:", column.getResizable() == true );
}
@Test
public void testSetToolTip() {
String tooltip = "foobar";
assertEquals( null, column.getToolTipText() );
column.setToolTipText( tooltip );
assertEquals( tooltip, column.getToolTipText() );
column.setToolTipText( "" );
assertEquals( "", column.getToolTipText() );
}
@Test
public void testFireMoveEventOnColumnResize() {
TreeColumn column1 = new TreeColumn( tree, SWT.NONE );
column1.addListener( SWT.Move, new LoggingListener() );
column.setWidth( 100 );
assertEquals( 1, eventLog.size() );
Event event = eventLog.get( 0 );
assertEquals( SWT.Move, event.type );
assertSame( column1, event.widget );
}
@Test
public void testAddSelectionListener() {
column.addSelectionListener( mock( SelectionListener.class ) );
assertTrue( column.isListening( SWT.Selection ) );
assertTrue( column.isListening( SWT.DefaultSelection ) );
}
@Test
public void testRemoveSelectionListener() {
SelectionListener listener = mock( SelectionListener.class );
column.addSelectionListener( listener );
column.removeSelectionListener( listener );
assertFalse( column.isListening( SWT.Selection ) );
assertFalse( column.isListening( SWT.DefaultSelection ) );
}
@Test
public void testAddSelectionListenerWithNullArgument() {
try {
column.addSelectionListener( null );
} catch( IllegalArgumentException expected ) {
}
}
@Test
public void testRemoveSelectionListenerWithNullArgument() {
try {
column.removeSelectionListener( null );
} catch( IllegalArgumentException expected ) {
}
}
@Test
public void testAddControlListenerWithNullArgument() {
try {
column.addControlListener( null );
} catch( IllegalArgumentException expected ) {
}
}
@Test
public void testAddControlListener() {
column.addControlListener( mock( ControlListener.class ) );
assertTrue( column.isListening( SWT.Move ) );
assertTrue( column.isListening( SWT.Resize ) );
}
@Test
public void testRemoveControlListenerWithNullArgument() {
try {
column.removeControlListener( null );
} catch( IllegalArgumentException expected ) {
}
}
@Test
public void testRemoveControlListener() {
ControlListener listener = mock( ControlListener.class );
column.addControlListener( listener );
column.removeControlListener( listener );
assertFalse( column.isListening( SWT.Move ) );
assertFalse( column.isListening( SWT.Resize ) );
}
@Test
public void testGetPreferredWidthWithInvisibleHeader() {
tree.setHeaderVisible( true );
column.setText( "column" );
int preferredWidth = column.getPreferredWidth();
tree.setHeaderVisible( false );
assertEquals( preferredWidth, column.getPreferredWidth() );
}
@Test
public void testMarkupToolTipTextWithoutMarkupEnabled() {
column.setData( RWT.TOOLTIP_MARKUP_ENABLED, Boolean.FALSE );
try {
column.setToolTipText( "invalid xhtml: <<&>>" );
} catch( IllegalArgumentException notExpected ) {
fail();
}
}
@Test( expected = IllegalArgumentException.class )
public void testMarkupToolTipTextWithMarkupEnabled() {
column.setData( RWT.TOOLTIP_MARKUP_ENABLED, Boolean.TRUE );
column.setToolTipText( "invalid xhtml: <<&>>" );
}
@Test
public void testMarkupTextWithMarkupEnabled_ValidationDisabled() {
column.setData( RWT.TOOLTIP_MARKUP_ENABLED, Boolean.TRUE );
column.setData( MarkupValidator.MARKUP_VALIDATION_DISABLED, Boolean.TRUE );
try {
column.setToolTipText( "invalid xhtml: <<&>>" );
} catch( IllegalArgumentException notExpected ) {
fail();
}
}
@Test
public void testDisableMarkupIsIgnored() {
column.setData( RWT.TOOLTIP_MARKUP_ENABLED, Boolean.TRUE );
column.setData( RWT.TOOLTIP_MARKUP_ENABLED, Boolean.FALSE );
assertEquals( Boolean.TRUE, column.getData( RWT.TOOLTIP_MARKUP_ENABLED ) );
}
@Test
public void testSetData() {
column.setData( "foo", "bar" );
assertEquals( "bar", column.getData( "foo" ) );
}
@Test
public void testGetAdapter_LCA() {
assertTrue( column.getAdapter( WidgetLCA.class ) instanceof TreeColumnLCA );
assertSame( column.getAdapter( WidgetLCA.class ), column.getAdapter( WidgetLCA.class ) );
}
private class LoggingListener implements Listener {
@Override
public void handleEvent( Event event ) {
eventLog.add( event );
}
}
}