Add a quickfix for warning on ambiguously annotated expression

#KT-14238 Fixed
This commit is contained in:
Denis Zharkov
2016-10-07 16:49:31 +03:00
parent 84153f9636
commit 05aa9a5682
11 changed files with 167 additions and 0 deletions
@@ -0,0 +1,42 @@
/*
* Copyright 2010-2016 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 org.jetbrains.kotlin.idea.quickfix
import com.intellij.openapi.editor.Editor
import com.intellij.openapi.project.Project
import org.jetbrains.kotlin.diagnostics.Diagnostic
import org.jetbrains.kotlin.idea.quickfix.quickfixUtil.createIntentionForFirstParentOfType
import org.jetbrains.kotlin.psi.KtAnnotatedExpression
import org.jetbrains.kotlin.psi.KtFile
import org.jetbrains.kotlin.psi.KtPsiFactory
class AddNewLineAfterAnnotationsFix(element: KtAnnotatedExpression) : KotlinQuickFixAction<KtAnnotatedExpression>(element) {
override fun getText() = "Add new line after annotations"
override fun getFamilyName() = text
override fun invoke(project: Project, editor: Editor?, file: KtFile) {
val baseExpression = element.baseExpression ?: return
val annotationsText = element.text.substring(0, baseExpression.startOffsetInParent)
val newExpression = KtPsiFactory(project).createBlock(annotationsText + "\n" + baseExpression.text).statements[0]
element.replace(newExpression)
}
companion object Factory : KotlinSingleIntentionActionFactory() {
override fun createAction(diagnostic: Diagnostic) =
diagnostic.createIntentionForFirstParentOfType(::AddNewLineAfterAnnotationsFix)
}
}
@@ -432,5 +432,7 @@ class QuickFixRegistrar : QuickFixContributor {
TOO_MANY_CHARACTERS_IN_CHARACTER_LITERAL.registerFactory(TooLongCharLiteralToStringFix)
UNUSED_VALUE.registerFactory(RemoveUnusedValueFix)
ANNOTATIONS_ON_BLOCK_LEVEL_EXPRESSION_ON_THE_SAME_LINE.registerFactory(AddNewLineAfterAnnotationsFix)
}
}
@@ -0,0 +1,9 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
fun foo(y: Int) {
var x = 1
@Ann x<caret> += 2
}
@@ -0,0 +1,10 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
fun foo(y: Int) {
var x = 1
@Ann
x += 2
}
@@ -0,0 +1,12 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann2(val x: String)
fun foo(y: Int) {
var x = 1
@Ann @Ann2("") x<caret> += 2
}
@@ -0,0 +1,13 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann2(val x: String)
fun foo(y: Int) {
var x = 1
@Ann @Ann2("")
x += 2
}
@@ -0,0 +1,9 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
fun foo(y: IntArray) {
// Currently it calls reformatting of base expression, but it seems to be a minor issue
@Ann y [ 0 + 9 * 4]<caret> = y[y [1]]
}
@@ -0,0 +1,10 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
fun foo(y: IntArray) {
// Currently it calls reformatting of base expression, but it seems to be a minor issue
@Ann
y [0 + 9 * 4] = y[y [1]]
}
@@ -0,0 +1,13 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann2(val x: String)
fun foo(y: Int) {
var x = 1
@Ann // abc
@Ann2("") /* abc2*/ x<caret> += 2
}
@@ -0,0 +1,14 @@
// "Add new line after annotations" "true"
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann
@Target(AnnotationTarget.EXPRESSION)
annotation class Ann2(val x: String)
fun foo(y: Int) {
var x = 1
@Ann // abc
@Ann2("") /* abc2*/
x += 2
}
@@ -398,6 +398,39 @@ public class QuickFixTestGenerated extends AbstractQuickFixTest {
}
}
@TestMetadata("idea/testData/quickfix/addNewLineAfterAnnotations")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)
public static class AddNewLineAfterAnnotations extends AbstractQuickFixTest {
public void testAllFilesPresentInAddNewLineAfterAnnotations() throws Exception {
KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("idea/testData/quickfix/addNewLineAfterAnnotations"), Pattern.compile("^([\\w\\-_]+)\\.kt$"), true);
}
@TestMetadata("basic.kt")
public void testBasic() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/quickfix/addNewLineAfterAnnotations/basic.kt");
doTest(fileName);
}
@TestMetadata("manyAnnotations.kt")
public void testManyAnnotations() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/quickfix/addNewLineAfterAnnotations/manyAnnotations.kt");
doTest(fileName);
}
@TestMetadata("poorlyFormattedExpression.kt")
public void testPoorlyFormattedExpression() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/quickfix/addNewLineAfterAnnotations/poorlyFormattedExpression.kt");
doTest(fileName);
}
@TestMetadata("preserveComments.kt")
public void testPreserveComments() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("idea/testData/quickfix/addNewLineAfterAnnotations/preserveComments.kt");
doTest(fileName);
}
}
@TestMetadata("idea/testData/quickfix/addNoinline")
@TestDataPath("$PROJECT_ROOT")
@RunWith(JUnit3RunnerWithInners.class)