blob: 374f91d18d60debe36ba48375e1f919d9e05ee8e [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.kotlin.optimize.switches;
import static com.android.tools.r8.utils.codeinspector.Matchers.isPresent;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertNotEquals;
import com.android.tools.r8.TestBase;
import com.android.tools.r8.TestParameters;
import com.android.tools.r8.ToolHelper;
import com.android.tools.r8.utils.BooleanUtils;
import com.android.tools.r8.utils.codeinspector.ClassSubject;
import java.nio.file.Paths;
import java.util.List;
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 KotlinEnumSwitchTest extends TestBase {
private final boolean enableSwitchMapRemoval;
private final TestParameters parameters;
@Parameters(name = "{1}, enable switch map removal: {0}")
public static List<Object[]> data() {
return buildParameters(BooleanUtils.values(), getTestParameters().withAllRuntimes().build());
}
public KotlinEnumSwitchTest(boolean enableSwitchMapRemoval, TestParameters parameters) {
this.enableSwitchMapRemoval = enableSwitchMapRemoval;
this.parameters = parameters;
}
@Test
public void test() throws Exception {
testForR8(parameters.getBackend())
.addProgramFiles(Paths.get(ToolHelper.EXAMPLES_KOTLIN_BUILD_DIR, "enumswitch.jar"))
.addKeepMainRule("enumswitch.EnumSwitchKt")
.addOptionsModification(
options -> options.enableEnumValueOptimization = enableSwitchMapRemoval)
.setMinApi(parameters.getRuntime())
.noMinification()
.compile()
.inspect(
inspector -> {
ClassSubject classSubject = inspector.clazz("enumswitch.EnumSwitchKt");
assertThat(classSubject, isPresent());
ClassSubject mapClassSubject =
inspector.clazz("enumswitch.EnumSwitchKt$WhenMappings");
assertNotEquals(enableSwitchMapRemoval, mapClassSubject.isPresent());
})
.run(parameters.getRuntime(), "enumswitch.EnumSwitchKt")
.assertSuccessWithOutputLines("N", "S", "E", "W", "N", "S", "E", "W");
}
}