blob: 88c21a7f690202ec76227aff29ec6e84682b656f [file] [log] [blame]
// Copyright (c) 2021, 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.apimodel;
import static com.android.tools.r8.apimodel.ApiModelingTestHelper.setMockApiLevelForClass;
import static com.android.tools.r8.apimodel.ApiModelingTestHelper.verifyThat;
import static org.hamcrest.CoreMatchers.containsString;
import static org.hamcrest.CoreMatchers.not;
import static org.junit.Assume.assumeTrue;
import com.android.tools.r8.CompilationMode;
import com.android.tools.r8.NeverInline;
import com.android.tools.r8.SingleTestRunResult;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestCompilerBuilder;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.ToolHelper.DexVm.Version;
import com.android.tools.r8.utils.AndroidApiLevel;
import com.android.tools.r8.utils.codeinspector.CodeInspector;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameter;
import org.junit.runners.Parameterized.Parameters;
@RunWith(Parameterized.class)
public class ApiModelMockClassLoadingByClassForNameTest extends TestBase {
private final AndroidApiLevel mockLevel = AndroidApiLevel.M;
@Parameter public TestParameters parameters;
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimes().withAllApiLevelsAlsoForCf().build();
}
private boolean isGreaterOrEqualToMockLevel() {
return parameters.isDexRuntime() && parameters.getApiLevel().isGreaterThanOrEqualTo(mockLevel);
}
private void setupTestBuilder(TestCompilerBuilder<?, ?, ?, ?, ?> testBuilder) {
testBuilder
.addProgramClasses(Main.class, TestClass.class)
.addLibraryClasses(LibraryClass.class)
.addDefaultRuntimeLibrary(parameters)
.setMinApi(parameters.getApiLevel())
.apply(ApiModelingTestHelper::enableStubbingOfClasses)
.apply(setMockApiLevelForClass(LibraryClass.class, mockLevel));
}
@Test
public void testReference() throws Exception {
assumeTrue(parameters.isCfRuntime() && parameters.getApiLevel().isEqualTo(AndroidApiLevel.B));
testForJvm()
.addProgramClasses(Main.class, TestClass.class)
.run(parameters.getRuntime(), Main.class)
.apply(this::checkOutput);
}
@Test
public void testD8Debug() throws Exception {
testForD8(parameters.getBackend())
.setMode(CompilationMode.DEBUG)
.apply(this::setupTestBuilder)
.compile()
.applyIf(isGreaterOrEqualToMockLevel(), b -> b.addBootClasspathClasses(LibraryClass.class))
.run(parameters.getRuntime(), Main.class)
.apply(this::checkOutput)
.inspect(this::inspect);
}
@Test
public void testD8Release() throws Exception {
testForD8(parameters.getBackend())
.setMode(CompilationMode.RELEASE)
.apply(this::setupTestBuilder)
.compile()
.applyIf(isGreaterOrEqualToMockLevel(), b -> b.addBootClasspathClasses(LibraryClass.class))
.run(parameters.getRuntime(), Main.class)
.apply(this::checkOutput)
.inspect(this::inspect);
}
@Test
public void testR8() throws Exception {
testForR8(parameters.getBackend())
.apply(this::setupTestBuilder)
.addKeepMainRule(Main.class)
.enableInliningAnnotations()
.compile()
.applyIf(isGreaterOrEqualToMockLevel(), b -> b.addBootClasspathClasses(LibraryClass.class))
.run(parameters.getRuntime(), Main.class)
.apply(this::checkOutput)
.inspect(this::inspect);
}
private void checkOutput(SingleTestRunResult<?> runResult) {
if (isGreaterOrEqualToMockLevel()) {
runResult.assertSuccessWithOutputLines("Hello World!");
} else if (parameters.isDexRuntimeVersion(Version.V4_0_4)) {
// TODO(b/258270051): This should be ClassNotFoundException.
runResult.assertSuccessWithOutputLines("ExceptionInInitializerError");
} else if (parameters.isDexRuntimeVersion(Version.V4_4_4) || parameters.isCfRuntime()) {
runResult.assertSuccessWithOutputLines("ClassNotFoundException");
} else {
// TODO(b/258270051): This should be ClassNotFoundException.
runResult.assertSuccessWithOutputLines("NoClassDefFoundError");
}
runResult.applyIf(
!isGreaterOrEqualToMockLevel()
&& parameters.isDexRuntime()
&& parameters.getDexRuntimeVersion().isNewerThanOrEqual(Version.V7_0_0),
result -> result.assertStderrMatches(not(containsString("This dex file is invalid"))));
}
private void inspect(CodeInspector inspector) {
verifyThat(inspector, parameters, LibraryClass.class).stubbedUntil(mockLevel);
}
// Only present from api level 23.
public static class LibraryClass {}
public static class TestClass {
@NeverInline
public static void test() {
try {
String className =
"com.android.tools.r8.apimodel.ApiModelMockClassLoadingByClassForNameTest$LibraryClass"
+ (System.currentTimeMillis() == 0 ? "asdf" : "");
Class.forName(className);
System.out.println("Hello World!");
} catch (ExceptionInInitializerError er) {
System.out.println("ExceptionInInitializerError");
} catch (NoClassDefFoundError er) {
System.out.println("NoClassDefFoundError");
} catch (ClassNotFoundException e) {
System.out.println("ClassNotFoundException");
}
}
}
public static class Main {
public static void main(String[] args) {
TestClass.test();
if (System.currentTimeMillis() == 0) {
System.out.println(LibraryClass.class.getName());
}
}
}
}