All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.intellij.execution.junit2.info.TestCaseInfo Maven / Gradle / Ivy

/*
 * Copyright 2000-2009 JetBrains s.r.o.
 *
 * 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.intellij.execution.junit2.info;

import com.intellij.execution.Location;
import com.intellij.execution.junit2.segments.ObjectReader;
import com.intellij.openapi.project.Project;
import com.intellij.psi.*;
import com.intellij.psi.search.GlobalSearchScope;
import com.intellij.psi.util.MethodSignatureUtil;
import org.jetbrains.annotations.Nullable;

class TestCaseInfo extends ClassBasedInfo {
  private String myMethod;

  public TestCaseInfo() {
    super(DisplayTestInfoExtractor.CLASS_FULL_NAME);
  }

  public void readFrom(final ObjectReader reader) {
    myMethod = reader.readLimitedString();
    readClass(reader);
  }

  public String getName() {
    return myMethod;
  }

  @Nullable
  public Location getLocation(final Project project, GlobalSearchScope searchScope) {
    final Location classLocation = (Location)super.getLocation(project, searchScope);
    if (classLocation == null) return null;
    String strippedMethodName = myMethod; //navigation to for parametr. methods
    final int idx = myMethod.indexOf('[');
    if (idx != -1) {
      strippedMethodName = myMethod.substring(0, idx);
    }
    final PsiMethod method = MethodSignatureUtil.findMethodBySignature(classLocation.getPsiElement(),
        MethodSignatureUtil.createMethodSignature(strippedMethodName, PsiType.EMPTY_ARRAY, PsiTypeParameter.EMPTY_ARRAY, PsiSubstitutor.EMPTY), true);
    if (method != null)
      return new MethodLocation(project, method, classLocation);
    return null;
  }

  public boolean shouldRun() {
    return true;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy