blob: bf3cd6c66b86fa415c1545361e3a1f4d50533900 [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.base.run;
import com.google.idea.blaze.base.ideinfo.TargetIdeInfo;
import com.google.idea.blaze.base.ideinfo.TestIdeInfo.TestSize;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.psi.PsiFile;
import java.io.File;
import javax.annotation.Nullable;
/** Looks for a test rule with rule name matching the source file. */
public class TargetNameHeuristic implements TestTargetHeuristic {
@Override
public boolean matchesSource(
Project project,
TargetIdeInfo target,
@Nullable PsiFile sourcePsiFile,
File sourceFile,
@Nullable TestSize testSize) {
String filePathWithoutExtension = FileUtil.getNameWithoutExtension(sourceFile.getPath());
String targetName = target.key.label.targetName().toString();
if (!filePathWithoutExtension.endsWith(targetName)) {
return false;
}
int i = filePathWithoutExtension.length() - targetName.length() - 1;
if (i < 0) {
// Equal length
return true;
}
return filePathWithoutExtension.charAt(i) == '/';
}
}