Skip to content

Commit 7993f32

Browse files
committed
#24 - provide test checking completion available for Generic Text editor
Signed-off-by: Aurélien Pupier <[email protected]>
1 parent 16dd482 commit 7993f32

File tree

2 files changed

+51
-2
lines changed

2 files changed

+51
-2
lines changed

com.github.camel-tooling.lsp.eclipse.client.tests.integration/META-INF/MANIFEST.MF

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ Require-Bundle: org.junit;bundle-version="4.12.0",
1010
org.assertj;bundle-version="1.7.1",
1111
org.eclipse.lsp4e;bundle-version="0.3.0",
1212
com.github.camel-tooling.eclipse.client;bundle-version="1.0.0",
13+
org.eclipse.jface.text;bundle-version="3.12.0",
1314
org.eclipse.ui.ide;bundle-version="3.13.1",
1415
org.eclipse.core.resources;bundle-version="3.12.0",
1516
org.eclipse.core.runtime;bundle-version="3.13.0",
16-
org.eclipse.ui.genericeditor;bundle-version="1.0.1"
17+
org.eclipse.ui.genericeditor;bundle-version="1.0.1",
18+
org.eclipse.ui.workbench.texteditor;bundle-version="3.10.100"

com.github.camel-tooling.lsp.eclipse.client.tests.integration/src/main/java/com/github/cameltooling/eclipse/client/tests/integration/CamelLSPLoadedByExtensionPointIT.java

+48-1
Original file line numberDiff line numberDiff line change
@@ -17,24 +17,35 @@
1717
package com.github.cameltooling.eclipse.client.tests.integration;
1818

1919
import static org.assertj.core.api.Assertions.assertThat;
20+
import static org.junit.Assert.fail;
2021

2122
import java.io.ByteArrayInputStream;
23+
import java.lang.reflect.InvocationTargetException;
24+
import java.lang.reflect.Method;
25+
import java.util.stream.Stream;
2226

2327
import org.eclipse.core.resources.IFile;
2428
import org.eclipse.core.resources.IProject;
2529
import org.eclipse.core.resources.IResource;
2630
import org.eclipse.core.resources.IWorkspaceRoot;
2731
import org.eclipse.core.resources.ResourcesPlugin;
32+
import org.eclipse.jface.text.ITextViewer;
33+
import org.eclipse.jface.text.contentassist.ICompletionProposal;
34+
import org.eclipse.lsp4e.operations.completion.LSContentAssistProcessor;
2835
import org.eclipse.ui.IEditorPart;
2936
import org.eclipse.ui.PlatformUI;
3037
import org.eclipse.ui.ide.IDE;
3138
import org.eclipse.ui.internal.genericeditor.ExtensionBasedTextEditor;
39+
import org.eclipse.ui.texteditor.AbstractTextEditor;
40+
import org.eclipse.ui.texteditor.ITextEditor;
3241
import org.junit.Test;
3342

3443
public class CamelLSPLoadedByExtensionPointIT {
3544

45+
private static final int ARBITRARY_NUMBER_OF_MINIMAL_CAMEL_COMPONENTS = 200;
46+
3647
@Test
37-
public void testGenericEditorCanOpenCamelFile() throws Exception {
48+
public void testGenericEditorProvideCompletion() throws Exception {
3849
IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
3950
IProject project = root.getProject(CamelLSPLoadedByExtensionPointIT.class.getSimpleName());
4051
project.create(null);
@@ -43,6 +54,42 @@ public void testGenericEditorCanOpenCamelFile() throws Exception {
4354
camelFile.create(new ByteArrayInputStream("<from uri=\"\" xmlns=\"http://camel.apache.org/schema/spring\"></from>\n".getBytes()), IResource.FORCE, null);
4455
IEditorPart openEditor = IDE.openEditor(PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage(), camelFile, "org.eclipse.ui.genericeditor.GenericEditor");
4556
assertThat(openEditor).isInstanceOf(ExtensionBasedTextEditor.class);
57+
58+
ITextViewer textViewer = getTextViewer(openEditor);
59+
60+
ICompletionProposal[] proposals = new LSContentAssistProcessor().computeCompletionProposals(textViewer, 11);
61+
assertThat(proposals.length).isGreaterThan(ARBITRARY_NUMBER_OF_MINIMAL_CAMEL_COMPONENTS);
62+
checkContainsATimerProposal(proposals);
63+
}
64+
65+
private void checkContainsATimerProposal(ICompletionProposal[] proposals) {
66+
assertThat(Stream.of(proposals)
67+
.map(ICompletionProposal::getDisplayString)
68+
.filter(displayString -> displayString.contains("timer"))
69+
.findFirst().get()).isNotNull();
70+
}
71+
72+
/**
73+
* Retrieve the TextViewer by reflection on a protected method as it is not publicly available.
74+
* it is used also by LSP4E Tests org.eclipse.lsp4e.test.TestUtils.getTextViewer(IEditorPart)
75+
* Unfortunately, the code cannot be reused as it is in a fragment.
76+
*/
77+
public ITextViewer getTextViewer(IEditorPart part) throws InvocationTargetException {
78+
try {
79+
if (part instanceof ITextEditor) {
80+
ITextEditor textEditor = (ITextEditor) part;
81+
82+
Method getSourceViewerMethod = AbstractTextEditor.class.getDeclaredMethod("getSourceViewer"); //$NON-NLS-1$
83+
getSourceViewerMethod.setAccessible(true);
84+
return (ITextViewer) getSourceViewerMethod.invoke(textEditor);
85+
} else {
86+
fail("Unable to open editor");
87+
return null;
88+
}
89+
} catch (NoSuchMethodException | SecurityException | IllegalAccessException | IllegalArgumentException
90+
| InvocationTargetException e) {
91+
throw new InvocationTargetException(e);
92+
}
4693
}
4794

4895
}

0 commit comments

Comments
 (0)