mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
running test inspections by language + inspection language fixes
This commit is contained in:
@@ -40,12 +40,16 @@ public abstract class InspectionToolWrapper<T extends InspectionProfileEntry, E
|
||||
protected final E myEP;
|
||||
|
||||
protected InspectionToolWrapper(E ep) {
|
||||
myEP = ep;
|
||||
this(null, ep);
|
||||
}
|
||||
|
||||
protected InspectionToolWrapper(T tool) {
|
||||
this(tool, null);
|
||||
}
|
||||
|
||||
protected InspectionToolWrapper(@Nullable T tool, @Nullable E ep) {
|
||||
myEP = ep;
|
||||
myTool = tool;
|
||||
myEP = null;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
||||
@@ -51,6 +51,10 @@ public final class LocalInspectionToolWrapper extends InspectionToolWrapper<Loca
|
||||
super(ep);
|
||||
}
|
||||
|
||||
public LocalInspectionToolWrapper(@Nullable LocalInspectionTool tool, @Nullable LocalInspectionEP ep) {
|
||||
super(tool, ep);
|
||||
}
|
||||
|
||||
public void processFile(PsiFile file, final boolean filterSuppressed, final InspectionManager manager) {
|
||||
processFile(file, filterSuppressed, manager, false);
|
||||
}
|
||||
|
||||
+15
-3
@@ -68,6 +68,7 @@ import com.intellij.openapi.editor.markup.GutterIconRenderer;
|
||||
import com.intellij.openapi.editor.markup.RangeHighlighter;
|
||||
import com.intellij.openapi.extensions.ExtensionPoint;
|
||||
import com.intellij.openapi.extensions.ExtensionPointName;
|
||||
import com.intellij.openapi.extensions.Extensions;
|
||||
import com.intellij.openapi.extensions.ExtensionsArea;
|
||||
import com.intellij.openapi.fileEditor.*;
|
||||
import com.intellij.openapi.fileEditor.impl.text.TextEditorProvider;
|
||||
@@ -152,6 +153,7 @@ public class CodeInsightTestFixtureImpl extends BaseFixture implements CodeInsig
|
||||
@NonNls private static final String XXX = "XXX";
|
||||
private final FileTreeAccessFilter myJavaFilesFilter = new FileTreeAccessFilter();
|
||||
private boolean myAllowDirt;
|
||||
private final Map<String, LocalInspectionEP> myExtensions = new HashMap<String, LocalInspectionEP>();
|
||||
|
||||
public CodeInsightTestFixtureImpl(IdeaProjectTestFixture projectFixture, TempDirTestFixture tempDirTestFixture) {
|
||||
myProjectFixture = projectFixture;
|
||||
@@ -1024,6 +1026,10 @@ public class CodeInsightTestFixtureImpl extends BaseFixture implements CodeInsig
|
||||
DaemonCodeAnalyzerSettings.getInstance().setImportHintEnabled(false);
|
||||
ensureIndexesUpToDate(getProject());
|
||||
((StartupManagerImpl)StartupManagerEx.getInstanceEx(getProject())).runPostStartupActivities();
|
||||
LocalInspectionEP[] extensions = Extensions.getExtensions(LocalInspectionEP.LOCAL_INSPECTION);
|
||||
for (LocalInspectionEP extension : extensions) {
|
||||
myExtensions.put(extension.shortName, extension);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
@@ -1057,9 +1063,15 @@ public class CodeInsightTestFixtureImpl extends BaseFixture implements CodeInsig
|
||||
HighlightDisplayKey.register(shortName, tool.getDisplayName(), id);
|
||||
}
|
||||
myAvailableTools.put(shortName, tool);
|
||||
myAvailableLocalTools.put(shortName, tool instanceof LocalInspectionTool ?
|
||||
new LocalInspectionToolWrapper((LocalInspectionTool)tool) :
|
||||
(InspectionTool)tool);
|
||||
InspectionTool inspectionTool;
|
||||
if (tool instanceof LocalInspectionTool) {
|
||||
LocalInspectionEP ep = myExtensions.get(tool.getShortName());
|
||||
inspectionTool = new LocalInspectionToolWrapper((LocalInspectionTool)tool, ep);
|
||||
}
|
||||
else {
|
||||
inspectionTool = (InspectionTool)tool;
|
||||
}
|
||||
myAvailableLocalTools.put(shortName, inspectionTool);
|
||||
}
|
||||
|
||||
private void configureInspections(final InspectionProfileEntry[] tools) {
|
||||
|
||||
@@ -430,7 +430,7 @@
|
||||
<localInspection language="JAVA" suppressId="deprecation" shortName="Deprecation" displayName="Deprecated API usage" groupName=""
|
||||
enabledByDefault="true" level="WARNING"
|
||||
implementationClass="com.intellij.codeInspection.deprecation.DeprecationInspection"/>
|
||||
<localInspection language="JAVA" shortName="DeprecatedClassUsageInspection" displayName="Deprecated API usage in XML" groupName="XML"
|
||||
<localInspection language="XML" shortName="DeprecatedClassUsageInspection" displayName="Deprecated API usage in XML" groupName="XML"
|
||||
enabledByDefault="true" level="WARNING" implementationClass="com.intellij.util.xml.DeprecatedClassUsageInspection"/>
|
||||
<localInspection language="JAVA" shortName="EqualsAndHashcode" bundle="messages.InspectionsBundle" key="inspection.equals.hashcode.display.name"
|
||||
groupName="" enabledByDefault="false" level="WARNING"
|
||||
|
||||
Reference in New Issue
Block a user