blob: 08a2171052f8f6bb27fec2e47364cfc698dfab2b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jdt.ui.tests.refactoring.reorg;
import org.eclipse.jdt.core.ICompilationUnit;
import org.eclipse.jdt.core.IPackageFragment;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.internal.corext.refactoring.rename.RenameTypeProcessor;
import org.eclipse.jdt.ui.tests.refactoring.infra.RefactoringPerformanceTestCase;
import org.eclipse.ltk.core.refactoring.participants.RenameRefactoring;
public class AbstractRenameTypePerfTest extends RefactoringPerformanceTestCase {
protected TestProject fTestProject;
public AbstractRenameTypePerfTest(String name) {
super(name);
}
protected void setUp() throws Exception {
super.setUp();
fTestProject= new TestProject();
}
protected void tearDown() throws Exception {
fTestProject.delete();
super.tearDown();
}
protected void executeRefactoring(ICompilationUnit cunit) throws Exception {
IType type= cunit.findPrimaryType();
RenameTypeProcessor processor= new RenameTypeProcessor(type);
processor.setNewElementName("B");
executeRefactoring(new RenameRefactoring(processor));
}
protected ICompilationUnit generateSources(int numberOfCus, int numberOfRefs) throws Exception {
IPackageFragment definition= fTestProject.getSourceFolder().createPackageFragment("def", false, null);
StringBuffer buf= new StringBuffer();
buf.append("package def;\n");
buf.append("public class A {\n");
buf.append("}\n");
ICompilationUnit result= definition.createCompilationUnit("A.java", buf.toString(), false, null);
IPackageFragment references= fTestProject.getSourceFolder().createPackageFragment("ref", false, null);
for(int i= 0; i < numberOfCus; i++) {
createReferenceCu(references, i, numberOfRefs);
}
return result;
}
private void createReferenceCu(IPackageFragment pack, int index, int numberOfRefs) throws Exception {
StringBuffer buf= new StringBuffer();
buf.append("package " + pack.getElementName() + ";\n");
buf.append("import def.A;\n");
buf.append("public class Ref" + index + " {\n");
for (int i= 0; i < numberOfRefs - 1; i++) {
buf.append(" A field" + i +";\n");
}
buf.append("}\n");
pack.createCompilationUnit("Ref" + index + ".java", buf.toString(), false, null);
}
}