blob: effd2878d8b58271c2eb73dae9ff13a92523fc56 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2006, 2007 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jface.text.tests;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.commands.ExecutionException;
import org.eclipse.core.commands.operations.AbstractOperation;
import org.eclipse.core.commands.operations.IUndoableOperation;
import org.eclipse.core.commands.operations.OperationHistoryFactory;
import org.eclipse.core.runtime.IAdaptable;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;
import org.eclipse.text.undo.DocumentUndoEvent;
import org.eclipse.text.undo.DocumentUndoManager;
import org.eclipse.text.undo.IDocumentUndoListener;
import org.eclipse.jface.text.Document;
import org.eclipse.jface.text.IDocument;
import org.eclipse.jface.text.IUndoManager;
import org.eclipse.jface.text.TextViewerUndoManager;
/**
* Tests for TextViewerUndoManager.
*
* @since 3.2
*/
public class TextViewerUndoManagerTest extends AbstractUndoManagerTest {
public static Test suite() {
return new TestSuite(TextViewerUndoManagerTest.class);
}
/*
* @see TestCase#TestCase(String)
*/
public TextViewerUndoManagerTest(final String name) {
super(name);
}
/*
* @see org.eclipse.jface.text.tests.AbstractUndoManagerTest#createUndoManager(int)
* @since 3.2
*/
protected IUndoManager createUndoManager(int maxUndoLevel) {
return new TextViewerUndoManager(maxUndoLevel);
}
//--- DocumentUndoManager only ---
public void internalTestTransferNonTextOp(final boolean isUndoable) throws Exception {
Object context= new Object();
DocumentUndoManager tempUndoManager= new DocumentUndoManager(new Document());
tempUndoManager.connect(context);
IUndoableOperation operation= new AbstractOperation("") {
public boolean canUndo() {
return isUndoable;
}
public IStatus execute(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
return Status.OK_STATUS;
}
public IStatus redo(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
return Status.OK_STATUS;
}
public IStatus undo(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
return Status.OK_STATUS;
}
};
operation.addContext(tempUndoManager.getUndoContext());
OperationHistoryFactory.getOperationHistory().add(operation);
assertEquals(isUndoable, tempUndoManager.undoable());
final DocumentUndoManager undoManager= new DocumentUndoManager(new Document());
Object newContext= new Object();
undoManager.connect(newContext);
undoManager.addDocumentUndoListener(new IDocumentUndoListener() {
public void documentUndoNotification(DocumentUndoEvent event) {
fail();
}
});
undoManager.transferUndoHistory(tempUndoManager);
tempUndoManager.disconnect(context);
assertEquals(isUndoable, undoManager.undoable());
undoManager.undo();
assertEquals(false, undoManager.undoable());
undoManager.disconnect(newContext);
}
public void testTransferNonUndoableNonTextOp() throws Exception {
internalTestTransferNonTextOp(false);
}
public void testTransferUndoableNonTextOp() throws Exception {
internalTestTransferNonTextOp(true);
}
public void testCanUndo() throws Exception {
IDocument doc= new Document();
final DocumentUndoManager undoManager= new DocumentUndoManager(doc);
Object context= new Object();
undoManager.connect(context);
undoManager.addDocumentUndoListener(new IDocumentUndoListener() {
public void documentUndoNotification(DocumentUndoEvent event) {
if (event.getEventType() == DocumentUndoEvent.ABOUT_TO_UNDO)
assertEquals(true, undoManager.undoable());
else if (event.getEventType() == DocumentUndoEvent.UNDONE)
assertEquals(false, undoManager.undoable());
}
});
doc.set("foo");
assertEquals(true, undoManager.undoable());
undoManager.undo();
assertEquals(false, undoManager.undoable());
undoManager.disconnect(context);
}
}