mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
139 lines
5.7 KiB
Java
139 lines
5.7 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 org.jetbrains.idea.devkit.codeInsight;
|
|
|
|
import com.intellij.openapi.application.PluginPathManager;
|
|
import com.intellij.openapi.application.Result;
|
|
import com.intellij.openapi.command.WriteCommandAction;
|
|
import com.intellij.testFramework.PsiTestUtil;
|
|
import com.intellij.testFramework.fixtures.IdeaTestFixtureFactory;
|
|
import com.intellij.testFramework.fixtures.JavaCodeInsightFixtureTestCase;
|
|
import com.intellij.testFramework.fixtures.TempDirTestFixture;
|
|
import org.jetbrains.idea.devkit.DevKitInspectionToolProvider;
|
|
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* @author peter
|
|
*/
|
|
public class PluginXmlFunctionalTest extends JavaCodeInsightFixtureTestCase {
|
|
private TempDirTestFixture myTempDirFixture;
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
myTempDirFixture = IdeaTestFixtureFactory.getFixtureFactory().createTempDirTestFixture();
|
|
myFixture.enableInspections(new DevKitInspectionToolProvider());
|
|
}
|
|
|
|
@Override
|
|
protected String getBasePath() {
|
|
return PluginPathManager.getPluginHomePathRelative("devkit") + "/testData/codeInsight";
|
|
}
|
|
|
|
public void testExtensionsHighlighting() throws Throwable {
|
|
final String root = "idea_core";
|
|
addPluginXml(root, "<idea-plugin>\n" +
|
|
" <id>com.intellij</id>\n" +
|
|
" <extensionPoints>\n" +
|
|
" <extensionPoint name=\"completion.contributor\"/>\n" +
|
|
" </extensionPoints>\n" +
|
|
"</idea-plugin>");
|
|
addPluginXml("custom", "<idea-plugin>\n" +
|
|
" <id>com.intellij.custom</id>\n" +
|
|
" <extensionPoints>\n" +
|
|
" <extensionPoint name=\"custom\"/>\n" +
|
|
" </extensionPoints>\n" +
|
|
"</idea-plugin>");
|
|
|
|
myFixture.configureFromExistingVirtualFile(myFixture.copyFileToProject(getTestName(false) + ".xml", "META-INF/plugin.xml"));
|
|
myFixture.checkHighlighting(false, false, false);
|
|
}
|
|
|
|
public void testDependsHighlighting() throws Throwable {
|
|
final String root = "idea_core";
|
|
addPluginXml(root, "<idea-plugin>\n" +
|
|
" <id>com.intellij</id>\n" +
|
|
" <module value=\"com.intellij.modules.vcs\"/>\n" +
|
|
"</idea-plugin>");
|
|
addPluginXml("custom", "<idea-plugin>\n" +
|
|
" <id>com.intellij.custom</id>\n" +
|
|
"</idea-plugin>");
|
|
|
|
myFixture.configureFromExistingVirtualFile(myFixture.copyFileToProject(getTestName(false) + ".xml", "META-INF/plugin.xml"));
|
|
myFixture.checkHighlighting(false, false, false);
|
|
}
|
|
|
|
public void testExtensionQualifiedName() throws Throwable {
|
|
myFixture.configureFromExistingVirtualFile(myFixture.copyFileToProject(getTestName(false) + ".xml", "META-INF/plugin.xml"));
|
|
myFixture.checkHighlighting(false, false, false);
|
|
}
|
|
|
|
public void testInnerClassCompletion() throws Throwable {
|
|
myFixture.addClass("package foo; public class Foo { public static class Fubar {} }");
|
|
myFixture.configureByFile(getTestName(false) + ".xml");
|
|
myFixture.completeBasic();
|
|
myFixture.type('\n');
|
|
myFixture.checkResultByFile(getTestName(false) + "_after.xml");
|
|
}
|
|
|
|
public void testResolveExtensionsFromDependentDescriptor() throws Throwable {
|
|
addPluginXml("xxx", "<idea-plugin>\n" +
|
|
" <id>com.intellij.xxx</id>\n" +
|
|
" <extensionPoints>\n" +
|
|
" <extensionPoint name=\"completion.contributor\"/>\n" +
|
|
" </extensionPoints>\n" +
|
|
"</idea-plugin>");
|
|
|
|
myFixture.copyFileToProject(getTestName(false) + "_main.xml", "META-INF/plugin.xml");
|
|
myFixture.configureFromExistingVirtualFile(myFixture.copyFileToProject(getTestName(false) + "_dependent.xml", "META-INF/dep.xml"));
|
|
myFixture.checkHighlighting(false, false, false);
|
|
}
|
|
|
|
private void addPluginXml(final String root, final String text) throws IOException {
|
|
myTempDirFixture.createFile(root +
|
|
"/META-INF/plugin.xml", text);
|
|
new WriteCommandAction(getProject()) {
|
|
protected void run(Result result) throws Throwable {
|
|
PsiTestUtil.addSourceContentToRoots(myModule, myTempDirFixture.getFile(root));
|
|
}
|
|
}.execute();
|
|
}
|
|
|
|
public void testNoWordCompletionInClassPlaces() throws Throwable {
|
|
myFixture.addClass("package foo; public class FooFooFooFooFoo { }");
|
|
myFixture.addClass("package foo; public interface ExtIntf { }");
|
|
|
|
myFixture.configureByFile(getTestName(false) + ".xml");
|
|
myFixture.completeBasic();
|
|
myFixture.type('\'');
|
|
myFixture.checkResultByFile(getTestName(false) + "_after.xml");
|
|
}
|
|
|
|
public void testPluginModule() throws Throwable {
|
|
myFixture.testHighlighting("pluginWithModules.xml");
|
|
}
|
|
|
|
public void testPluginWithModules() throws Throwable {
|
|
myFixture.testHighlighting("pluginWithModules.xml");
|
|
}
|
|
|
|
public void testPluginWithXInclude() throws Throwable {
|
|
myFixture.testHighlighting("pluginWithXInclude.xml", "extensionPoints.xml");
|
|
}
|
|
|
|
}
|