blob: 67ae9dec616227b4cb158d5f19b16a8b231be1a4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Ketan Padegaonkar 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:
* Ketan Padegaonkar - initial API and implementation
*******************************************************************************/
package org.eclipse.swtbot.swt.finder.widgets;
import static org.eclipse.swtbot.swt.finder.SWTBotTestCase.assertTextContains;
import static org.eclipse.swtbot.swt.finder.SWTBotTestCase.pass;
import static org.eclipse.swtbot.swt.finder.matchers.WidgetMatcherFactory.widgetOfType;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.util.List;
import org.eclipse.swt.widgets.Text;
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
import org.eclipse.swtbot.swt.finder.finders.ControlFinder;
import org.eclipse.swtbot.swt.finder.test.AbstractControlExampleTest;
import org.eclipse.swtbot.swt.finder.utils.SWTBotPreferences;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
/**
* @author Ketan Padegaonkar <KetanPadegaonkar [at] gmail [dot] com>
* @version $Id$
*/
public class SWTBotCheckBoxTest extends AbstractControlExampleTest {
private long oldTimeout;
@Before
public void lowerTimeout() {
this.oldTimeout = SWTBotPreferences.TIMEOUT;
SWTBotPreferences.TIMEOUT = 2000;
}
@After
public void resetTimeout() {
SWTBotPreferences.TIMEOUT = oldTimeout;
}
@Test
public void clicksCheckBox() throws Exception {
try {
List<Text> findControls = new ControlFinder().findControls(widgetOfType(Text.class));
SWTBotText text = new SWTBotText(findControls.get(0));
text.setText("");
assertFalse(bot.checkBox("Listen").isChecked());
bot.checkBox("Listen").click();
assertTrue(bot.checkBox("Listen").isChecked());
bot.button("One").click();
assertTextContains("Selection [13]: SelectionEvent{Button {One}", text);
} finally {
bot.checkBox("Listen").click();
bot.button("Clear").click();
}
}
@Test
public void doesNotMatchRadioButtons() throws Exception {
try {
assertNull(bot.checkBox("SWT.PUSH").widget);
fail("Expecting WidgetNotFoundException");
} catch (WidgetNotFoundException e) {
pass();
}
try {
assertNull(bot.checkBox("Preferred").widget);
fail("Expecting WidgetNotFoundException");
} catch (WidgetNotFoundException e) {
pass();
}
}
@Test
public void doesNotMatchRegularButtons() throws Exception {
try {
assertNull(bot.checkBox("One").widget);
fail("Expecting WidgetNotFoundException");
} catch (WidgetNotFoundException e) {
pass();
}
try {
assertNull(bot.checkBox("Change").widget);
fail("Expecting WidgetNotFoundException");
} catch (WidgetNotFoundException e) {
pass();
}
}
@Before
public void prepareExample() throws Exception {
bot.tabItem("Button").activate();
}
}