blob: 66cb44fd053443e0c0740fa8433d207cf13be605 [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.ImmutableMap;
import com.google.idea.blaze.base.ideinfo.TestIdeInfo;
import com.intellij.psi.PsiAnnotation;
import com.intellij.psi.PsiClass;
import com.intellij.psi.PsiMethod;
import com.intellij.psi.PsiModifierList;
import javax.annotation.Nullable;
/** Maps method and class annotations to our test size enumeration. */
public class TestSizeAnnotationMap {
private static final ImmutableMap<String, TestIdeInfo.TestSize> ANNOTATION_TO_TEST_SIZE =
ImmutableMap.<String, TestIdeInfo.TestSize>builder()
.put("com.google.testing.testsize.SmallTest", TestIdeInfo.TestSize.SMALL)
.put("com.google.testing.testsize.MediumTest", TestIdeInfo.TestSize.MEDIUM)
.put("com.google.testing.testsize.LargeTest", TestIdeInfo.TestSize.LARGE)
.put("com.google.testing.testsize.EnormousTest", TestIdeInfo.TestSize.ENORMOUS)
.build();
@Nullable
public static TestIdeInfo.TestSize getTestSize(PsiMethod psiMethod) {
PsiAnnotation[] annotations = psiMethod.getModifierList().getAnnotations();
TestIdeInfo.TestSize testSize = getTestSize(annotations);
if (testSize != null) {
return testSize;
}
return getTestSize(psiMethod.getContainingClass());
}
@Nullable
public static TestIdeInfo.TestSize getTestSize(PsiClass psiClass) {
PsiModifierList psiModifierList = psiClass.getModifierList();
if (psiModifierList == null) {
return null;
}
PsiAnnotation[] annotations = psiModifierList.getAnnotations();
TestIdeInfo.TestSize testSize = getTestSize(annotations);
if (testSize == null) {
return null;
}
return testSize;
}
@Nullable
private static TestIdeInfo.TestSize getTestSize(PsiAnnotation[] annotations) {
for (PsiAnnotation annotation : annotations) {
String qualifiedName = annotation.getQualifiedName();
TestIdeInfo.TestSize testSize = ANNOTATION_TO_TEST_SIZE.get(qualifiedName);
if (testSize != null) {
return testSize;
}
}
return null;
}
}