blob: 07ac1c637ebd590eb69208fbc039931c6ab097bb [file] [log] [blame]
package org.eclipse.ui.tests.api;
import org.eclipse.jface.action.IMenuManager;
import org.eclipse.jdt.junit.util.*;
/**
* Tests the lifecycle for a view action delegate.
*/
public class IViewActionDelegateTest extends IActionDelegateTest {
public static String TEST_VIEW_ID = "org.eclipse.ui.tests.api.IViewActionDelegateTest";
/**
* Constructor for IWorkbenchWindowActionDelegateTest
*/
public IViewActionDelegateTest(String testName) {
super(testName);
}
public void testInit() throws Throwable {
// When an action delegate is run the
// init, selectionChanged, and run methods should
// be called, in that order.
// Run the action.
testRun();
// Verify lifecycle.
MockActionDelegate delegate = getDelegate();
assertNotNull(delegate);
assertTrue(delegate.callHistory.verifyOrder(
new String [] {"init", "selectionChanged", "run"}));
}
/**
* @see IActionDelegateTest#createActionWidget()
*/
protected Object createActionWidget() throws Throwable {
MockViewPart view = (MockViewPart)fPage.showView(TEST_VIEW_ID);
return view;
}
/**
* @see IActionDelegateTest#runAction()
*/
protected void runAction(Object widget) throws Throwable {
MockViewPart view = (MockViewPart)widget;
IMenuManager mgr = view.getViewSite().getActionBars().getMenuManager();
ActionUtil.runActionWithLabel(this, mgr, "Mock Action");
}
/**
* @see IActionDelegateTest#fireSelection()
*/
protected void fireSelection(Object widget) throws Throwable {
MockViewPart view = (MockViewPart)widget;
view.fireSelection();
}
}