blob: 16b5f59f91b3df3eb6344857a1b9f3c8e9e8b45c [file] [log] [blame]
// Copyright (c) 2018, 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.examples;
import com.android.tools.r8.TestBase.MinifyMode;
import com.android.tools.r8.shaking.TreeShakingTest;
import com.android.tools.r8.utils.codeinspector.ClassSubject;
import com.android.tools.r8.utils.codeinspector.CodeInspector;
import com.google.common.collect.ImmutableList;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import org.junit.Assert;
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 TreeShakingNestedproto1Test extends TreeShakingTest {
@Parameters(name = "mode:{0}-{1} minify:{2}")
public static Collection<Object[]> data() {
List<Object[]> parameters = new ArrayList<>();
for (MinifyMode minify : MinifyMode.values()) {
parameters.add(new Object[] {Frontend.JAR, Backend.CF, minify});
parameters.add(new Object[] {Frontend.JAR, Backend.DEX, minify});
parameters.add(new Object[] {Frontend.DEX, Backend.DEX, minify});
}
return parameters;
}
public TreeShakingNestedproto1Test(Frontend frontend, Backend backend, MinifyMode minify) {
super("examples/nestedproto1", "nestedproto1.Nestedproto", frontend, backend, minify);
}
@Test
public void test() throws Exception {
runTest(
TreeShakingNestedproto1Test::nestedproto1UnusedFieldsAreGone,
null,
null,
ImmutableList.of("src/test/examples/nestedproto1/keep-rules.txt"));
}
private static void nestedproto1UnusedFieldsAreGone(CodeInspector inspector) {
ClassSubject protoClass = inspector.clazz("nestedproto1.GeneratedNestedProto$Outer");
Assert.assertTrue(protoClass.isPresent());
Assert.assertFalse(protoClass.field("int", "id_").isPresent());
Assert.assertTrue(
protoClass.field("nestedproto1.GeneratedNestedProto$NestedOne", "inner_").isPresent());
Assert.assertFalse(
protoClass.field("nestedproto1.GeneratedNestedProto$NestedTwo", "inner2_").isPresent());
ClassSubject nestedOne = inspector.clazz("nestedproto1.GeneratedNestedProto$NestedOne");
Assert.assertTrue(nestedOne.isPresent());
Assert.assertTrue(nestedOne.field("java.lang.String", "other_").isPresent());
Assert.assertFalse(nestedOne.field("int", "id_").isPresent());
Assert.assertFalse(inspector.clazz("nestedproto1.GeneratedNestedProto$NestedTwo").isPresent());
}
}