blob: 6d4d8b42a51ee58309a21534be21a389706194e4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2019 Red Hat Inc. and others.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Markus Ofterdinger (SAP SE) - initial implementation
*******************************************************************************/
package org.eclipse.lsp4e.test.outline;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.text.tests.util.DisplayHelper;
import org.eclipse.lsp4e.test.AllCleanRule;
import org.eclipse.lsp4e.test.TestUtils;
import org.eclipse.lsp4e.tests.mock.MockLanguageServer;
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.views.contentoutline.ContentOutline;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
public class EditorToOutlineAdapterFactoryTest {
private static ContentOutline outline;
@Rule
public AllCleanRule rule = new AllCleanRule();
@BeforeClass
public static void setUpBeforeClass() {
// look for content outline in current workbench, could be null
IViewPart viewPart = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
.findView("org.eclipse.ui.views.ContentOutline"); //$NON-NLS-1$
// implicitly checks for null
if (viewPart instanceof ContentOutline) {
outline = (ContentOutline) viewPart;
}
Assert.assertNotNull(outline);
}
@Test
public void testGetAdapter() throws CoreException {
IProject project = TestUtils.createProject("EditorToOutlineAdapterFactoryTest" + System.currentTimeMillis());
IFile testFile = TestUtils.createUniqueTestFile(project, "Hello World !!");
outline.partClosed(outline);
MockLanguageServer.INSTANCE.setTimeToProceedQueries(500);
TestUtils.openEditor(testFile);
long beginOpenOutline = System.currentTimeMillis();
outline.partOpened(outline);
long endOpenOutline = System.currentTimeMillis();
long durationOpenOutline = endOpenOutline - beginOpenOutline;
Assert.assertTrue(String.format("Open outline took longer than 50ms: %d", durationOpenOutline),
durationOpenOutline <= 50);
DisplayHelper.sleep(Display.getCurrent(), 1000); // leave time for outline to be refreshed when LS is ready.
String pageClassName = outline.getCurrentPage().getClass().getCanonicalName();
Assert.assertTrue("Outline page class is not as expected: " + pageClassName, pageClassName.contains("lsp4e"));
}
}