blob: 03a8e2bf4ade69ec9b62c013775cdff529d693be [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.resolution.interfacediamonds;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeTrue;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import com.android.tools.r8.TestRuntime;
import com.android.tools.r8.graph.DexEncodedMethod;
import com.android.tools.r8.graph.DexMethod;
import com.android.tools.r8.graph.ResolutionResult;
import com.android.tools.r8.resolution.SingleTargetLookupTest;
import com.android.tools.r8.shaking.AppInfoWithLiveness;
import com.google.common.collect.ImmutableList;
import java.util.Collections;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@RunWith(Parameterized.class)
public class DefaultTopAndLeftTest extends TestBase {
private final TestParameters parameters;
@Parameterized.Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withAllRuntimesAndApiLevels().build();
}
public DefaultTopAndLeftTest(TestParameters parameters) {
this.parameters = parameters;
}
private static final List<Class<?>> CLASSES =
ImmutableList.of(T.class, L.class, R.class, B.class, Main.class);
@Test
public void testResolution() throws Exception {
// The resolution is runtime independent, so just run it on the default CF VM.
assumeTrue(parameters.getRuntime().equals(TestRuntime.getDefaultJavaRuntime()));
AppInfoWithLiveness appInfo =
SingleTargetLookupTest.createAppInfoWithLiveness(
buildClasses(CLASSES, Collections.emptyList()).build(), Main.class);
DexMethod method = SingleTargetLookupTest.buildMethod(B.class, "f", appInfo);
ResolutionResult resolutionResult = appInfo.resolveMethod(method.holder, method);
List<DexEncodedMethod> resolutionTargets = resolutionResult.asListOfTargets();
// TODO(b/144085169): The resolution should not include T::f as it is not maximally specific.
assertEquals(2 /* Should be 1 */, resolutionTargets.size());
assertTrue(
resolutionTargets.stream()
.anyMatch(m -> m.method.holder.toSourceString().equals(L.class.getTypeName())));
}
@Test
public void testReference() throws Exception {
testForRuntime(parameters)
.addProgramClasses(CLASSES)
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines("L::f");
}
@Test
public void testR8() throws Exception {
testForR8(parameters.getBackend())
.addProgramClasses(CLASSES)
.addKeepMainRule(Main.class)
.setMinApi(parameters.getApiLevel())
.run(parameters.getRuntime(), Main.class)
.assertSuccessWithOutputLines("L::f");
}
public interface T {
default void f() {
System.out.println("T::f");
}
}
public interface L extends T {
@Override
default void f() {
// Resolution will identify this as the only non-abstract and maximally-specific method.
System.out.println("L::f");
}
}
public interface R extends T {
// Intentionally empty.
}
public static class B implements L, R {
// Intentionally empty.
}
static class Main {
public static void main(String[] args) {
new B().f();
}
}
}