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

fitnesse.fixtures.PageHistory Maven / Gradle / Ivy

There is a newer version: 20241026
Show newest version
package fitnesse.fixtures;

import static fitnesse.fixtures.FitnesseFixtureContext.context;

import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class PageHistory {
  private String name;
  private Date date;
  private int right;
  private int wrong;
  private int ignores;
  private int exceptions;
  private SimpleDateFormat dateFormat = new SimpleDateFormat(fitnesse.reporting.history.PageHistory.TEST_RESULT_FILE_DATE_PATTERN);

  public void setName(String name) {
    this.name = name;
  }

  public void setDate(Date date) {
    this.date = new Date(date.getTime());
  }

  public void setRight(int right) {
    this.right = right;
  }

  public void setWrong(int wrong) {
    this.wrong = wrong;
  }

  public void setIgnores(int ignores) {
    this.ignores = ignores;
  }

  public void setExceptions(int exceptions) {
    this.exceptions = exceptions;
  }

  public void execute() throws IOException {
    File pageDirectory = addPageDirectory(name);
    addTestResult(pageDirectory);
  }


  private File addPageDirectory(String pageName) {
    File pageDirectory = new File(context.getTestHistoryDirectory(), pageName);
    if (!pageDirectory.exists())
      pageDirectory.mkdir();
    return pageDirectory;
  }

  private File addTestResult(File pageDirectory) throws IOException {
    String testResultFileName = String.format("%s_%d_%d_%d_%d", dateFormat.format(date), right, wrong, ignores, exceptions);
    File testResultFile = new File(pageDirectory, testResultFileName + ".xml");
    testResultFile.createNewFile();
    return testResultFile;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy