blob: 81c5c077a9caf01fe54da8b02903e0d0383c105d [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.desugar.corelib;
import static com.android.tools.r8.utils.codeinspector.Matchers.isPresent;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import com.android.tools.r8.NeverInline;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.utils.BooleanUtils;
import com.android.tools.r8.utils.StringUtils;
import com.android.tools.r8.utils.codeinspector.ClassSubject;
import com.android.tools.r8.utils.codeinspector.CodeInspector;
import java.util.List;
import java.util.function.Function;
import org.junit.Assume;
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 JavaUtilFunctionTest extends CoreLibDesugarTestBase {
private final TestParameters parameters;
private final boolean shrinkCoreLibrary;
private static final String expectedOutput = StringUtils.lines("Hello, world", "Hello, world");
@Parameters(name = "{1}, shrinkCoreLibrary: {0}")
public static List<Object[]> data() {
return buildParameters(
BooleanUtils.values(), getTestParameters().withDexRuntimes().withAllApiLevels().build());
}
public JavaUtilFunctionTest(boolean shrinkDesugaredLibrary, TestParameters parameters) {
this.shrinkCoreLibrary = shrinkDesugaredLibrary;
this.parameters = parameters;
}
private void checkRewrittenArguments(CodeInspector inspector) {
if (!requiresEmulatedInterfaceCoreLibDesugaring(parameters)) {
return;
}
ClassSubject classSubject = inspector.clazz(TestClass.class);
assertThat(classSubject, isPresent());
assertEquals(
"j$.util.function.Function",
classSubject
.uniqueMethodWithName("applyFunction")
.getMethod()
.method
.proto
.parameters
.values[0]
.toSourceString());
}
@Test
public void testJavaUtilFunctionD8() throws Exception {
testForD8()
.addInnerClasses(JavaUtilFunctionTest.class)
.setMinApi(parameters.getApiLevel())
.enableCoreLibraryDesugaring(parameters.getApiLevel())
.compile()
.inspect(this::checkRewrittenArguments)
.addDesugaredCoreLibraryRunClassPath(
this::buildDesugaredLibrary, parameters.getApiLevel(), shrinkCoreLibrary)
.run(parameters.getRuntime(), TestClass.class)
.assertSuccessWithOutput(expectedOutput);
}
@Test
public void testJavaUtilFunctionR8() throws Exception {
// TODO(b/139398549): Enable test on API 26+.
Assume.assumeTrue(parameters.getApiLevel().getLevel() < 26);
testForR8(parameters.getBackend())
// Following two for checkRewrittenArguments.
.enableInliningAnnotations()
.noMinification()
.addKeepMainRule(TestClass.class)
.addInnerClasses(JavaUtilFunctionTest.class)
.setMinApi(parameters.getApiLevel())
.enableCoreLibraryDesugaring(parameters.getApiLevel())
.compile()
.inspect(this::checkRewrittenArguments)
.addDesugaredCoreLibraryRunClassPath(
this::buildDesugaredLibrary, parameters.getApiLevel(), shrinkCoreLibrary)
.run(parameters.getRuntime(), TestClass.class)
.assertSuccessWithOutput(expectedOutput);
}
static class TestClass {
@NeverInline
private static String applyFunction(Function<String, String> f) {
return f.apply("Hello, world");
}
public static void main(String[] args) {
System.out.println(applyFunction(s -> s + System.lineSeparator() + s));
}
}
}