blob: c1b3f86c2b0c49e0a2d763814a8f1a063dcfbd7a [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.internal.proto;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.utils.BooleanUtils;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@RunWith(Parameterized.class)
public class Proto2ShrinkingTest extends ProtoShrinkingTestBase {
private final boolean allowAccessModification;
private final boolean enableMinification;
private final TestParameters parameters;
@Parameterized.Parameters(name = "{2}, allow access modification: {0}, enable minification: {1}")
public static List<Object[]> data() {
return buildParameters(
BooleanUtils.values(),
BooleanUtils.values(),
getTestParameters().withAllRuntimes().build());
}
public Proto2ShrinkingTest(
boolean allowAccessModification, boolean enableMinification, TestParameters parameters) {
this.allowAccessModification = allowAccessModification;
this.enableMinification = enableMinification;
this.parameters = parameters;
}
@Test
public void test() throws Exception {
testForR8(parameters.getBackend())
.addProgramFiles(PROTO2_EXAMPLES_JAR, PROTO2_PROTO_JAR, PROTOBUF_LITE_JAR)
.addKeepMainRule("proto2.TestClass")
.addKeepRules(
allowAccessModification ? "-allowaccessmodification" : "")
.addKeepRuleFiles(PROTOBUF_LITE_PROGUARD_RULES)
.addOptionsModification(
options -> {
options.enableGeneratedMessageLiteShrinking = true;
options.enableGeneratedExtensionRegistryShrinking = true;
options.enableStringSwitchConversion = true;
// Because there are unused rules in lite_proguard.pgcfg.
options.testing.allowUnusedProguardConfigurationRules = true;
})
.enableProguardTestOptions()
.minification(enableMinification)
.setMinApi(parameters.getRuntime())
.compile()
.run(parameters.getRuntime(), "proto2.TestClass")
.assertSuccessWithOutputLines(
"--- roundtrip ---",
"true",
"123",
"asdf",
"9223372036854775807",
"qwerty",
"--- partiallyUsed_proto2 ---",
"true",
"42",
"--- usedViaHazzer ---",
"true",
"--- usedViaOneofCase ---",
"true",
"--- usesOnlyRepeatedFields ---",
"1",
"--- containsFlaggedOffField ---",
"0",
"--- hasFlaggedOffExtension ---",
"4",
"--- useOneExtension ---",
"42",
"--- keepMapAndRequiredFields ---",
"true",
"10",
"10",
"10");
}
}