/* * Copyright 2000-2010 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.intellij.codeInsight.completion import com.intellij.codeInsight.CodeInsightSettings import com.intellij.codeInsight.TargetElementUtil import com.intellij.codeInsight.completion.impl.CompletionServiceImpl import com.intellij.codeInsight.editorActions.CompletionAutoPopupHandler import com.intellij.codeInsight.lookup.Lookup import com.intellij.codeInsight.lookup.LookupManager import com.intellij.codeInsight.lookup.impl.LookupImpl import com.intellij.codeInsight.template.TemplateManager import com.intellij.codeInsight.template.impl.TemplateManagerImpl import com.intellij.ide.DataManager import com.intellij.ide.ui.UISettings import com.intellij.openapi.Disposable import com.intellij.openapi.actionSystem.IdeActions import com.intellij.openapi.application.ApplicationManager import com.intellij.openapi.command.CommandProcessor import com.intellij.openapi.command.WriteCommandAction import com.intellij.openapi.command.impl.CurrentEditorProvider import com.intellij.openapi.command.impl.UndoManagerImpl import com.intellij.openapi.command.undo.UndoManager import com.intellij.openapi.editor.Editor import com.intellij.openapi.editor.EditorFactory import com.intellij.openapi.editor.LogicalPosition import com.intellij.openapi.editor.actionSystem.EditorActionManager import com.intellij.openapi.extensions.Extensions import com.intellij.openapi.extensions.LoadingOrder import com.intellij.openapi.fileEditor.FileEditor import com.intellij.openapi.fileEditor.FileEditorManager import com.intellij.openapi.progress.ProgressManager import com.intellij.psi.PsiFile import com.intellij.psi.PsiJavaFile import com.intellij.util.Consumer /** * @author peter */ class JavaAutoPopupTest extends CompletionAutoPopupTestCase { public void testNewItemsOnLongerPrefix() { myFixture.configureByText("a.java", """ class Foo { void foo(String iterable) { } } """) type('i') assertSameElements myFixture.lookupElementStrings, "if", "iterable", "int" type('t') assertOrderedEquals myFixture.lookupElementStrings, "iterable" assertEquals 'iterable', lookup.currentItem.lookupString type('er') assertOrderedEquals myFixture.lookupElementStrings, "iter", "iterable" assertEquals 'iterable', lookup.currentItem.lookupString assert lookup.focused type 'a' assert lookup.focused } public void testRecalculateItemsOnBackspace() { myFixture.configureByText("a.java", """ class Foo { void foo(String iterable) { int itaa; ite } } """) type "r" assertOrderedEquals myFixture.lookupElementStrings, "iter", "iterable" type '\b' assertOrderedEquals myFixture.lookupElementStrings, "iterable" type '\b' assertOrderedEquals myFixture.lookupElementStrings, "itaa", "iterable" type "a" assertOrderedEquals myFixture.lookupElementStrings, "itaa" type '\b' assertOrderedEquals myFixture.lookupElementStrings, "itaa", "iterable" type "e" assertOrderedEquals myFixture.lookupElementStrings, "iterable" type "r" assertOrderedEquals myFixture.lookupElementStrings, "iter", "iterable" } public void testExplicitSelectionShouldSurvive() { myFixture.configureByText("a.java", """ class Foo { void foo(String iterable) { int iterable2; it } } """) type "e" assertOrderedEquals myFixture.lookupElementStrings, "iterable", "iterable2" assertEquals 'iterable', lookup.currentItem.lookupString edt { myFixture.performEditorAction IdeActions.ACTION_EDITOR_MOVE_CARET_DOWN } assertEquals 'iterable2', lookup.currentItem.lookupString type "r" assertOrderedEquals myFixture.lookupElementStrings, "iter", "iterable", 'iterable2' assertEquals 'iterable2', lookup.currentItem.lookupString } public void testExplicitMouseSelectionShouldSurvive() { myFixture.configureByText("a.java", """ class Foo { void foo(String iterable) { int iterable2; it } } """) type "e" assertOrderedEquals myFixture.lookupElementStrings, "iterable", "iterable2" assertEquals 'iterable', lookup.currentItem.lookupString lookup.currentItem = lookup.items[1] assertEquals 'iterable2', lookup.currentItem.lookupString type "r" assertOrderedEquals myFixture.lookupElementStrings, "iter", "iterable", 'iterable2' assertEquals 'iterable2', lookup.currentItem.lookupString } public void testGenerallyFocusLookupInJavaMethod() { myFixture.configureByText("a.java", """ class Foo { String foo(String iterable) { return it; } } """) type 'e' assertTrue lookup.focused } public void testNoLookupFocusInJavaVariable() { myFixture.configureByText("a.java", """ class Foo { String foo(String st) { } } """) type 'r' assertFalse lookup.focused } public void testNoStupidNameSuggestions() { myFixture.configureByText("a.java", """ class Foo { String foo(String ) { } } """) type 'r' assertNull lookup } public void testExplicitSelectionShouldBeHonoredFocused() { myFixture.configureByText("a.java", """ class Foo { String foo() { int abcd; int abce; a } } """) type 'b' assert lookup.focused type 'c' assertOrderedEquals myFixture.lookupElementStrings, 'abcd', 'abce' assertEquals 'abcd', lookup.currentItem.lookupString lookup.currentItem = lookup.items[1] assertEquals 'abce', lookup.currentItem.lookupString type '\t' myFixture.checkResult """ class Foo { String foo() { int abcd; int abce; abce } } """ } public void testFocusInJavadoc() { myFixture.configureByText("a.java", """ /** * {@link AIO} */ class Foo {} """) type 'O' assert lookup.focused } public void testPrefixLengthDependentSorting() { myFixture.addClass("package foo; public class PsiJavaCodeReferenceElement {}") myFixture.configureByText("a.java", """ import foo.PsiJavaCodeReferenceElement; class PsiJavaCodeReferenceElementImpl { { } } """) type 'PJCR' assertOrderedEquals myFixture.lookupElementStrings, 'PsiJavaCodeReferenceElement', 'PsiJavaCodeReferenceElementImpl' } public void testQuickSelectAfterReuse() { myFixture.configureByText("a.java", """ class A { Iterable iterable; { } } """) type 'ite' edt { myFixture.type 'r' lookup.markReused() lookup.currentItem = lookup.items[0] CommandProcessor.instance.executeCommand project, {lookup.finishLookup Lookup.NORMAL_SELECT_CHAR}, null, null } myFixture.checkResult """ class A { Iterable iterable; { iterable } } """ } public void testQuickSelectAfterReuseAndBackspace() { myFixture.configureByText("a.java", """ class A { Iterable iterable; { } } """) type 'ite' edt { myFixture.type 'r' lookup.markReused() myFixture.type '\b\b' lookup.currentItem = lookup.items[0] CommandProcessor.instance.executeCommand project, ({lookup.finishLookup Lookup.NORMAL_SELECT_CHAR} as Runnable), null, null } myFixture.checkResult """ class A { Iterable iterable; { iterable } } """ } public void testQuickSelectLiveTemplate() { myFixture.configureByText("a.java", """ class A { { } } """) type 'th' edt { myFixture.type 'r\t'} myFixture.checkResult """ class A { { throw new } } """ } public void testTwoQuickRestartsAfterHiding() { for (i in 0..10) { myFixture.configureByText("a${i}.java", """ class A { { } } """) edt { myFixture.type 'A' } joinAutopopup() // completion started boolean tooQuick = false edt { tooQuick = lookup == null myFixture.type 'IO' } joinAutopopup() //I joinAutopopup() //O joinCompletion() assert lookup assert 'ArrayIndexOutOfBoundsException' in myFixture.lookupElementStrings if (!tooQuick) { return } edt { LookupManager.getInstance(project).hideActiveLookup() CompletionProgressIndicator.cleanupForNextTest() } } fail "too many too quick attempts" } public void testTypingDuringExplicitCompletion() { myFixture.configureByText("a.java", """ class A { { Runnable r = new } } """) myFixture.complete CompletionType.SMART edt { myFixture.type 'Thr' } joinCompletion() assert lookup assert 'Thread' in myFixture.lookupElementStrings } public void testDotAfterVariable() { myFixture.configureByText("a.java", """ class A { { Object ooo; } } """) type 'o.' assert myFixture.file.text.contains("ooo.") assert lookup } public void testDotAfterCall() { myFixture.configureByText("a.java", """ class A { { } } """) type 'tos.' assert myFixture.file.text.contains("toString().") assert lookup } public void testDotAfterClassName() { myFixture.configureByText("a.java", """ class A { { } } """) type 'AIOO.' assert myFixture.file.text.contains("ArrayIndexOutOfBoundsException.") assert lookup } public void testDotAfterClassNameInParameter() { myFixture.configureByText("a.java", """ class A { void foo() {} } """) type 'AIOO...' assert myFixture.editor.document.text.contains("ArrayIndexOutOfBoundsException...") assert !lookup } void testArrow(boolean up, boolean cycleScrolling, boolean lookupAbove, int index) { myFixture.configureByText("a.java", """ class A { { ArrayIndexOutOfBoundsException } } """) type 'o' assert lookup assert !lookup.focused assert lookup.items.size() == 2 lookup.positionedAbove = lookupAbove UISettings.instance.CYCLE_SCROLLING = cycleScrolling def action = up ? IdeActions.ACTION_EDITOR_MOVE_CARET_UP : IdeActions.ACTION_EDITOR_MOVE_CARET_DOWN try { edt { myFixture.performEditorAction(action) } if (lookup) { assert lookup.focused assert index >= 0 assert lookup.items[index] == lookup.currentItem edt { lookup.hide() } } else { assert index == -1 } type '\b' } finally { UISettings.instance.CYCLE_SCROLLING = true } } void testArrows(boolean cycleScrolling, boolean lookupAbove, int indexDown, int indexUp) { testArrow true, cycleScrolling, lookupAbove, indexUp testArrow false, cycleScrolling, lookupAbove, indexDown } public void testVerticalArrows() { testArrows false, false, 0, -1 testArrows false, true, 0, -1 testArrows true, false, 0, 1 testArrows true, true, 0, 1 } public void testHideOnOnePrefixVariant() { myFixture.configureByText("a.java", """ class A { Object foo() { return nu } } """) type 'll' assert !lookup } public void testResumeAfterBackspace() { myFixture.configureByText("a.java", """ class A { Object foo() { this } } """) type '.' assert lookup type 'a' assert !lookup type '\b' assert !lookup type 'c' assert lookup } public void testHideOnInvalidSymbolAfterBackspace() { myFixture.configureByText("a.java", """ class A { Object foo() { this } } """) type '.' assert lookup type 'c' assert lookup type '\b' assert lookup type 'x' assert !lookup } public void testDoubleLiteralInField() { myFixture.configureByText "a.java", """ public interface Test { double FULL = 1.0 }""" type 'd' assert !lookup } public void testCancellingDuringCalculation() { myFixture.configureByText "a.java", """ class Aaaaaaa {} public interface Test { }""" edt { myFixture.type 'A' } joinAutopopup() def first = lookup assert first edt { assert first == lookup lookup.hide() myFixture.type 'a' } joinAutopopup() joinAutopopup() joinAutopopup() assert lookup != first } static class LongReplacementOffsetContributor extends CompletionContributor { @Override void duringCompletion(CompletionInitializationContext cxt) { Thread.sleep 500 ProgressManager.checkCanceled() cxt.replacementOffset--; } } static class LongContributor extends CompletionContributor { @Override void fillCompletionVariants(CompletionParameters parameters, CompletionResultSet result) { result.runRemainingContributors(parameters, { result.passResult(it) } as Consumer) Thread.sleep 1000 } } public void testDuringCompletionMustFinish() { registerContributor(LongReplacementOffsetContributor) edt { myFixture.addFileToProject 'directory/foo.txt', '' } myFixture.configureByText "a.java", 'public interface Test { RuntiExcexxx }' myFixture.completeBasic() while (!lookup.items) { Thread.sleep(10) edt { lookup.refreshUi(false) } } edt { myFixture.type '\t' } myFixture.checkResult 'public interface Test { RuntimeExceptionx }' } private def registerContributor(final Class contributor, LoadingOrder order = LoadingOrder.LAST) { def ep = Extensions.rootArea.getExtensionPoint("com.intellij.completion.contributor") def bean = new CompletionContributorEP(language: 'JAVA', implementationClass: contributor.name) ep.registerExtension(bean, order) disposeOnTearDown({ ep.unregisterExtension(bean) } as Disposable) } public void testLeftRightMovements() { myFixture.configureByText("a.java", """ class Foo { void foo(String iterable) { ter x } } """) type('i') def offset = myFixture.editor.caretModel.offset assertSameElements myFixture.lookupElementStrings, "if", "iterable", "int" edt { myFixture.performEditorAction(IdeActions.ACTION_EDITOR_MOVE_CARET_RIGHT) } assert myFixture.editor.caretModel.offset == offset + 1 assertOrderedEquals myFixture.lookupElementStrings, "iterable" assertEquals 'iterable', lookup.currentItem.lookupString edt { myFixture.performEditorAction(IdeActions.ACTION_EDITOR_MOVE_CARET_LEFT) } assert myFixture.editor.caretModel.offset == offset assertSameElements myFixture.lookupElementStrings, "if", "iterable", "int" assertEquals 'iterable', lookup.currentItem.lookupString edt { myFixture.performEditorAction(IdeActions.ACTION_EDITOR_MOVE_CARET_LEFT) } joinAutopopup() joinCompletion() assert lookup.items.size() > 3 for (i in 0.."iter".size()) { edt { myFixture.performEditorAction(IdeActions.ACTION_EDITOR_MOVE_CARET_RIGHT) } } assert !lookup } public void testTypingInAnotherEditor() { myFixture.configureByText("a.java", "") type 'c' assert lookup Editor another = null def wca = new WriteCommandAction.Simple(getProject(), new PsiFile[0]) { @Override protected void run() { EditorActionManager.instance.getTypedAction().handler.execute(another, (char) 'x', DataManager.instance.dataContext) } } try { edt { assert !lookup.calculating lookup.hide() def file = myFixture.addFileToProject("b.java", "") another = EditorFactory.instance.createEditor(file.viewProvider.document, project) wca.execute() assert 'x' == another.document.text } joinAutopopup() joinCompletion() LookupImpl l1 = LookupManager.getActiveLookup(another) if (l1) { printThreadDump() println l1.items println l1.calculating println myFixture.editor println another println CompletionServiceImpl.completionPhase assert false : l1.items } type 'l' assert lookup } finally { edt { EditorFactory.instance.releaseEditor(another) } } } public void testExplicitCompletionOnEmptyAutopopup() { myFixture.configureByText("a.java", "") type 'cccccc' myFixture.completeBasic() joinCompletion() assert !lookup } public void testNoSingleTemplateLookup() { myFixture.configureByText 'a.java', 'class Foo {{ ite }}' type 'r' assert !lookup } public void testTemplatesWithNonImportedClasses() { CodeInsightSettings.instance.COMPLETION_CASE_SENSITIVE = CodeInsightSettings.NONE myFixture.addClass("package foo.bar; public class LayoutStore {}") try { myFixture.configureByText 'a.java', 'class Foo {{ foo() }}' type 'lst' assert lookup assert 'lst' in myFixture.lookupElementStrings assert 'LayoutStore' in myFixture.lookupElementStrings } finally { CodeInsightSettings.instance.COMPLETION_CASE_SENSITIVE = CodeInsightSettings.FIRST_LETTER } } public void testTemplateSelectionByComma() { myFixture.configureByText("a.java", """ class Foo { int itea = 2; int itera = 2; { it } } """) type 'e' assertOrderedEquals myFixture.lookupElementStrings, "itea", "itera" type 'r' assertOrderedEquals myFixture.lookupElementStrings, "iter", "itera" type ',' assert !lookup assert myFixture.editor.document.text.contains('itera,') } public void testTemplateSelectionBySpace() { myFixture.configureByText("a.java", """ class Foo { int ITER = 2; int itea = 2; { it } } """) type 'er ' assert myFixture.editor.document.text.contains('iter ') } public void testNewClassParenthesis() { CodeInsightSettings.instance.COMPLETION_CASE_SENSITIVE = CodeInsightSettings.NONE try { myFixture.configureByText("a.java", """ class Foo { { new } } """) type 'aioo(' assert myFixture.editor.document.text.contains('new ArrayIndexOutOfBoundsException()') } finally { CodeInsightSettings.instance.COMPLETION_CASE_SENSITIVE = CodeInsightSettings.FIRST_LETTER } } public void testUnknownMethodParenthesis() { myFixture.configureByText("a.java", """ class Foo { { } } """) type 'filinpstr(' assert myFixture.editor.document.text.contains('filinpstr()') } public void testNoAutopopupAfterSpace() { myFixture.configureByText("a.java", """ class Foo { { int newa; } } """) edt { myFixture.type('new ') } joinAutopopup() joinCompletion() assert !lookup } public void testRestartAndTypingDuringCopyCommit() { registerContributor(LongReplacementOffsetContributor) myFixture.configureByText("a.java", """ class Foo { { int newa; } } """) myFixture.type 'n' joinAutopopup() myFixture.type 'e' joinCommit() // original commit myFixture.type 'w' joinAutopopup() joinCompletion() myFixture.type '\n' myFixture.checkResult(" class Foo { { int newa; new } } ") assert !lookup } public void testAutoRestartAndTypingDuringCopyCommit() { registerContributor(LongReplacementOffsetContributor) myFixture.configureByText("a.java", """ class Foo { { int iteraaa; } } """) type 'ite' assert !('iter' in myFixture.lookupElementStrings) myFixture.type 'r' joinCommit() myFixture.type 'a' joinAutopopup() joinCompletion() myFixture.type '\n' myFixture.checkResult(" class Foo { { int iteraaa; iteraaa } } ") assert !lookup } public void testChoosingItemDuringCopyCommit() { registerContributor(LongReplacementOffsetContributor) myFixture.configureByText("a.java", """ class Foo { { int iteraaa; } } """) type 'ite' assert !('iter' in myFixture.lookupElementStrings) assert 'iteraaa' in myFixture.lookupElementStrings myFixture.type 'r' joinCommit() myFixture.type 'a.' myFixture.checkResult(" class Foo { { int iteraaa; iteraaa. } } ") assert !lookup } public void testRestartWithInvisibleLookup() { registerContributor(LongReplacementOffsetContributor) myFixture.configureByText("a.java", """ class Foo { { int abcdef; } } """) myFixture.type 'a' joinAutopopup() assert lookup edt { myFixture.type 'bc' } joinAutopopup() joinAutopopup() joinCompletion() assert lookup assert lookup.shown } public void testRestartWithVisibleLookup() { registerContributor(LongContributor, LoadingOrder.FIRST) myFixture.configureByText("a.java", """ class Foo { { int abcdef; a } } """) myFixture.completeBasic() while (!lookup.shown) { Thread.sleep(1) } def l = lookup edt { assert lookup.calculating myFixture.type 'b' } joinCommit { myFixture.type 'c' } joinAutopopup() joinCompletion() assert lookup == l assert !lookup.calculating assert lookup.shown } private void joinSomething(int degree) { if (degree == 0) return joinAlarm() if (degree == 1) return joinCommit() if (degree == 2) return joinCommit() if (degree == 3) return edt {} if (degree == 4) return joinCompletion() } public void testEveryPossibleWayToTypeIf() { def src = "class Foo { { int ifa; } }" def result = "class Foo { { int ifa; if } }" int actions = 5 for (a1 in 0..actions) { println "a1 = $a1" for (a2 in 0..actions) { myFixture.configureByText("$a1 $a2 .java", src) myFixture.type 'i' joinSomething(a1) myFixture.type 'f' joinSomething(a2) myFixture.type ' ' joinAutopopup() joinCompletion() myFixture.checkResult(result) assert !lookup } } for (a1 in 0..actions) { myFixture.configureByText("$a1 if .java", src) edt { myFixture.type 'if' } joinSomething(a1) myFixture.type ' ' joinAutopopup() joinCompletion() myFixture.checkResult(result) assert !lookup } for (a1 in 0..actions) { myFixture.configureByText("$a1 if .java", src) myFixture.type 'i' joinSomething(a1) edt { myFixture.type 'f ' } joinAutopopup() joinCompletion() myFixture.checkResult(result) assert !lookup } } public void testNonFinishedParameterComma() { myFixture.configureByText("a.java", """ class Foo { void foo(int aaa, int aaaaa) { foo() } } """) type 'a,' assert myFixture.editor.document.text.contains('foo(aaa, )') } public void testFinishedParameterComma() { myFixture.configureByText("a.java", """ class Foo { void foo(int aaa, int aaaaa) { foo() } } """) type 'aaa,' assert myFixture.editor.document.text.contains('foo(aaa,)') } public void testNonFinishedVariableEq() { myFixture.configureByText("a.java", """ class Foo { void foo(int aaa, int aaaaa) { } } """) type 'a=' assert myFixture.editor.document.text.contains('aaa = ') } public void testFinishedVariableEq() { myFixture.configureByText("a.java", """ class Foo { void foo(int aaa, int aaaaa) { } } """) type 'aaa=' assert myFixture.editor.document.text.contains('aaa=') } public void testCompletionWhenLiveTemplateAreNotSufficient() { ((TemplateManagerImpl)TemplateManager.getInstance(getProject())).setTemplateTesting(true); try { myFixture.configureByText("a.java", """ class Foo { { Iterable l1 = null; Iterable l2 = null; Object asdf = null; iter } } """) type '\t' assert myFixture.lookupElementStrings == ['l2', 'l1'] type 'as' assert lookup assert myFixture.lookupElementStrings == ['asdf', 'assert'] type '\n.' assert lookup assert 'hashCode' in myFixture.lookupElementStrings assert myFixture.file.text.contains('asdf.') } finally { ((TemplateManagerImpl)TemplateManager.getInstance(getProject())).setTemplateTesting(false); } } public void testNoWordCompletionAutoPopup() { myFixture.configureByText "a.java", 'class Bar { void foo() { "f" }}' type 'o' assert !lookup } public void testMethodNameRestart() { myFixture.configureByText "a.java", ''' public class Bar { private static List getS } ''' type 'ta' assert !lookup } public void testTargetElementInLookup() { myFixture.configureByText 'a.java', ''' class Foo { void x__foo() {} void bar() { } void x__goo() {} } ''' def cls = ((PsiJavaFile)myFixture.file).getClasses()[0] def foo = cls.methods[0] def goo = cls.methods[2] type('x') assert myFixture.lookupElementStrings == ['x__foo', 'x__goo'] edt { assert foo == TargetElementUtil.instance.findTargetElement(myFixture.editor, TargetElementUtil.LOOKUP_ITEM_ACCEPTED) myFixture.performEditorAction(IdeActions.ACTION_EDITOR_MOVE_CARET_DOWN) assert goo == TargetElementUtil.instance.findTargetElement(myFixture.editor, TargetElementUtil.LOOKUP_ITEM_ACCEPTED) } type('_') assert myFixture.lookupElementStrings == ['x__foo', 'x__goo'] edt { assert goo == TargetElementUtil.instance.findTargetElement(myFixture.editor, TargetElementUtil.LOOKUP_ITEM_ACCEPTED) myFixture.performEditorAction(IdeActions.ACTION_EDITOR_MOVE_CARET_UP) assert foo == TargetElementUtil.instance.findTargetElement(myFixture.editor, TargetElementUtil.LOOKUP_ITEM_ACCEPTED) } } public void testExplicitAutocompletionAfterAutoPopup() { myFixture.configureByText 'a.java', 'class Foo ' type 'ext' CompletionAutoPopupHandler.ourTestingAutopopup = false edt { myFixture.completeBasic() } myFixture.checkResult 'class Foo extends ' } public void testExplicitMultipleVariantCompletionAfterAutoPopup() { myFixture.configureByText 'a.java', 'class Foo {}' type 'pr' CompletionAutoPopupHandler.ourTestingAutopopup = false edt { myFixture.completeBasic() } myFixture.checkResult 'class Foo {pr}' ApplicationManager.getApplication().runReadAction(new Runnable() { @Override void run() { getLookup().items.each { getLookup().list.cellRenderer.getListCellRendererComponent(getLookup().list, it, 0, false, false) } } }); assert myFixture.lookupElementStrings.containsAll(['private', 'protected']) } public void testArrays() { myFixture.configureByText "a.java", "class Foo {{ }}" type 'Arrays.' myFixture.checkResult "class Foo {{ Arrays. }}" assert !lookup } public void testExactMatchesFirst() { myFixture.configureByText("a.java", """ public class UTest { void nextWord() {} void foo() { n } }""") type 'ew' assert myFixture.lookupElementStrings == ['new', 'nextWord'] } public void testUpdatePrefixMatchingOnTyping() { myFixture.addClass("class CertificateEncodingException {}") myFixture.addClass("class CertificateException {}") myFixture.configureByText 'a.java', 'class Foo {}' type 'CertificateExce' assert myFixture.lookupElementStrings == ['CertificateException', 'CertificateEncodingException'] } public void testNoClassesInUnqualifiedImports() { myFixture.addClass("package xxxxx; public class Xxxxxxxxx {}") myFixture.configureByText 'a.java', 'package foo; import ' type 'xxx' assert !lookup } public void testPopupAfterDotAfterPackage() { myFixture.configureByText 'a.java', '' type 'import jav' assert lookup type '.' assert lookup } public void testSamePrefixIgnoreCase() { myFixture.addClass("package xxxxx; public class SYSTEM_EXCEPTION {}") myFixture.configureByText "a.java", "import xxxxx.*; class Foo { S }" type 'Ystem' assert 'java.lang.System' == ((JavaPsiClassReferenceElement) myFixture.lookupElements[0]).qualifiedName assert 'xxxxx.SYSTEM_EXCEPTION' == ((JavaPsiClassReferenceElement) myFixture.lookupElements[1]).qualifiedName } public void testSamePrefixIgnoreCase2() { myFixture.addClass("package xxxxx; public class SYSTEM_EXCEPTION {}") myFixture.addClass("package xxxxx; public class SYstem {}") myFixture.configureByText "a.java", "import xxxxx.*; class Foo { S }" type 'Ystem' assert 'xxxxx.SYstem' == ((JavaPsiClassReferenceElement) myFixture.lookupElements[0]).qualifiedName assert 'java.lang.System' == ((JavaPsiClassReferenceElement) myFixture.lookupElements[1]).qualifiedName assert 'xxxxx.SYSTEM_EXCEPTION' == ((JavaPsiClassReferenceElement) myFixture.lookupElements[2]).qualifiedName } private FileEditor openEditorForUndo() { FileEditor editor; edt { editor = FileEditorManager.getInstance(project).openFile(myFixture.file.virtualFile, false)[0] } def manager = (UndoManagerImpl) UndoManager.getInstance(project) def old = manager.editorProvider manager.editorProvider = new CurrentEditorProvider() { @Override public FileEditor getCurrentEditor() { return editor; } }; disposeOnTearDown ({ manager.editorProvider = old } as Disposable) return editor } public void testCharSelectionUndo() { myFixture.configureByText "a.java", "class Foo {{ }}" def editor = openEditorForUndo(); type('ArrStoExce.') edt { UndoManager.getInstance(project).undo(editor) } assert myFixture.editor.document.text.contains('ArrStoExce.') } public void testAutopopupTypingUndo() { myFixture.configureByText "a.java", "class Foo {{ }}" def editor = openEditorForUndo(); type 'aioobeeee' edt { UndoManager.getInstance(project).undo(editor) } assert !myFixture.editor.document.text.contains('aioo') } public void testNoLiveTemplatesAfterDot() { myFixture.configureByText "a.java", "class Foo {{ Iterable t; t. }}" type 'iter' assert myFixture.lookupElementStrings == ['iterator'] } public void testTypingNonImportedClassName() { myFixture.addClass("package foo; public class Foo239 {} ") myFixture.addClass("class Foo239Util {} ") myFixture.addClass("class Foo239Util2 {} ") myFixture.configureByText "a.java", "class Foo {{ }}" type 'Foo239 ' assert myFixture.file.text.contains('Foo239 ') myFixture.configureByText "a.java", "class Foo {{ }}" type 'Foo239' edt { myFixture.performEditorAction IdeActions.ACTION_EDITOR_MOVE_CARET_DOWN } type ' ' assert myFixture.file.text.contains('Foo239Util2 ') myFixture.configureByText "a.java", "class Foo {{ }}" type 'new Foo239(' assert myFixture.file.text.contains('new Foo239()') } public void testTypingFirstVarargDot() { myFixture.configureByText "a.java", "class Foo { void foo(Foo[] a) { }; class Bar {}}" type '.' assert !lookup } public void testBlockSelection() { doTestBlockSelection """ class Foo {{ tx; tx; }}""", '\n', ''' class Foo {{ toString()x; toString()x; }}''' } public void testBlockSelectionTab() { doTestBlockSelection """ class Foo {{ tx; tx; }}""", '\t', ''' class Foo {{ toString(); toString(); }}''' } public void testBlockSelectionBackspace() { doTestBlockSelection """ class Foo {{ t; t; }}""", '\b\t', ''' class Foo {{ toString(); toString(); }}''' } private doTestBlockSelection(final String textBefore, final String toType, final String textAfter) { myFixture.configureByText "a.java", textBefore edt { def caret = myFixture.editor.offsetToLogicalPosition(myFixture.editor.caretModel.offset) myFixture.editor.selectionModel.setBlockSelection(caret, new LogicalPosition(caret.line + 1, caret.column + 1)) } type 'toStr' assert lookup type toType myFixture.checkResult textAfter def start = myFixture.editor.selectionModel.blockStart def end = myFixture.editor.selectionModel.blockEnd assert start.line == end.line - 1 assert start.column == end.column assert end == myFixture.editor.caretModel.logicalPosition } public void testNonImportedClass() { myFixture.addClass("package foo; public class Abcdefg {}") myFixture.configureByText 'a.java', 'class Foo extends ' type 'Abcde ' myFixture.checkResult 'import foo.Abcdefg;\n\nclass Foo extends Abcdefg ' } public void testTwoNonImportedClasses() { myFixture.addClass("package foo; public class Abcdefg {}") myFixture.addClass("package bar; public class Abcdefg {}") myFixture.configureByText 'a.java', 'class Foo extends ' type 'Abcde ' myFixture.checkResult 'class Foo extends Abcdefg ' } public void testClassNameInProperties() { myFixture.addClass("package java.langa; public class Abcdefg {}") myFixture.configureByText 'a.properties', 'key.11=java' type '.' assert lookup type 'lang' assert myFixture.lookupElementStrings.size() >= 2 type '.' assert lookup edt { myFixture.editor.caretModel.moveToOffset(myFixture.editor.document.text.indexOf('lang')) } assert !lookup type 'i' assert 'io' in myFixture.lookupElementStrings } public void testEnteringLabel() { myFixture.configureByText 'a.java', '''class Foo {{ }} ''' type 'FIS:' assert myFixture.file.text.contains('FIS:') } }