swtbot deal with native dialog


[ Date Prev][ Date Next][ Thread Prev][ Thread Next][ Date Index][ Thread Index] [ List Home]
Re: [swtbot-dev] Workaround for Native Dialogs

 

  • http://code.google.com/p/swtbot-examples/wiki/EclipseForumEurope09
  • From: Jan Petranek <janp.dev@xxxxxxxxxxxxxx>
  • Date: Fri, 25 Sep 2009 22:32:12 +0200
  • Delivered-to: swtbot-dev@eclipse.org
  • Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=GtFoS4BtHNX82oDabV0v0DR7OzGHuSWYmr1/k+cXh60=; b=izEswWLIr4LnZtl/bR4ZBi+f+XTuFtEdjwtpaAZTGrj35lIT11K8E3bFPuFWscfVHd EQv5V64QHpCXHhWpsrfoyImFw1/qf7HHBHBKMOi86wS7JnGOsf7CoLKzhCggtAInLUc1 oihJaxq6ivLcPreqtRJmverOAEvP1yMzhHAtU=
  • Domainkey-signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=JAeLAOkmbs6m9fCqJyUyfuIfpkYqdXvGmomR32swLds/XyC+bRSlAh7YetSPCvtmAK raaswuDE31A9H5Nn/haPmk/E27nX9Jg2BjvHNKJBBe8aKZZKx/Wv4OilsogUpMj90csC 1yBlXOypcE3xLh2g/gtPugCK+76E0V58cAGlM=

Hello co-testers, hello Ketan Padegaonkar,

it's time to keep my promise and show you the code for the SWT
replacements. I simply pasted them into the mail. You can use it under
the same license terms, as SWTBot itself.  If want  the code in a more
suitable form (zipped eclipse project...), drop me a mail.

The first code is the core of this replacement - it is a static
factory, that your application code can use to show dialogs.

===================== Code Listing NativeDialogFactory
======================================


/*******************************************************************************
 * Copyright (c) 2009 Jan Petranek.
 * 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
 *
 *******************************************************************************/

import org.apache.log4j.Logger;
import org.eclipse.jface.dialogs.InputDialog;
import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.swt.widgets.FileDialog;
import org.eclipse.swt.widgets.MessageBox;
import org.eclipse.swt.widgets.Shell;

/**
 * The Class NativeDialogFactory is a configurable Dialog factory.
 *
 * By default, it handles user dialogs with native dialogs (SWT).
 * When the state is set to  TESTING, it displays stand-in dialogs.
 * Those stand-ins may be way simpler than the native widgets,
 * but they are accessible by SWTBot.
 *
 * @author Jan Petranek
 */
public class NativeDialogFactory {

	/** The Log4j logger instance. */
	static final Logger logger = Logger.getLogger(NativeDialogFactory.class);

	/**
	 * The Enumeration DialogState, used to indicate the mode of operation.
	 */
	public enum OperationMode {

		/** The DEFAULT state, for normal operation. */
		DEFAULT,
		/** The TESTING state, used to indicate SWTBot-Testing needs
stand-in dialogs. */
		TESTING
	};

	/** The mode of operation. */
	private static OperationMode mode = OperationMode.DEFAULT;

	/**
	 * Sets the  operation mode.
	 *
	 * @param state the desired operation mode
	 */
	public static void setMode(OperationMode mode) {
		NativeDialogFactory.mode = mode;
	}

	/**
	 * Gets the operation mode.
	 *
	 * @return the current operation mode
	 */
	public static OperationMode getMode() {
		return mode;
	}

	/**
	 * Shows a file selection dialog.
	 *
	 * In default mode, this displays a native file selection dialog.
	 * In testing mode, a simple InputDialog is displayed, where the path
can be entered as a String.
	 *
	 * @param shell the parent shell
	 * @param text title for the file selection dialog
	 * @param style the style of the file dialog, applies only to native
dialogs (SWT.SAVE| SWT.OPEN | SWT.MULTI)
	 *
	 * @return a String with the selected file name. It is still up to
the user to check, if the
	 * filename is valid. When the user has aborted the file selection,
this returns null.
	 *
	 */
	public static String fileSelectionDialog(Shell shell, String text, int style) {
		switch (getMode()) {

		case DEFAULT: {
			// File standard dialog
			FileDialog fileDialog = new FileDialog(shell, style);
			fileDialog.setText(text);
			return fileDialog.open();
		}
		case TESTING: {
			InputDialog fileDialog = new InputDialog(shell, text,
					"Select a file", "", new DummyInputValidator());
			fileDialog.open();
			return fileDialog.getValue();
		}

		default:
			final String msg = "Reached default case in
NativeDialogFactory.fileSelectionDialog, this is a bug, unknown state
"
					+ getMode();
			logger.warn(msg);
			throw new RuntimeException(msg);

		}

	}

	/**
	 * Show message box.
	 *
	 * In default mode, a native MessageBox is used.
	 * In testing mode, we use a MessageDialog, showing the same title and message.
	 * 	
	 * @param messageText the text of the message
	 * @param title the title
	 * @param iconStyle the icon style
	 * @param shell the parent shell
	 */
	public static void showMessageBox(Shell shell, String messageText,
			final String title, final int iconStyle) {
		if (shell == null) {
			logger
					.fatal("Shell not yet instantiated, cannot display error message");
		} else {
			switch (getMode()) {
			case DEFAULT: {
				MessageBox messageBox = new MessageBox(shell, iconStyle);
				messageBox.setMessage(messageText);

				messageBox.setText(title);

				messageBox.open();
				break;
			}
			case TESTING: {
				MessageDialog messagDialog = new MessageDialog(shell, title,
						null, messageText, iconStyle, new String[] { "OK" }, 0);
				messagDialog.open();
				break;
			}
			default:
				final String msg = "Reached default case in NativeDialogFactory,
this is a bug, unknown state "
						+ getMode();
				logger.warn(msg);
				throw new RuntimeException(msg);
			}
		}
	}
}
================== END LISTING =============================================

Within the same package, I placed a basic Input validator, simply
because the dialogs need one
(100% SWT-Boilerplate code ;-)

=================== LISTING DummyInputEvaluator ==============================

import org.eclipse.jface.dialogs.IInputValidator;

/**
 * The DummyInputValidator will accept any input.
 *
 * @author Jan Petranek
 *
 */
public class DummyInputValidator implements IInputValidator {

	/**
	 * Always accepts the input.
	 *
	 * @param newText
	 *            text to accept
	 * @return always returns null
	 * @see org.eclipse.jface.dialogs.IInputValidator#isValid(java.lang.String)
	 */
	public String isValid(String newText) {

		return null;
	}
}
================== END LISTING =============================================

The next snippet shows you how you can use the file selection dialog
within your application code

=================== LISTING SaveAsHandler ==============================

public class SaveAsHandler extends AbstractHandler implements IHandler {


	public Object execute(ExecutionEvent event) throws ExecutionException {

			// File standard dialog
		String selected = NativeDialogFactory.fileSelectionDialog(
				SingletonHolder.getShell(), "Save as...", SWT.SAVE);

		if (selected == null) {
			logger.info("File selection aborted");
			return null;
		}

		File file = new File(selected);
	
		// if the file exists, check for writeability

		if (!file.exists() || (file.exists() && file.canWrite())) {
                    // whatever you do with the selected file ...
================== END LISTING =============================================

Last, but not least, a code snippet with the test code:

=================== LISTING MyFirstTest ==============================
	@Test
	public void testSaveAsUsingMockDialog() throws Exception {
		// name of file where to save to
		String destinationFile = "/tmp/created.file";

                // set the operation mode to testing
		NativeDialogFactory.setMode(NativeDialogFactory.OperationMode.TESTING);

		bot.menu("File").menu("Save As...").click();

		// assert we see the Save As Dialog by checking the title:
		assertEquals("Dialog title for Save As Dialog", "Save as...", bot
				.activeShell().getText());

		// enter the file name
		// our factory will use a simple dialog, where we can
		// set the file name into the text box
		bot.text().setText(destinationFile);

		// assert we see an "OK"-Button at position 0 and push it
		assertEquals("Button in File Dialog", "OK", bot.button(0).getText());
		bot.button(0).click();

		// check the message saying that our file was saved
		assertEquals("We should see a message saying the file was saved",
				"File saved", bot.activeShell().getText());

		// assert we see an "OK"-Button at position 0 and push it
		assertEquals("Button in Message Dialog", "OK", bot.button(0).getText());
		bot.button(0).click();
	}
================== END LISTING =============================================

That's it for today, have a nice weekend,

Jan Petranek


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值