mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
109 lines
3.6 KiB
Java
109 lines
3.6 KiB
Java
/*
|
|
* Copyright 2000-2009 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.codeInspection.testOnly;
|
|
|
|
import com.intellij.codeInsight.AnnotationUtil;
|
|
import com.intellij.codeInsight.TestFrameworks;
|
|
import com.intellij.codeInspection.BaseJavaLocalInspectionTool;
|
|
import com.intellij.codeInspection.InspectionsBundle;
|
|
import com.intellij.codeInspection.ProblemHighlightType;
|
|
import com.intellij.codeInspection.ProblemsHolder;
|
|
import com.intellij.openapi.roots.ProjectRootManager;
|
|
import com.intellij.openapi.vfs.VirtualFile;
|
|
import com.intellij.psi.*;
|
|
import com.intellij.psi.util.PsiTreeUtil;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public class TestOnlyInspection extends BaseJavaLocalInspectionTool {
|
|
@NotNull
|
|
public String getDisplayName() {
|
|
return InspectionsBundle.message("inspection.test.only.problems.display.name");
|
|
}
|
|
|
|
@NotNull
|
|
public String getShortName() {
|
|
return "TestOnlyProblems";
|
|
}
|
|
|
|
@NotNull
|
|
public String getGroupDisplayName() {
|
|
return GENERAL_GROUP_NAME;
|
|
}
|
|
|
|
@NotNull
|
|
public PsiElementVisitor buildVisitor(@NotNull final ProblemsHolder h, boolean isOnTheFly) {
|
|
return new JavaElementVisitor() {
|
|
@Override public void visitCallExpression(PsiCallExpression e) {
|
|
validate(e, h);
|
|
}
|
|
};
|
|
}
|
|
|
|
private void validate(PsiCallExpression e, ProblemsHolder h) {
|
|
if (!isTestOnlyMethodCalled(e)) return;
|
|
if (isInsideTestOnlyMethod(e)) return;
|
|
if (isInsideTestClass(e)) return;
|
|
if (isUnderTestSources(e)) return;
|
|
|
|
reportProblem(e, h);
|
|
}
|
|
|
|
private boolean isTestOnlyMethodCalled(PsiCallExpression e) {
|
|
return isAnnotatedAsTestOnly(e.resolveMethod());
|
|
}
|
|
|
|
private boolean isInsideTestOnlyMethod(PsiCallExpression e) {
|
|
PsiMethod m = getTopLevelParentOfType(e, PsiMethod.class);
|
|
return isAnnotatedAsTestOnly(m);
|
|
}
|
|
|
|
private boolean isAnnotatedAsTestOnly(@Nullable PsiMethod m) {
|
|
if (m == null) return false;
|
|
return AnnotationUtil.isAnnotated(m, AnnotationUtil.TEST_ONLY, false);
|
|
}
|
|
|
|
private boolean isInsideTestClass(PsiCallExpression e) {
|
|
PsiClass c = getTopLevelParentOfType(e, PsiClass.class);
|
|
if (c == null) return false;
|
|
return TestFrameworks.getInstance().isTestClass(c);
|
|
}
|
|
|
|
private <T extends PsiElement> T getTopLevelParentOfType(PsiElement e, Class<T> c) {
|
|
T parent = PsiTreeUtil.getParentOfType(e, c);
|
|
if (parent == null) return null;
|
|
|
|
do {
|
|
T next = PsiTreeUtil.getParentOfType(parent, c);
|
|
if (next == null) return parent;
|
|
parent = next;
|
|
}
|
|
while (true);
|
|
}
|
|
|
|
private boolean isUnderTestSources(PsiCallExpression e) {
|
|
ProjectRootManager rm = ProjectRootManager.getInstance(e.getProject());
|
|
VirtualFile f = e.getContainingFile().getVirtualFile();
|
|
if (f == null) return false;
|
|
return rm.getFileIndex().isInTestSourceContent(f);
|
|
}
|
|
|
|
private void reportProblem(PsiCallExpression e, ProblemsHolder h) {
|
|
String message = InspectionsBundle.message("inspection.test.only.problems.test.only.method.call");
|
|
h.registerProblem(e, message, ProblemHighlightType.GENERIC_ERROR_OR_WARNING);
|
|
}
|
|
}
|