blob: 419f9797eec9d999c277e8767cc94237e2c80c60 [file] [log] [blame]
/*
* Copyright 2016 The Bazel Authors. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.google.idea.blaze.java.run.producers;
import com.google.common.collect.ImmutableList;
import com.google.idea.blaze.base.command.BlazeCommandName;
import com.google.idea.blaze.base.command.BlazeFlags;
import com.google.idea.blaze.base.ideinfo.RuleIdeInfo;
import com.google.idea.blaze.base.ideinfo.TestIdeInfo;
import com.google.idea.blaze.base.run.BlazeCommandRunConfiguration;
import com.google.idea.blaze.base.run.BlazeCommandRunConfigurationType;
import com.google.idea.blaze.base.run.BlazeConfigurationNameBuilder;
import com.google.idea.blaze.base.run.producers.BlazeRunConfigurationProducer;
import com.google.idea.blaze.base.run.state.BlazeCommandRunConfigurationCommonState;
import com.google.idea.blaze.java.run.RunUtil;
import com.google.idea.blaze.java.run.producers.BlazeJUnitTestFilterFlags.JUnitVersion;
import com.intellij.execution.actions.ConfigurationContext;
import com.intellij.execution.junit.JUnitUtil;
import com.intellij.openapi.util.Ref;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiMethod;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import org.jetbrains.annotations.NotNull;
/** Producer for run configurations related to Java test methods in Blaze. */
public class BlazeJavaTestMethodConfigurationProducer
extends BlazeRunConfigurationProducer<BlazeCommandRunConfiguration> {
private static class SelectedMethodInfo {
private final PsiMethod firstMethod;
private final PsiClass containingClass;
private final List<String> methodNames;
private final String testFilterFlag;
public SelectedMethodInfo(
PsiMethod firstMethod,
PsiClass containingClass,
List<String> methodNames,
String testFilterFlag) {
this.firstMethod = firstMethod;
this.containingClass = containingClass;
this.methodNames = methodNames;
this.testFilterFlag = testFilterFlag;
}
}
public BlazeJavaTestMethodConfigurationProducer() {
super(BlazeCommandRunConfigurationType.getInstance());
}
@Override
protected boolean doSetupConfigFromContext(
@NotNull BlazeCommandRunConfiguration configuration,
@NotNull ConfigurationContext context,
@NotNull Ref<PsiElement> sourceElement) {
SelectedMethodInfo methodInfo = getSelectedMethodInfo(context);
if (methodInfo == null) {
return false;
}
// PatternConfigurationProducer also chooses the first method as its source element.
// As long as we choose an element at the same PSI hierarchy level,
// PatternConfigurationProducer won't override our configuration.
sourceElement.set(methodInfo.firstMethod);
TestIdeInfo.TestSize testSize = TestSizeAnnotationMap.getTestSize(methodInfo.firstMethod);
RuleIdeInfo rule =
RunUtil.ruleForTestClass(context.getProject(), methodInfo.containingClass, testSize);
if (rule == null) {
return false;
}
configuration.setTarget(rule.label);
BlazeCommandRunConfigurationCommonState handlerState =
configuration.getHandlerStateIfType(BlazeCommandRunConfigurationCommonState.class);
if (handlerState == null) {
return false;
}
handlerState.setCommand(BlazeCommandName.TEST);
ImmutableList.Builder<String> flags = ImmutableList.builder();
flags.add(methodInfo.testFilterFlag);
flags.add(BlazeFlags.TEST_OUTPUT_STREAMED);
flags.addAll(handlerState.getBlazeFlags());
handlerState.setBlazeFlags(flags.build());
BlazeConfigurationNameBuilder nameBuilder = new BlazeConfigurationNameBuilder(configuration);
nameBuilder.setTargetString(
String.format(
"%s.%s",
methodInfo.containingClass.getName(), String.join(",", methodInfo.methodNames)));
configuration.setName(nameBuilder.build());
return true;
}
@Override
protected boolean doIsConfigFromContext(
@NotNull BlazeCommandRunConfiguration configuration, @NotNull ConfigurationContext context) {
BlazeCommandRunConfigurationCommonState handlerState =
configuration.getHandlerStateIfType(BlazeCommandRunConfigurationCommonState.class);
if (handlerState == null) {
return false;
}
if (!Objects.equals(handlerState.getCommand(), BlazeCommandName.TEST)) {
return false;
}
SelectedMethodInfo methodInfo = getSelectedMethodInfo(context);
if (methodInfo == null) {
return false;
}
List<String> flags = handlerState.getBlazeFlags();
return flags.contains(methodInfo.testFilterFlag);
}
private static SelectedMethodInfo getSelectedMethodInfo(ConfigurationContext context) {
final List<PsiMethod> selectedMethods = TestMethodSelectionUtil.getSelectedMethods(context);
if (selectedMethods == null) {
return null;
}
assert selectedMethods.size() > 0;
final PsiMethod firstMethod = selectedMethods.get(0);
final PsiClass containingClass = firstMethod.getContainingClass();
if (containingClass == null) {
return null;
}
for (PsiMethod method : selectedMethods) {
if (!containingClass.equals(method.getContainingClass())) {
return null;
}
}
final List<String> methodNames = new ArrayList<>();
for (PsiMethod method : selectedMethods) {
methodNames.add(method.getName());
}
// Sort so multiple configurations created with different selection orders are the same.
Collections.sort(methodNames);
final String qualifiedName = containingClass.getQualifiedName();
if (qualifiedName == null) {
return null;
}
final JUnitVersion jUnitVersion =
JUnitUtil.isJUnit4TestClass(containingClass) ? JUnitVersion.JUNIT_4 : JUnitVersion.JUNIT_3;
final String testFilterFlag =
BlazeJUnitTestFilterFlags.testFilterFlagForClassAndMethods(
qualifiedName, methodNames, jUnitVersion);
return new SelectedMethodInfo(firstMethod, containingClass, methodNames, testFilterFlag);
}
}