blob: 731985201918633ac1e896f1636c036844bec761 [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;
import static com.android.tools.r8.ToolHelper.isLocalDevelopment;
import static org.hamcrest.CoreMatchers.anyOf;
import static org.hamcrest.CoreMatchers.containsString;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeTrue;
import com.android.tools.r8.R8TestCompileResult;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.TestParametersCollection;
import java.nio.file.Paths;
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 Gmail17060416TreeShakeJarVerificationTest extends GmailCompilationBase {
private static final int MAX_SIZE = 20000000;
@Parameters(name = "{0}")
public static TestParametersCollection data() {
return getTestParameters().withNoneRuntime().build();
}
public Gmail17060416TreeShakeJarVerificationTest(TestParameters parameters) {
super(170604, 16);
assert parameters.isNoneRuntime();
}
@Test
public void buildAndTreeShakeFromDeployJar() throws Exception {
assumeTrue(isLocalDevelopment());
R8TestCompileResult compileResult =
testForR8(Backend.DEX)
.addKeepRuleFiles(Paths.get(base).resolve(BASE_PG_CONF))
.allowDiagnosticMessages()
.allowUnusedDontWarnPatterns()
.allowUnusedProguardConfigurationRules()
.compile()
.assertAllInfoMessagesMatch(
anyOf(
containsString("Ignoring option: -optimizations"),
containsString("Proguard configuration rule does not match anything"),
containsString("Invalid signature"),
containsString("Validation error: A type variable is not in scope")))
.assertAllWarningMessagesMatch(
anyOf(
containsString("Ignoring option: -outjars"),
containsString("Cannot determine what identifier string flows to")));
int appSize = compileResult.app.applicationSize();
assertTrue("Expected max size of " + MAX_SIZE+ ", got " + appSize, appSize < MAX_SIZE);
}
}