blob: 18f511c45aa7ba0cc2457d40f4a9d59f698ce374 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2013 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.team.tests.ccvs.ui;
import java.lang.reflect.InvocationTargetException;
import junit.framework.Test;
import junit.framework.TestSuite;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.team.core.history.IFileRevision;
import org.eclipse.team.core.variants.IResourceVariant;
import org.eclipse.team.internal.ccvs.core.ICVSFile;
import org.eclipse.team.internal.ccvs.core.ICVSRemoteFile;
import org.eclipse.team.internal.ccvs.core.resources.CVSWorkspaceRoot;
import org.eclipse.team.internal.ccvs.ui.CVSUIPlugin;
import org.eclipse.team.internal.ui.Utils;
import org.eclipse.team.tests.ccvs.core.CVSTestSetup;
import org.eclipse.team.tests.ccvs.core.EclipseTest;
import org.eclipse.team.ui.history.IHistoryPageSource;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.ide.IDE;
import org.eclipse.ui.model.IWorkbenchAdapter;
import org.eclipse.ui.texteditor.ITextEditor;
public class EditorTests extends EclipseTest {
public EditorTests() {
super();
}
public EditorTests(String name) {
super(name);
}
public static Test suite() {
TestSuite suite = new TestSuite(EditorTests.class);
return new CVSTestSetup(suite);
}
public void testOpenEditorOnRevision() throws CoreException, InvocationTargetException {
IProject project = createProject(new String[] { "file.cvsTest" });
IEditorPart localPart = IDE.openEditor(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(), project.getFile("file.cvsTest"));
assertTrue("The proper local editor was not opened", localPart instanceof TestEditor);
ICVSRemoteFile remoteFile = (ICVSRemoteFile)CVSWorkspaceRoot.getRemoteResourceFor(project.getFile("file.cvsTest"));
IEditorPart part = CVSUIPlugin.getPlugin().openEditor(remoteFile, new NullProgressMonitor());
assertTrue("The proper remote editor was not opened", !(part instanceof TestEditor) && (part instanceof ITextEditor));
assertNotNull(Utils.getAdapter(part.getEditorInput(), IFileRevision.class));
assertNotNull(Utils.getAdapter(part.getEditorInput(), ICVSFile.class));
assertNotNull(Utils.getAdapter(part.getEditorInput(), IResourceVariant.class));
assertNotNull(Utils.getAdapter(part.getEditorInput(), IHistoryPageSource.class));
assertNotNull(Utils.getAdapter(part.getEditorInput(), IWorkbenchAdapter.class));
}
}