org.scalatest.tools.EventHolder.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalatest_2.9.0 Show documentation
Show all versions of scalatest_2.9.0 Show documentation
ScalaTest is a free, open-source testing toolkit for Scala and Java
programmers.
/*
* Copyright 2001-2008 Artima, Inc.
*
* 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 org.scalatest.tools
import org.scalatest._
import org.scalatest.events._
import EventHolder.suiteAndTestName
/**
* Used to hold Reports in the GUI, so that I can keep track of which report method was called
* on the reporter to deliver it.
*
* @author Bill Venners
*/
private[tools] class EventHolder(val event: Event, val message: Option[String], val throwable: Option[Throwable],
val rerunner: Option[String], val summary: Option[Summary], val isRerun: Boolean) {
if (event == null || message == null || throwable == null || rerunner == null || summary == null)
throw new NullPointerException()
def this(event: Event, message: Option[String], throwable: Option[Throwable],
rerunner: Option[String]) = this(event, message, throwable, rerunner, None, false)
def this(event: Event, message: Option[String], throwable: Option[Throwable],
rerunner: Option[String], summary: Option[Summary]) = this(event, message, throwable, rerunner, summary, false)
override def toString = {
event.formatter match {
case Some(IndentedText(_, rawText, indentationLevel)) =>
event match {
case _: SuiteStarting => rawText + ":"
case _: TestPending => Resources("specTextAndNote", rawText, Resources("pendingNote"))
case _ => rawText
}
case _ =>
val firstString: String =
if (isRerun)
Resources("RERUN_" + RunnerJFrame.getUpperCaseName(event))
else
Resources(RunnerJFrame.getUpperCaseName(event))
def firstAndSecondString(first: String, second: String) = first + " - " + second
event match {
case event: RunStarting => firstString
case event: RunStopped => firstString
case event: RunAborted => firstString
case event: RunCompleted => firstString
case event: ScopeOpened => firstString + " - " + event.message
case event: ScopeClosed => firstString
case event: InfoProvided => firstString + " - " + event.message
case event: MarkupProvided => firstString + " - " + event.text
case event: SuiteStarting => firstAndSecondString(firstString, event.suiteName)
case event: SuiteCompleted => firstAndSecondString(firstString, event.suiteName)
case event: SuiteAborted => firstAndSecondString(firstString, event.suiteName)
case event: TestStarting => firstAndSecondString(firstString, suiteAndTestName(event.suiteName, event.testName))
case event: TestPending => firstAndSecondString(firstString, suiteAndTestName(event.suiteName, event.testName))
case event: TestIgnored => firstAndSecondString(firstString, suiteAndTestName(event.suiteName, event.testName))
case event: TestSucceeded => firstAndSecondString(firstString, suiteAndTestName(event.suiteName, event.testName))
case event: TestFailed => firstAndSecondString(firstString, suiteAndTestName(event.suiteName, event.testName))
case event: TestCanceled => firstAndSecondString(firstString, suiteAndTestName(event.suiteName, event.testName))
}
}
}
}
private[tools] object EventHolder {
def suiteAndTestName(suiteName: String, testName: String) = suiteName + ": " + testName
}