blob: 18b96564cc61f448da9418fb0cb2b398ff3a6679 [file] [log] [blame]
/*
* Copyright 2000-2013 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.
*/
/*
* User: anna
* Date: 11-Sep-2007
*/
package com.intellij.codeInspection;
import com.intellij.JavaTestUtil;
import com.intellij.codeInspection.ex.LocalInspectionToolWrapper;
import com.intellij.codeInspection.java15api.Java15APIUsageInspection;
import com.intellij.pom.java.LanguageLevel;
import com.intellij.testFramework.IdeaTestUtil;
import com.intellij.testFramework.InspectionTestCase;
public class JavaAPIUsagesInspectionTest extends InspectionTestCase {
@Override
protected String getTestDataPath() {
return JavaTestUtil.getJavaTestDataPath() + "/inspection";
}
private void doTest() {
final Java15APIUsageInspection usageInspection = new Java15APIUsageInspection();
doTest("usage1.5/" + getTestName(true), new LocalInspectionToolWrapper(usageInspection), "java 1.5");
}
public void testConstructor() throws Exception {
IdeaTestUtil.withLevel(getModule(), LanguageLevel.JDK_1_4, new Runnable() {
@Override
public void run() {
doTest();
}
});
}
public void testIgnored() throws Exception {
doTest();
}
public void testAnnotation() throws Exception {
IdeaTestUtil.withLevel(getModule(), LanguageLevel.JDK_1_6, new Runnable() {
@Override
public void run() {
doTest();
}
});
}
//generate apiXXX.txt
/*
public void testCollectSinceApiUsages() {
final String version = "1.8";
final ContentIterator contentIterator = new ContentIterator() {
@Override
public boolean processFile(VirtualFile fileOrDir) {
final PsiFile file = PsiManager.getInstance(getProject()).findFile(fileOrDir);
if (file instanceof PsiJavaFile) {
file.accept(new JavaRecursiveElementVisitor() {
@Override
public void visitElement(PsiElement element) {
super.visitElement(element);
if (element instanceof PsiDocCommentOwner) {
final PsiDocComment comment = ((PsiDocCommentOwner)element).getDocComment();
if (comment != null) {
for (PsiDocTag tag : comment.getTags()) {
if (Comparing.strEqual(tag.getName(), "since")) {
final PsiDocTagValue value = tag.getValueElement();
if (value != null && value.getText().equals(version)) {
System.out.println(Java15APIUsageInspection.getSignature((PsiMember)element));
}
break;
}
}
}
}
}
});
}
return true;
}
};
final VirtualFile srcFile = JarFileSystem.getInstance().findFileByPath("c:/tools/jdk8/src.zip!/");
assert srcFile != null;
VfsUtilCore.iterateChildrenRecursively(srcFile, VirtualFileFilter.ALL, contentIterator);
}
@Override
protected void setUpJdk() {
Module[] modules = ModuleManager.getInstance(myProject).getModules();
final Sdk sdk = JavaSdk.getInstance().createJdk("1.8", "c:/tools/jdk8/", false);
for (Module module : modules) {
ModuleRootModificationUtil.setModuleSdk(module, sdk);
}
}*/
}