blob: fbe1f3445781b15432cb4e01889fba4161037a2f [file] [log] [blame]
// Copyright (c) 2019, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.naming.retrace;
import static com.android.tools.r8.naming.retrace.StackTrace.isSame;
import static com.android.tools.r8.naming.retrace.StackTrace.isSameExceptForFileName;
import static com.android.tools.r8.naming.retrace.StackTrace.isSameExceptForFileNameAndLineNumber;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import com.android.tools.r8.CompilationMode;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.naming.retrace.StackTrace.StackTraceLine;
import com.google.common.collect.ImmutableList;
import java.util.Collection;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class DesugarLambdaRetraceTest extends RetraceTestBase {
@Parameters(name = "{0}, mode: {1}")
public static Collection<Object[]> data() {
return buildParameters(
getTestParameters().withAllRuntimesAndApiLevels().build(), CompilationMode.values());
}
public DesugarLambdaRetraceTest(TestParameters parameters, CompilationMode mode) {
super(parameters, mode);
}
@Override
public Collection<Class<?>> getClasses() {
return ImmutableList.of(getMainClass(), ConsumerDesugarLambdaRetraceTest.class);
}
@Override
public Class<?> getMainClass() {
return MainDesugarLambdaRetraceTest.class;
}
private int expectedActualStackTraceHeight() {
// In debug mode the expected stack trace height differs since there is no lambda desugaring
// for CF.
return mode == CompilationMode.RELEASE ? 2 : (parameters.isCfRuntime() ? 4 : 5);
}
private boolean isSynthesizedLambdaFrame(StackTraceLine line) {
return line.className.contains("-$$Lambda$");
}
private void checkLambdaFrame(StackTrace retracedStackTrace) {
StackTrace lambdaFrames = retracedStackTrace.filter(this::isSynthesizedLambdaFrame);
assertEquals(1, lambdaFrames.size());
if (lambdaFrames.get(0).hasLineNumber()) {
assertEquals(mode == CompilationMode.RELEASE ? 0 : 2, lambdaFrames.get(0).lineNumber);
}
// Proguard retrace will take the class name until the first $ to construct the file
// name, so for "-$$Lambda$...", the file name becomes "-.java".
// TODO(b/141287349): Format the class name of desugard lambda classes.
// assertEquals("-.java", lambdaFrames.get(0).fileName);
}
private void checkIsSame(StackTrace actualStackTrace, StackTrace retracedStackTrace) {
// Even when SourceFile is present retrace replaces the file name in the stack trace.
if (parameters.isCfRuntime()) {
assertThat(retracedStackTrace, isSame(expectedStackTrace));
} else {
// With the frame from the lambda class filtered out the stack trace is the same.
assertThat(
retracedStackTrace.filter(line -> !isSynthesizedLambdaFrame(line)),
isSame(expectedStackTrace));
// Check the frame from the lambda class.
checkLambdaFrame(retracedStackTrace);
}
assertEquals(expectedActualStackTraceHeight(), actualStackTrace.size());
}
private void checkIsSameExceptForFileName(
StackTrace actualStackTrace, StackTrace retracedStackTrace) {
// Even when SourceFile is present retrace replaces the file name in the stack trace.
if (parameters.isCfRuntime()) {
assertThat(retracedStackTrace, isSameExceptForFileName(expectedStackTrace));
} else {
// With the frame from the lambda class filtered out the stack trace is the same.
assertThat(
retracedStackTrace.filter(line -> !isSynthesizedLambdaFrame(line)),
isSameExceptForFileName(expectedStackTrace));
// Check the frame from the lambda class.
checkLambdaFrame(retracedStackTrace);
}
assertEquals(expectedActualStackTraceHeight(), actualStackTrace.size());
}
private void checkIsSameExceptForFileNameAndLineNumber(
StackTrace actualStackTrace, StackTrace retracedStackTrace) {
// Even when SourceFile is present retrace replaces the file name in the stack trace.
if (parameters.isCfRuntime()) {
assertThat(retracedStackTrace, isSameExceptForFileNameAndLineNumber(expectedStackTrace));
} else {
// With the frame from the lambda class filtered out the stack trace is the same.
assertThat(
retracedStackTrace.filter(line -> !isSynthesizedLambdaFrame(line)),
isSameExceptForFileNameAndLineNumber(expectedStackTrace));
// Check the frame from the lambda class.
checkLambdaFrame(retracedStackTrace);
}
assertEquals(expectedActualStackTraceHeight(), actualStackTrace.size());
}
@Test
public void testSourceFileAndLineNumberTable() throws Exception {
runTest(ImmutableList.of("-keepattributes SourceFile,LineNumberTable"), this::checkIsSame);
}
@Test
public void testLineNumberTableOnly() throws Exception {
runTest(
ImmutableList.of("-keepattributes LineNumberTable"), this::checkIsSameExceptForFileName);
}
@Test
public void testNoLineNumberTable() throws Exception {
runTest(ImmutableList.of(), this::checkIsSameExceptForFileNameAndLineNumber);
}
}
// Custom consumer functional interface, as java.util.function.Consumer is not present on Android.
@FunctionalInterface
interface ConsumerDesugarLambdaRetraceTest<T> {
void accept(T value);
}
class MainDesugarLambdaRetraceTest {
public static void method2(long j) {
System.out.println("In method2");
if (j == 1) throw null;
}
public static void method1(String s, ConsumerDesugarLambdaRetraceTest<String> consumer) {
System.out.println("In method1");
for (int i = 0; i < 10; i++) {
consumer.accept(s);
}
}
public static void main(String[] args) {
System.out.println("In main");
method1("1", s -> method2(Long.parseLong(s)));
}
}