blob: 839bd7cdb6cc660316ad1ec92e34bff5c0271dec [file] [log] [blame]
/*
* Copyright 2017 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.clwb.run.test;
import com.google.common.base.Joiner;
import com.google.idea.blaze.base.command.BlazeFlags;
import com.google.idea.blaze.base.model.primitives.Kind;
import com.google.idea.blaze.base.run.smrunner.BlazeTestEventsHandler;
import com.intellij.execution.Location;
import com.intellij.execution.testframework.sm.runner.SMTestLocator;
import com.intellij.openapi.project.Project;
import java.util.ArrayList;
import java.util.List;
import javax.annotation.Nullable;
/** Provides C/C++ specific methods needed by the SM-runner test UI. */
public class BlazeCidrTestEventsHandler implements BlazeTestEventsHandler {
@Override
public boolean handlesKind(@Nullable Kind kind) {
return kind == Kind.CC_TEST;
}
@Override
public SMTestLocator getTestLocator() {
return BlazeCppTestLocator.INSTANCE;
}
@Nullable
@Override
public String getTestFilter(Project project, List<Location<?>> testLocations) {
List<String> filters = new ArrayList<>();
for (Location<?> location : testLocations) {
GoogleTestLocation test = GoogleTestLocation.findGoogleTest(location);
if (test != null && test.testFilter != null) {
filters.add(test.testFilter);
}
}
if (filters.isEmpty()) {
return null;
}
return String.format("%s=%s", BlazeFlags.TEST_FILTER, Joiner.on(':').join(filters));
}
}