blob: 247b7809f0716851170c0d91864874c6aa098b02 [file] [log] [blame]
// Copyright (c) 2022, 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.shaking.librarymethodoverride;
import static org.junit.Assert.assertTrue;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.graph.DexEncodedMethod;
import com.android.tools.r8.graph.DexItemFactory;
import com.android.tools.r8.graph.DexProgramClass;
import com.android.tools.r8.shaking.AppInfoWithLiveness;
import com.android.tools.r8.shaking.Enqueuer;
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 LibraryMethodOverrideOfClassMethodWithInterfaceTest extends TestBase {
private final String EXPECTED = "ProgramClass::foo";
@Parameter() public TestParameters parameters;
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimesAndApiLevels().build();
}
@Test
public void testRuntime() throws Exception {
testForRuntime(parameters)
.addProgramClasses(ProgramClass.class, ProgramInterface.class, Main.class)
.addLibraryClasses(LibraryClass.class)
.addRunClasspathFiles(buildOnDexRuntime(parameters, LibraryClass.class))
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines(EXPECTED);
}
@Test
public void testR8() throws Exception {
testForR8(parameters.getBackend())
.addProgramClasses(ProgramClass.class, ProgramInterface.class, Main.class)
.addDefaultRuntimeLibrary(parameters)
.addLibraryClasses(LibraryClass.class)
.addOptionsModification(
options -> options.testing.enqueuerInspector = this::verifyLibraryOverrideInformation)
.setMinApi(parameters.getApiLevel())
.addKeepMainRule(Main.class)
.compile()
.addBootClasspathClasses(LibraryClass.class)
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines(EXPECTED);
}
private void verifyLibraryOverrideInformation(AppInfoWithLiveness appInfo, Enqueuer.Mode mode) {
DexItemFactory dexItemFactory = appInfo.dexItemFactory();
DexProgramClass clazz =
appInfo
.definitionFor(dexItemFactory.createType(descriptor(ProgramInterface.class)))
.asProgramClass();
DexEncodedMethod method =
clazz.lookupVirtualMethod(m -> m.getReference().name.toString().equals("foo"));
// TODO(b/259531498): We should not mark the interface method as overriding.
assertTrue(method.isLibraryMethodOverride().isTrue());
}
public abstract static class LibraryClass {
abstract void foo();
}
public interface ProgramInterface {
void foo();
}
public static class ProgramClass extends LibraryClass implements ProgramInterface {
@Override
public void foo() {
System.out.println("ProgramClass::foo");
}
}
public static class Main {
public static void main(String[] args) {
callFoo(new ProgramClass());
}
public static void callFoo(ProgramInterface i) {
i.foo();
}
}
}