3. Completion Test
This test checks if the Simple Language code completion functionality, implemented in the Reference Contributor section of the Custom Language Support Tutorial, works as expected.
3.1. Define Test Data
Create the DefaultTestData.simple
properties file in the testData
directory.
# You are reading the ".properties" entry.
! The exclamation mark can also mark text as comments.
website = http://en.wikipedia.org/
language = English
# The backslash below tells the application to continue reading
# the value onto the next line.
message = Welcome to \
Wikipedia!
# Add spaces to the key
key\ with\ spaces = This is the value that could be looked up with the key "key with spaces".
# Unicode
tab : \u0009
Create a test input Java file CompleteTestData.java
in the testData
directory.
This file contains a Simple Language snippet within the Java.
public class Test {
public static void main(String[] args) {
System.out.println("simple:<caret>");
}
}
3.2. Define a Test
Subclass LightJavaCodeInsightFixtureTestCase
to create SimpleCodeInsightTest
.
Override getTestDataPath()
, and return the path from the root of this plugin module to the testData
directory.
At this point only one test is defined in SimpleCodeInsightTest
: testCompletion()
.
This method:
- Configures the test using the two input files.
- Calls the basic completion functionality. Behind the scenes, this method call creates a list of possible elements to complete the embedded Simple Language reference.
- Checks the list of possible element names to ensure it contains all Simple Language completion possibilities.
public class SimpleCodeInsightTest extends LightJavaCodeInsightFixtureTestCase {
@Override
protected String getTestDataPath() {
return "src/test/testData";
}
public void testCompletion() {
myFixture.configureByFiles("CompleteTestData.java", "DefaultTestData.simple");
myFixture.complete(CompletionType.BASIC, 1);
List<String> strings = myFixture.getLookupElementStrings();
assertTrue(strings.containsAll(Arrays.asList("key with spaces", "language", "message", "tab", "website")));
assertEquals(5, strings.size());
}
}
3.3. Run the Test
Run the test by:
- Opening the Gradle Tool Window.
- Select the
simple_language_plugin
. You may need to reimport it as a Gradle project. - Drill down under
simple_language_plugin
to Tasks, verification, test task. - Run the test task.
The results are displayed in the Run Tool Window, and also written to the simple_language_plugin/build/test-results/test/
directory.
If the Run Tool Window displays the error Test events were not received, do the following:
- In the Gradle Tool Window, drill down under
simple_language_plugin
to Tasks, build, clean task. - Run the clean task, which deletes the
simple_language_plugin/build/
directory. - Retry the test.