3b81d63334
Move test-related code to org.jetbrains.kotlin.test, also move some tests to packages with better names
90 lines
3.8 KiB
Java
90 lines
3.8 KiB
Java
/*
|
|
* Copyright 2010-2015 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.kotlin.codegen;
|
|
|
|
import org.jetbrains.kotlin.builtins.KotlinBuiltIns;
|
|
import org.jetbrains.kotlin.name.Name;
|
|
import org.jetbrains.kotlin.parsing.JetScriptDefinition;
|
|
import org.jetbrains.kotlin.parsing.JetScriptDefinitionProvider;
|
|
import org.jetbrains.kotlin.resolve.AnalyzerScriptParameter;
|
|
import org.jetbrains.kotlin.test.ConfigurationKind;
|
|
import org.jetbrains.org.objectweb.asm.Opcodes;
|
|
|
|
import java.lang.reflect.Constructor;
|
|
import java.lang.reflect.Field;
|
|
import java.lang.reflect.Method;
|
|
|
|
public class ScriptGenTest extends CodegenTestCase {
|
|
private static final JetScriptDefinition FIB_SCRIPT_DEFINITION =
|
|
new JetScriptDefinition(".lang.kt",
|
|
new AnalyzerScriptParameter(Name.identifier("num"), KotlinBuiltIns.getInstance().getIntType()));
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
createEnvironmentWithMockJdkAndIdeaAnnotations(ConfigurationKind.JDK_ONLY);
|
|
JetScriptDefinitionProvider.getInstance(myEnvironment.getProject()).addScriptDefinition(FIB_SCRIPT_DEFINITION);
|
|
}
|
|
|
|
public void testLanguage() throws Exception {
|
|
loadFile("scriptCustom/fib.lang.kt");
|
|
Class<?> aClass = generateClass("Fib");
|
|
Constructor constructor = aClass.getConstructor(int.class);
|
|
Field result = aClass.getDeclaredField("result");
|
|
result.setAccessible(true);
|
|
Object script = constructor.newInstance(5);
|
|
assertEquals(8, result.get(script));
|
|
}
|
|
|
|
public void testLanguageWithPackage() throws Exception {
|
|
loadFile("scriptCustom/fibwp.lang.kt");
|
|
Class<?> aClass = generateClass("test.Fibwp");
|
|
Constructor constructor = aClass.getConstructor(int.class);
|
|
Field result = aClass.getDeclaredField("result");
|
|
result.setAccessible(true);
|
|
Object script = constructor.newInstance(5);
|
|
assertEquals(8, result.get(script));
|
|
}
|
|
|
|
public void testDependentScripts() throws Exception {
|
|
loadFiles("scriptCustom/fibwp.lang.kt", "scriptCustom/fibwprunner.kts");
|
|
Class<?> aClass = generateClass("Fibwprunner");
|
|
Constructor constructor = aClass.getConstructor();
|
|
Field result = aClass.getDeclaredField("result");
|
|
result.setAccessible(true);
|
|
Method resultMethod = aClass.getDeclaredMethod("getResult");
|
|
assertTrue((resultMethod.getModifiers() & Opcodes.ACC_FINAL) != 0);
|
|
assertTrue((resultMethod.getModifiers() & Opcodes.ACC_PUBLIC) != 0);
|
|
Field rv = aClass.getField("rv");
|
|
assertTrue((result.getModifiers() & Opcodes.ACC_PRIVATE) != 0);
|
|
Object script = constructor.newInstance();
|
|
assertEquals(12, rv.get(script));
|
|
assertEquals(8, result.get(script));
|
|
assertEquals(8, resultMethod.invoke(script));
|
|
}
|
|
|
|
public void testScriptWhereMethodHasClosure() throws Exception {
|
|
loadFile("scriptCustom/methodWithClosure.lang.kt");
|
|
Class<?> aClass = generateClass("MethodWithClosure");
|
|
Constructor constructor = aClass.getConstructor(int.class);
|
|
Object script = constructor.newInstance(239);
|
|
Method fib = aClass.getMethod("method");
|
|
Object invoke = fib.invoke(script);
|
|
assertEquals(239, ((Integer) invoke) / 2);
|
|
}
|
|
}
|