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

com.squareup.spoon.html.HtmlLog Maven / Gradle / Ivy

There is a newer version: 1.7.1
Show newest version
package com.squareup.spoon.html;

import com.android.ddmlib.logcat.LogCatMessage;
import com.squareup.spoon.DeviceTest;
import com.squareup.spoon.DeviceTestResult;
import java.util.ArrayList;
import java.util.List;

/** Model for representing a {@code log.html} page. */
final class HtmlLog {
  public static HtmlLog from(String name, DeviceTest test, DeviceTestResult result) {
    String status;
    switch (result.getStatus()) {
      case PASS:
        status = "passed";
        break;
      case FAIL:
        status = "failed";
        break;
      default:
        throw new IllegalArgumentException("Unknown status: " + result.getStatus());
    }

    String title = HtmlUtils.prettifyMethodName(test.getMethodName());
    String subtitle = "Test " + status
        + " in " + HtmlUtils.humanReadableDuration(result.getDuration())
        + " on " + name;

    List log = new ArrayList();
    for (LogCatMessage message : result.getLog()) {
      log.add(LogEntry.from(message));
    }

    return new HtmlLog(title, subtitle, log);
  }

  public final String title;
  public final String subtitle;
  public final List log;

  HtmlLog(String title, String subtitle, List log) {
    this.title = title;
    this.subtitle = subtitle;
    this.log = log;
  }

  static class LogEntry {
    static LogEntry from(LogCatMessage message) {
      String rowClass;
      switch (message.getLogLevel()) {
        case ERROR:
          rowClass = "error";
          break;
        case WARN:
          rowClass = "warning";
          break;
        case INFO:
          rowClass = "info";
          break;
        default:
          rowClass = "";
      }

      String timestamp = message.getTimestamp().toString();
      String level = message.getLogLevel().getStringValue();
      return new LogEntry(rowClass, timestamp, level, message.getTag(), message.getMessage());
    }

    public final String rowClass;
    public final String timestamp;
    public final String level;
    public final String tag;
    public final String message;

    LogEntry(String rowClass, String timestamp, String level, String tag, String message) {
      this.rowClass = rowClass;
      this.timestamp = timestamp;
      this.level = level;
      this.tag = tag;
      this.message = message;
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy