blob: eba125cec0c92da24ebccae4e3031f8b068cb8cb [file] [log] [blame]
// Copyright (c) 2017, 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.debug;
import org.junit.Assert;
import org.junit.Test;
// TODO(shertz) test local variables
public class LambdaTest extends DebugTestBase {
public static final String SOURCE_FILE = "DebugLambda.java";
@Test
public void testLambda_ExpressionOnSameLine() throws Throwable {
String debuggeeClass = "DebugLambda";
String initialMethodName = "printInt";
runDebugTestJava8(debuggeeClass,
breakpoint(debuggeeClass, initialMethodName),
run(),
checkMethod(debuggeeClass, initialMethodName),
checkLine(SOURCE_FILE, 12),
stepInto(INTELLIJ_FILTER),
checkLine(SOURCE_FILE, 16),
run());
}
@Test
public void testLambda_StatementOnNewLine() throws Throwable {
String debuggeeClass = "DebugLambda";
String initialMethodName = "printInt3";
runDebugTestJava8(debuggeeClass,
breakpoint(debuggeeClass, initialMethodName),
run(),
checkMethod(debuggeeClass, initialMethodName),
checkLine(SOURCE_FILE, 32),
stepInto(INTELLIJ_FILTER),
checkLine(SOURCE_FILE, 37),
run());
}
@Test
public void testLambda_StaticMethodReference_Trivial() throws Throwable {
String debuggeeClass = "DebugLambda";
String initialMethodName = "printInt2";
runDebugTestJava8(debuggeeClass,
breakpoint(debuggeeClass, initialMethodName),
run(),
checkMethod(debuggeeClass, initialMethodName),
checkLine(SOURCE_FILE, 20),
stepInto(INTELLIJ_FILTER),
isRunningJava() ? LambdaTest::doNothing : stepInto(INTELLIJ_FILTER),
checkMethod(debuggeeClass, "returnOne"),
checkLine(SOURCE_FILE, 28),
checkNoLocal(),
run());
}
@Test
public void testLambda_StaticMethodReference_NonTrivial() throws Throwable {
String debuggeeClass = "DebugLambda";
String initialMethodName = "testLambdaWithMethodReferenceAndConversion";
runDebugTestJava8(debuggeeClass,
breakpoint(debuggeeClass, initialMethodName),
run(),
checkMethod(debuggeeClass, initialMethodName),
checkLine(SOURCE_FILE, 46),
stepInto(INTELLIJ_FILTER),
inspect(t -> Assert.assertTrue(t.getMethodName().startsWith("lambda$"))),
stepInto(INTELLIJ_FILTER),
checkMethod(debuggeeClass, "concatObjects"),
checkLine(SOURCE_FILE, 57),
checkLocal("objects"),
run());
}
private static void doNothing(JUnit3Wrapper jUnit3Wrapper) {
}
}