blob: da906ca71ca9dc6dbb4d82e56fe8e80cd22c5fc7 [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.settings.Blaze;
import com.google.idea.blaze.java.run.BlazeCommandRunConfiguration;
import com.google.idea.blaze.java.run.BlazeCommandRunConfigurationType;
import com.google.idea.blaze.java.run.RunUtil;
import com.intellij.execution.Location;
import com.intellij.execution.actions.ConfigurationContext;
import com.intellij.openapi.util.Ref;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiMethod;
import org.jetbrains.annotations.NotNull;
import java.util.List;
/**
* Producer for run configurations related to Java test methods in Blaze.
*/
public class BlazeJavaTestMethodConfigurationProducer extends BlazeTestRunConfigurationProducer<BlazeCommandRunConfiguration> {
public BlazeJavaTestMethodConfigurationProducer() {
super(BlazeCommandRunConfigurationType.getInstance());
}
@Override
protected boolean doSetupConfigFromContext(
@NotNull BlazeCommandRunConfiguration configuration,
@NotNull ConfigurationContext context,
@NotNull Ref<PsiElement> sourceElement) {
if (JUnitConfigurationUtil.isMultipleElementsSelected(context)) {
return false;
}
final Location contextLocation = context.getLocation();
assert contextLocation != null;
Location<PsiMethod> methodLocation = ProducerUtils.getMethodLocation(contextLocation);
if (methodLocation == null) {
return false;
}
final PsiMethod psiMethod = methodLocation.getPsiElement();
sourceElement.set(psiMethod);
final PsiClass containingClass = psiMethod.getContainingClass();
if (containingClass == null) {
return false;
}
TestIdeInfo.TestSize testSize = TestSizeAnnotationMap.getTestSize(psiMethod);
RuleIdeInfo rule = RunUtil.ruleForTestClass(context.getProject(), containingClass, testSize);
if (rule == null) {
return false;
}
configuration.setCommand(BlazeCommandName.TEST);
configuration.setTarget(rule.label);
ImmutableList.Builder<String> flags = ImmutableList.builder();
String qualifiedName = containingClass.getQualifiedName();
if (qualifiedName != null) {
flags.add(BlazeFlags.testFilterFlagForClassAndMethod(qualifiedName, psiMethod.getName()));
}
flags.add(BlazeFlags.TEST_OUTPUT_STREAMED);
configuration.setBlazeFlags(flags.build());
configuration.setName(
String.format("%s test: %s.%s (%s)",
Blaze.buildSystemName(configuration.getProject()),
containingClass.getName(),
psiMethod.getName(),
rule.label.toString()));
return true;
}
@Override
protected boolean doIsConfigFromContext(
@NotNull BlazeCommandRunConfiguration configuration,
@NotNull ConfigurationContext context) {
if (JUnitConfigurationUtil.isMultipleElementsSelected(context)) {
return false;
}
final Location contextLocation = context.getLocation();
assert contextLocation != null;
Location<PsiMethod> methodLocation = ProducerUtils.getMethodLocation(contextLocation);
if (methodLocation == null) {
return false;
}
final PsiMethod psiMethod = methodLocation.getPsiElement();
final PsiClass containingClass = psiMethod.getContainingClass();
if (containingClass == null) {
return false;
}
return checkIfAttributesAreTheSame(configuration, psiMethod);
}
private static boolean checkIfAttributesAreTheSame(
BlazeCommandRunConfiguration configuration, PsiMethod testMethod) {
List<String> flags = configuration.getAllBlazeFlags();
return flags.contains(BlazeFlags.testFilterFlagForClassAndMethod(testMethod.getContainingClass().getQualifiedName(), testMethod.getName()));
}
}