mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
129 lines
4.5 KiB
Java
129 lines
4.5 KiB
Java
/*
|
|
* 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.
|
|
*/
|
|
package com.intellij.psi;
|
|
|
|
import com.intellij.JavaTestUtil;
|
|
import com.intellij.lang.ASTNode;
|
|
import com.intellij.openapi.command.CommandProcessor;
|
|
import com.intellij.openapi.command.WriteCommandAction;
|
|
import com.intellij.openapi.diagnostic.Logger;
|
|
import com.intellij.openapi.fileEditor.FileDocumentManager;
|
|
import com.intellij.openapi.util.io.FileUtil;
|
|
import com.intellij.openapi.vfs.VfsUtilCore;
|
|
import com.intellij.openapi.vfs.VirtualFile;
|
|
import com.intellij.openapi.vfs.VirtualFileManager;
|
|
import com.intellij.psi.impl.source.SourceTreeToPsiMap;
|
|
import com.intellij.psi.search.GlobalSearchScope;
|
|
import com.intellij.refactoring.rename.RenameProcessor;
|
|
import com.intellij.testFramework.IdeaTestUtil;
|
|
import com.intellij.testFramework.PsiTestCase;
|
|
import com.intellij.testFramework.PsiTestUtil;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
/**
|
|
* @author max
|
|
*/
|
|
public class ArrayIndexOutOfBoundsTest extends PsiTestCase {
|
|
private static final Logger LOG = Logger.getInstance("#com.intellij.psi.ArrayIndexOutOfBoundsTest");
|
|
private VirtualFile myProjectRoot;
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
|
|
String root = JavaTestUtil.getJavaTestDataPath() + "/psi/arrayIndexOutOfBounds/src";
|
|
PsiTestUtil.removeAllRoots(myModule, IdeaTestUtil.getMockJdk17());
|
|
myProjectRoot = PsiTestUtil.createTestProjectStructure(myProject, myModule, root, myFilesToDelete);
|
|
}
|
|
|
|
public void testSCR10930() throws Exception {
|
|
renamePackage();
|
|
deleteNewPackage();
|
|
restoreSources();
|
|
renamePackage();
|
|
}
|
|
|
|
public void testSimplerCase() throws Exception {
|
|
renamePackage();
|
|
restoreSources();
|
|
|
|
PsiFile psiFile = myPsiManager.findFile(myProjectRoot.findFileByRelativePath("bla/Bla.java"));
|
|
assertNotNull(psiFile);
|
|
|
|
assertEquals(4, psiFile.getChildren().length);
|
|
}
|
|
|
|
public void testLongLivingClassAfterRename() throws Exception {
|
|
PsiClass psiClass = myJavaFacade.findClass("bla.Bla", GlobalSearchScope.projectScope(getProject()));
|
|
ASTNode treeElement = SourceTreeToPsiMap.psiElementToTree(psiClass);
|
|
renamePackage();
|
|
//assertTrue(psiClass.isValid());
|
|
SourceTreeToPsiMap.treeElementToPsi(treeElement);
|
|
}
|
|
|
|
private void restoreSources() {
|
|
Runnable runnable = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
try {
|
|
FileUtil.copyDir(new File(JavaTestUtil.getJavaTestDataPath() + "/psi/arrayIndexOutOfBounds/src"),
|
|
VfsUtilCore.virtualToIoFile(myProjectRoot));
|
|
}
|
|
catch (IOException e) {
|
|
LOG.error(e);
|
|
}
|
|
VirtualFileManager.getInstance().syncRefresh();
|
|
}
|
|
};
|
|
CommandProcessor.getInstance().executeCommand(myProject, runnable, "", null);
|
|
}
|
|
|
|
private void deleteNewPackage() {
|
|
Runnable runnable = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
final PsiPackage aPackage = JavaPsiFacade.getInstance(myPsiManager.getProject()).findPackage("anotherBla");
|
|
assertNotNull("Package anotherBla not found", aPackage);
|
|
WriteCommandAction.runWriteCommandAction(null, new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
aPackage.getDirectories()[0].delete();
|
|
}
|
|
});
|
|
VirtualFileManager.getInstance().syncRefresh();
|
|
}
|
|
};
|
|
CommandProcessor.getInstance().executeCommand(myProject, runnable, "", null);
|
|
}
|
|
|
|
private void renamePackage() {
|
|
Runnable runnable = new Runnable() {
|
|
@Override
|
|
public void run() {
|
|
PsiPackage aPackage = JavaPsiFacade.getInstance(myPsiManager.getProject()).findPackage("bla");
|
|
assertNotNull("Package bla not found", aPackage);
|
|
|
|
PsiDirectory dir = aPackage.getDirectories()[0];
|
|
new RenameProcessor(myProject, dir, "anotherBla", true, true).run();
|
|
FileDocumentManager.getInstance().saveAllDocuments();
|
|
}
|
|
};
|
|
CommandProcessor.getInstance().executeCommand(myProject, runnable, "", null);
|
|
}
|
|
}
|