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

org.testng.remote.strprotocol.SuiteMessage Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.remote.strprotocol;

import java.util.Collection;
import java.util.List;
import java.util.Map;

import org.testng.ISuite;
import org.testng.ITestNGMethod;
import org.testng.collections.Lists;
import org.testng.collections.Maps;


/**
 * A IStringMessage implementation for suite running events.
 *
 * @author Alexandru Popescu
 */
public class SuiteMessage implements IStringMessage {
  protected final String m_suiteName;
  protected final int m_testMethodCount;
  protected final boolean m_startSuite;
  private List m_excludedMethods = Lists.newArrayList();
  private Map m_descriptions;

  public SuiteMessage(final String suiteName, final boolean startSuiteRun, final int methodCount) {
    m_suiteName = suiteName;
    m_startSuite = startSuiteRun;
    m_testMethodCount = methodCount;
  }

  public SuiteMessage(final ISuite suite, final boolean startSuiteRun) {
    m_suiteName = suite.getName();
    m_testMethodCount =suite.getInvokedMethods().size();
    m_startSuite = startSuiteRun;
    Collection excludedMethods = suite.getExcludedMethods();
    if (excludedMethods != null && excludedMethods.size() > 0) {
      m_excludedMethods = Lists.newArrayList();
      m_descriptions = Maps.newHashMap();
      for (ITestNGMethod m : excludedMethods) {
        String methodName = m.getTestClass().getName() + "." + m.getMethodName();
        m_excludedMethods.add(methodName);
        if (m.getDescription() != null) m_descriptions.put(methodName, m.getDescription());
      }
    }
  }

  public void setExcludedMethods(List methods) {
    m_excludedMethods = Lists.newArrayList();
    m_excludedMethods.addAll(methods);
  }

  public List getExcludedMethods() {
    return m_excludedMethods;
  }

  public String getDescriptionForMethod(String methodName) {
    return m_descriptions.get(methodName);
  }

  public boolean isMessageOnStart() {
    return m_startSuite;
  }

  public String getSuiteName() {
    return m_suiteName;
  }

  public int getTestMethodCount() {
    return m_testMethodCount;
  }

  @Override
  public String getMessageAsString() {
    StringBuffer buf = new StringBuffer();

    buf.append(m_startSuite ? MessageHelper.SUITE_START : MessageHelper.SUITE_FINISH)
        .append(MessageHelper.DELIMITER)
        .append(m_suiteName)
        .append(MessageHelper.DELIMITER)
        .append(m_testMethodCount)
        ;

    if (m_excludedMethods != null && m_excludedMethods.size() > 0) {
      buf.append(MessageHelper.DELIMITER);
      buf.append(m_excludedMethods.size());
      for (String method : m_excludedMethods) {
        buf.append(MessageHelper.DELIMITER);
        buf.append(method);
      }
    }
    return buf.toString();
  }

  @Override
  public String toString() {
    return "[SuiteMessage suite:" + m_suiteName
        + (m_startSuite ? " starting" : " ending")
        + " methodCount:" + m_testMethodCount
        + "]";
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy