blob: 754beb1c9a3478d26fbf922c4ebf5c6e3c38e8d1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.tests.keys;
//import org.eclipse.core.runtime.CoreException;
//import org.eclipse.jface.action.Action;
import org.eclipse.ui.tests.util.UITestCase;
/**
* Tests Bug 42627
*
* @since 3.0
*/
public class Bug42627Test extends UITestCase {
// TODO See if this is needed for anything.
// private class DummyView extends ViewPart {
// public void createPartControl(Composite composite) {
// // Do nothing
// }
//
// public void setFocus() {
// // Do nothing
// }
// }
/**
* A dummy implementation of an <code>Action</code>.
*
* @since 3.0
*/
// private class DummyAction extends Action {
// // Nothing to implement
// }
// private boolean logged;
/**
* Constructor for Bug42627Test.
*
* @param name
* The name of the test
*/
public Bug42627Test(String name) {
super(name);
}
/*
* @see TestCase#setUp()
*/
protected void setUp() throws Exception {
super.setUp();
// logged = false;
}
/**
* Tests that actions with no defined command ID are logged.
*
* @throws CoreException
* If something fails when trying to open a new project.
*/
public void testLogUndefined() /*throws CoreException*/ {
// TODO No log is being generated. What was Chris' fix?
// IWorkbenchWindow window = openTestWindow();
// ResourcesPlugin.getPlugin().getLog().addLogListener(new ILogListener() {
// public void logging(IStatus status, String string) {
// logged = true;
// }
// });
// IWorkspace workspace = ResourcesPlugin.getWorkspace();
// IProject testProject = workspace.getRoot().getProject("Bug42627Project"); //$NON-NLS-1$
// testProject.create(null);
// testProject.open(null);
// AbstractTextEditor editor = (AbstractTextEditor) window.getActivePage().openEditor(testProject.getFile(".project")); //$NON-NLS-1$
// editor.selectAndReveal(0, 1);
// EditorSite site = (EditorSite) editor.getSite();
// site.getActionBars().setGlobalActionHandler("Bogus action name that hopefully will not exist", new DummyAction()); //$NON-NLS-1$
// window.getShell().setFocus();
// assertTrue("Nothing has been logged.", logged); //$NON-NLS-1$
}
}