17
17
package com .github .cameltooling .eclipse .client .tests .integration ;
18
18
19
19
import static org .assertj .core .api .Assertions .assertThat ;
20
+ import static org .junit .Assert .fail ;
20
21
21
22
import java .io .ByteArrayInputStream ;
23
+ import java .lang .reflect .InvocationTargetException ;
24
+ import java .lang .reflect .Method ;
25
+ import java .util .stream .Stream ;
22
26
23
27
import org .eclipse .core .resources .IFile ;
24
28
import org .eclipse .core .resources .IProject ;
25
29
import org .eclipse .core .resources .IResource ;
26
30
import org .eclipse .core .resources .IWorkspaceRoot ;
27
31
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 ;
28
35
import org .eclipse .ui .IEditorPart ;
29
36
import org .eclipse .ui .PlatformUI ;
30
37
import org .eclipse .ui .ide .IDE ;
31
38
import org .eclipse .ui .internal .genericeditor .ExtensionBasedTextEditor ;
39
+ import org .eclipse .ui .texteditor .AbstractTextEditor ;
40
+ import org .eclipse .ui .texteditor .ITextEditor ;
32
41
import org .junit .Test ;
33
42
34
43
public class CamelLSPLoadedByExtensionPointIT {
35
44
45
+ private static final int ARBITRARY_NUMBER_OF_MINIMAL_CAMEL_COMPONENTS = 200 ;
46
+
36
47
@ Test
37
- public void testGenericEditorCanOpenCamelFile () throws Exception {
48
+ public void testGenericEditorProvideCompletion () throws Exception {
38
49
IWorkspaceRoot root = ResourcesPlugin .getWorkspace ().getRoot ();
39
50
IProject project = root .getProject (CamelLSPLoadedByExtensionPointIT .class .getSimpleName ());
40
51
project .create (null );
@@ -43,6 +54,42 @@ public void testGenericEditorCanOpenCamelFile() throws Exception {
43
54
camelFile .create (new ByteArrayInputStream ("<from uri=\" \" xmlns=\" http://camel.apache.org/schema/spring\" ></from>\n " .getBytes ()), IResource .FORCE , null );
44
55
IEditorPart openEditor = IDE .openEditor (PlatformUI .getWorkbench ().getActiveWorkbenchWindow ().getActivePage (), camelFile , "org.eclipse.ui.genericeditor.GenericEditor" );
45
56
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
+ }
46
93
}
47
94
48
95
}
0 commit comments