58 lines
1.9 KiB
Java
58 lines
1.9 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.backend.common.output.OutputFile;
|
|
import org.jetbrains.kotlin.test.ConfigurationKind;
|
|
import org.jetbrains.org.objectweb.asm.ClassReader;
|
|
import org.jetbrains.org.objectweb.asm.ClassVisitor;
|
|
import org.jetbrains.org.objectweb.asm.Opcodes;
|
|
|
|
public class SourceInfoGenTest extends CodegenTestCase {
|
|
|
|
private static final String TEST_FOLDER = "sourceInfo/";
|
|
|
|
@Override
|
|
protected void setUp() throws Exception {
|
|
super.setUp();
|
|
createEnvironmentWithMockJdkAndIdeaAnnotations(ConfigurationKind.JDK_ONLY);
|
|
}
|
|
|
|
public void testSingleClass() {
|
|
String producer = "singleClass.kt";
|
|
loadFiles(TEST_FOLDER + producer);
|
|
assertEquals(producer, getProducerInfo("SingleClass.class"));
|
|
}
|
|
|
|
private String getProducerInfo(String name) {
|
|
OutputFile file = generateClassesInFile().get(name);
|
|
assertNotNull(file);
|
|
|
|
ClassReader classReader = new ClassReader(file.asByteArray());
|
|
|
|
String[] producer = new String[1];
|
|
classReader.accept(new ClassVisitor(Opcodes.API_VERSION) {
|
|
|
|
@Override
|
|
public void visitSource(String source, String debug) {
|
|
producer[0] = source;
|
|
}
|
|
}, 0);
|
|
return producer[0];
|
|
}
|
|
}
|