blob: 821a861c46d6b027ffb4caeb5017352da1362945 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2011 Innoopract Informationssysteme GmbH.
* 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.mockito.Mockito.mock;
import junit.framework.TestCase;
import org.eclipse.rap.rwt.lifecycle.PhaseId;
import org.eclipse.rap.rwt.testfixture.Fixture;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.SelectionListener;
import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.internal.widgets.ILinkAdapter;
public class Link_Test extends TestCase {
private Shell shell;
public void testInitialValues() {
Link link = new Link( shell, SWT.NONE );
assertEquals( "", link.getText() );
}
public void testText() {
Link link = new Link( shell, SWT.NONE );
String text
= "Visit the <A HREF=\"www.eclipse.org\">Eclipse.org</A> project and "
+ "the <a>SWT</a> homepage.";
link.setText( text );
assertEquals( text, link.getText() );
try {
link.setText( null );
fail( "Must not allow to set null-text." );
} catch( IllegalArgumentException e ) {
// expected
}
}
public void testAdapter() {
Link link = new Link( shell, SWT.NONE );
String text
= "Visit the <A HREF=\"www.eclipse.org\">Eclipse.org</A> project and "
+ "the <a>SWT</a> homepage.";
link.setText( text );
ILinkAdapter adapter = link.getAdapter( ILinkAdapter.class );
String displayText = "Visit the Eclipse.org project and the SWT homepage.";
assertEquals( displayText, adapter.getDisplayText() );
String[] ids = adapter.getIds();
assertEquals( 2, ids.length );
assertEquals( "www.eclipse.org", ids[ 0 ] );
assertEquals( "SWT", ids[ 1 ] );
}
public void testComputeSize() {
Link link = new Link( shell, SWT.NONE );
Point expected = new Point( 4, 4 );
assertEquals( expected, link.computeSize( SWT.DEFAULT, SWT.DEFAULT ) );
String text
= "Visit the <A HREF=\"www.eclipse.org\">Eclipse.org</A> project and "
+ "the <a>SWT</a> homepage.";
link.setText( text );
expected = new Point( 347, 22 );
assertEquals( expected, link.computeSize( SWT.DEFAULT, SWT.DEFAULT ) );
link = new Link( shell, SWT.BORDER );
expected = new Point( 6, 6 );
assertEquals( expected, link.computeSize( SWT.DEFAULT, SWT.DEFAULT ) );
expected = new Point( 106, 106 );
assertEquals( expected, link.computeSize( 100, 100 ) );
text = "<a>test & test2</a>";
link = new Link( shell, SWT.NONE );
link.setText( text );
expected = new Point( 78, 22 );
assertEquals( expected, link.computeSize( SWT.DEFAULT, SWT.DEFAULT ) );
text = "<a>test && test2</a>";
link = new Link( shell, SWT.NONE );
link.setText( text );
expected = new Point( 91, 22 );
assertEquals( expected, link.computeSize( SWT.DEFAULT, SWT.DEFAULT ) );
}
public void testIsSerializable() throws Exception {
String text = "text";
Link link = new Link( shell, SWT.NONE );
link.getAdapter( ILinkAdapter.class );
link.setText( text );
Link deserializedLink = Fixture.serializeAndDeserialize( link );
assertEquals( text, deserializedLink.getText() );
}
public void testAddSelectionListener() {
Link link = new Link( shell, SWT.NONE );
link.addSelectionListener( mock( SelectionListener.class ) );
assertTrue( link.isListening( SWT.Selection ) );
assertTrue( link.isListening( SWT.DefaultSelection ) );
}
public void testRemoveSelectionListener() {
Link link = new Link( shell, SWT.NONE );
SelectionListener listener = mock( SelectionListener.class );
link.addSelectionListener( listener );
link.removeSelectionListener( listener );
assertFalse( link.isListening( SWT.Selection ) );
assertFalse( link.isListening( SWT.DefaultSelection ) );
}
public void testAddSelectionListenerWithNullArgument() {
Link link = new Link( shell, SWT.NONE );
try {
link.addSelectionListener( null );
} catch( IllegalArgumentException expected ) {
}
}
public void testRemoveSelectionListenerWithNullArgument() {
Link link = new Link( shell, SWT.NONE );
try {
link.removeSelectionListener( null );
} catch( IllegalArgumentException expected ) {
}
}
protected void setUp() throws Exception {
Fixture.setUp();
Fixture.fakePhase( PhaseId.PROCESS_ACTION );
Display display = new Display();
shell = new Shell( display , SWT.NONE );
}
protected void tearDown() throws Exception {
Fixture.tearDown();
}
}