CodegenTestFile

This commit is contained in:
Stepan Koltsov
2012-05-28 20:19:23 +04:00
parent e4007992c6
commit 9402262e7c
3 changed files with 73 additions and 14 deletions
@@ -52,7 +52,7 @@ public abstract class CodegenTestCase extends UsefulTestCase {
// for environment and classloader // for environment and classloader
protected JetCoreEnvironment myEnvironment; protected JetCoreEnvironment myEnvironment;
private List<File> extraClasspath = Lists.newArrayList(); private List<File> extraClasspath = Lists.newArrayList();
protected JetFile myFile; protected CodegenTestFile myFile;
protected void createEnvironmentWithMockJdkAndIdeaAnnotations() { protected void createEnvironmentWithMockJdkAndIdeaAnnotations() {
if (myEnvironment != null) { if (myEnvironment != null) {
@@ -104,13 +104,13 @@ public abstract class CodegenTestCase extends UsefulTestCase {
} }
protected void loadText(final String text) { protected void loadText(final String text) {
myFile = (JetFile) JetTestUtils.createFile("a.jet", text, myEnvironment.getProject()); myFile = CodegenTestFile.create("a.jet", text, myEnvironment.getProject());
} }
protected String loadFile(final String name) { protected String loadFile(final String name) {
try { try {
final String content = JetTestUtils.doLoadFile(JetParsingTest.getTestDataDir() + "/codegen/", name); final String content = JetTestUtils.doLoadFile(JetParsingTest.getTestDataDir() + "/codegen/", name);
myFile = (JetFile) JetTestUtils.createFile(name, content, myEnvironment.getProject()); myFile = CodegenTestFile.create(name, content, myEnvironment.getProject());
return content; return content;
} catch (IOException e) { } catch (IOException e) {
throw new RuntimeException(e); throw new RuntimeException(e);
@@ -126,9 +126,7 @@ public abstract class CodegenTestCase extends UsefulTestCase {
} }
protected void blackBoxFile(String filename) { protected void blackBoxFile(String filename) {
String content = loadFile(filename); loadFile(filename);
Matcher matcher = Pattern.compile("// expected: (.*)").matcher(content);
String expectedValue = matcher.find() ? matcher.group(1) : "OK";
Object actual; Object actual;
try { try {
actual = blackBox(); actual = blackBox();
@@ -139,10 +137,10 @@ public abstract class CodegenTestCase extends UsefulTestCase {
System.out.println(generateToText()); System.out.println(generateToText());
throw new RuntimeException(e); throw new RuntimeException(e);
} }
if (!Objects.equal(expectedValue, actual)) { if (!Objects.equal(myFile.getExpectedValue(), actual)) {
System.out.println(generateToText()); System.out.println(generateToText());
} }
assertEquals(expectedValue, actual); assertEquals(myFile.getExpectedValue(), actual);
} }
@NotNull @NotNull
@@ -151,7 +149,7 @@ public abstract class CodegenTestCase extends UsefulTestCase {
GeneratedClassLoader loader = createClassLoader(codegens); GeneratedClassLoader loader = createClassLoader(codegens);
try { try {
if (myFile.isScript()) { if (myFile.getPsiFile().isScript()) {
Class<?> scriptClass = loader.loadClass("Script"); Class<?> scriptClass = loader.loadClass("Script");
Object scriptInstance = scriptClass.newInstance(); Object scriptInstance = scriptClass.newInstance();
Field field = scriptClass.getDeclaredField("rv"); Field field = scriptClass.getDeclaredField("rv");
@@ -160,7 +158,7 @@ public abstract class CodegenTestCase extends UsefulTestCase {
return result != null ? result.toString() : "null"; return result != null ? result.toString() : "null";
} }
else { else {
String fqName = NamespaceCodegen.getJVMClassNameForKotlinNs(JetPsiUtil.getFQName(myFile)).getFqName().getFqName(); String fqName = NamespaceCodegen.getJVMClassNameForKotlinNs(JetPsiUtil.getFQName(myFile.getPsiFile())).getFqName().getFqName();
Class<?> namespaceClass = loader.loadClass(fqName); Class<?> namespaceClass = loader.loadClass(fqName);
Method method = namespaceClass.getMethod("box"); Method method = namespaceClass.getMethod("box");
return (String) method.invoke(null); return (String) method.invoke(null);
@@ -185,10 +183,10 @@ public abstract class CodegenTestCase extends UsefulTestCase {
private GenerationState generateCommon(ClassBuilderFactory classBuilderFactory) { private GenerationState generateCommon(ClassBuilderFactory classBuilderFactory) {
final AnalyzeExhaust analyzeExhaust = AnalyzerFacadeForJVM.analyzeOneFileWithJavaIntegrationAndCheckForErrors( final AnalyzeExhaust analyzeExhaust = AnalyzerFacadeForJVM.analyzeOneFileWithJavaIntegrationAndCheckForErrors(
myFile, myEnvironment.getCompilerDependencies()); myFile.getPsiFile(), myEnvironment.getCompilerDependencies());
analyzeExhaust.throwIfError(); analyzeExhaust.throwIfError();
AnalyzingUtils.throwExceptionOnErrors(analyzeExhaust.getBindingContext()); AnalyzingUtils.throwExceptionOnErrors(analyzeExhaust.getBindingContext());
GenerationState state = new GenerationState(myEnvironment.getProject(), classBuilderFactory, analyzeExhaust, Collections.singletonList(myFile)); GenerationState state = new GenerationState(myEnvironment.getProject(), classBuilderFactory, analyzeExhaust, Collections.singletonList(myFile.getPsiFile()));
state.compileCorrectFiles(CompilationErrorHandler.THROW_EXCEPTION); state.compileCorrectFiles(CompilationErrorHandler.THROW_EXCEPTION);
return state; return state;
} }
@@ -204,7 +202,7 @@ public abstract class CodegenTestCase extends UsefulTestCase {
} }
protected Class loadRootNamespaceClass(@NotNull ClassFileFactory state) { protected Class loadRootNamespaceClass(@NotNull ClassFileFactory state) {
String fqName = NamespaceCodegen.getJVMClassNameForKotlinNs(JetPsiUtil.getFQName(myFile)).getFqName().getFqName(); String fqName = NamespaceCodegen.getJVMClassNameForKotlinNs(JetPsiUtil.getFQName(myFile.getPsiFile())).getFqName().getFqName();
try { try {
return createClassLoader(state).loadClass(fqName); return createClassLoader(state).loadClass(fqName);
} catch (ClassNotFoundException e) { } catch (ClassNotFoundException e) {
@@ -0,0 +1,61 @@
/*
* Copyright 2010-2012 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.jet.codegen;
import com.intellij.openapi.project.Project;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.jet.JetTestUtils;
import org.jetbrains.jet.lang.psi.JetFile;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
/**
* @author Stepan Koltsov
*/
public class CodegenTestFile {
@NotNull
private final JetFile psiFile;
@NotNull
private final String expectedValue;
private CodegenTestFile(@NotNull JetFile psiFile, @NotNull String expectedValue) {
this.psiFile = psiFile;
this.expectedValue = expectedValue;
}
@NotNull
public JetFile getPsiFile() {
return psiFile;
}
@NotNull
public String getExpectedValue() {
return expectedValue;
}
@NotNull
public static CodegenTestFile create(@NotNull String name, @NotNull String content, @NotNull Project project) {
JetFile file = (JetFile) JetTestUtils.createFile(name, content, project);
Matcher matcher = Pattern.compile("// expected: (.*)").matcher(content);
String expectedValue = matcher.find() ? matcher.group(1) : "OK";
return new CodegenTestFile(file, expectedValue);
}
}
@@ -146,7 +146,7 @@ public class StdlibTest extends CodegenTestCase {
GeneratedClassLoader loader = createClassLoader(codegens); GeneratedClassLoader loader = createClassLoader(codegens);
try { try {
String fqName = NamespaceCodegen.getJVMClassNameForKotlinNs(JetPsiUtil.getFQName(myFile)).getFqName().getFqName(); String fqName = NamespaceCodegen.getJVMClassNameForKotlinNs(JetPsiUtil.getFQName(myFile.getPsiFile())).getFqName().getFqName();
Class<?> namespaceClass = loader.loadClass(fqName); Class<?> namespaceClass = loader.loadClass(fqName);
Method method = namespaceClass.getMethod("box", Method.class); Method method = namespaceClass.getMethod("box", Method.class);
method.setAccessible(true); method.setAccessible(true);