org.scalatest.Suite.scala Maven / Gradle / Ivy
Show all versions of scalatest_2.9.0-1 Show documentation
/* * Copyright 2001-2012 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 import java.lang.annotation._ import java.io.Serializable import java.lang.reflect.Constructor import java.lang.reflect.InvocationTargetException import java.lang.reflect.Method import java.lang.reflect.Modifier import java.nio.charset.CoderMalfunctionError import javax.xml.parsers.FactoryConfigurationError import javax.xml.transform.TransformerFactoryConfigurationError import Suite.simpleNameForTest import Suite.parseSimpleName import Suite.stripDollars import Suite.formatterForSuiteStarting import Suite.formatterForSuiteCompleted import Suite.checkForPublicNoArgConstructor import Suite.checkChosenStyles import Suite.formatterForSuiteAborted import Suite.anErrorThatShouldCauseAnAbort import Suite.getSimpleNameOfAnObjectsClass import Suite.takesInformer import Suite.takesCommunicator import Suite.isTestMethodGoodies import Suite.testMethodTakesAnInformer import scala.collection.immutable.TreeSet import Suite.getIndentedTextForTest import Suite.getEscapedIndentedTextForTest import Suite.autoTagClassAnnotations import org.scalatest.events._ import org.scalatest.tools.StandardOutReporter import Suite.getMessageForException import Suite.reportTestStarting import Suite.reportTestIgnored import Suite.reportTestSucceeded import Suite.reportTestPending import Suite.reportInfoProvided import Suite.createInfoProvided import Suite.createMarkupProvided import scala.reflect.NameTransformer import tools.SuiteDiscoveryHelper import tools.Runner import exceptions.StackDepthExceptionHelper.getStackDepthFun import exceptions._ import exceptions._ import collection.mutable.ListBuffer /* *
. * */ def testNames: Set[String] = { def isTestMethod(m: Method) = { // Factored out to share code with fixture.Suite.testNames val (isInstanceMethod, simpleName, firstFour, paramTypes, hasNoParams, isTestNames, isTestTags, isTestDataFor) = isTestMethodGoodies(m) isInstanceMethod && (firstFour == "test") && !isTestDataFor && ((hasNoParams && !isTestNames && !isTestTags) || takesInformer(m) || takesCommunicator(m)) } val testNameArray = for (m <- getClass.getMethods; if isTestMethod(m)) yield if (takesInformer(m)) m.getName + InformerInParens else m.getName val result = TreeSet.empty[String](EncodedOrdering) ++ testNameArray if (result.size != testNameArray.length) { throw new NotAllowedException("Howdy", 0) } result } /* Old style method names will have (Informer) at the end still, but new ones will not. This method will find the one without a Rep if the same name is used with and without a Rep. */ private[scalatest] def getMethodForTestName(testName: String) = try { getClass.getMethod( simpleNameForTest(testName), (if (testMethodTakesAnInformer(testName)) Array(classOf[Informer]) else new Array[Class[_]](0)): _* ) } catch { case e: NoSuchMethodException => // Try (Rep) on the end try { getClass.getMethod(simpleNameForTest(testName), classOf[Rep]) } catch { case e: NoSuchMethodException => throw new IllegalArgumentException(Resources("testNotFound", testName)) } case e: Throwable => throw e } /** * Run the passed test function in the context of a fixture established by this method. * *Using
* *info
andmarkup
* One of the parameters to
* *Suite
'srun
method is aReporter
, which * will collect and report information about the running suite of tests. * Information about suites and tests that were run, whether tests succeeded or failed, * and tests that were ignored will be passed to theReporter
as the suite runs. * Most often the reporting done by default will be sufficient, but * occasionally you may wish to provide custom information to theReporter
from a test. * For this purpose, anInformer
that will forward information * to the currentReporter
is provided via theinfo
parameterless method. * You can pass the extra information to theInformer
via itsapply
method. * TheInformer
will then pass the information to theReporter
via anInfoProvided
event. * Here's an example that shows both a direct use as well as an indirect use through the methods * ofGivenWhenThen
: ** package org.scalatest.examples.suite.info * * import collection.mutable * import org.scalatest._ * * class SetSuite extends Suite with GivenWhenThen { * * def `test: an element can be added to an empty mutable Set` { * * given("an empty mutable Set") * val set = mutable.Set.empty[String] * * when("an element is added") * set += "clarity" * * then("the Set should have size 1") * assert(set.size === 1) * * and("the Set should contain the added element") * assert(set.contains("clarity")) * * info("That's all folks!") * } * } ** * If you run thisSuite
from the interpreter, you will see the messages * included in the output: * ** scala> new SetSuite execute * SetSuite: * - an element can be added to an empty mutable Set * + Given an empty mutable Set * + When an element is added * + Then the Set should have size 1 * + And the Set should contain the added element * + That's all folks! *
* ** Trait
* -------------- *Suite
also carries aDocumenter
namedmarkup
, which * you can use to transmit markup text to theReporter
. *Assertions and
* *=
=
=
* Inside test methods in a
* *Suite
, you can write assertions by invokingassert
and passing in aBoolean
expression, * such as: ** val left = 2 * val right = 1 * assert(left == right) ** ** If the passed expression is
* *true
,assert
will return normally. Iffalse
, *assert
will complete abruptly with aTestFailedException
. This exception is usually not caught * by the test method, which means the test method itself will complete abruptly by throwing theTestFailedException
. Any * test method that completes abruptly with an exception is considered a failed * test. A test method that returns normally is considered a successful test. ** If you pass a
* *Boolean
expression toassert
, a failed assertion will be reported, but without * reporting the left and right values. You can alternatively encode these values in aString
passed as * a second argument toassert
, as in: ** val left = 2 * val right = 1 * assert(left == right, left + " did not equal " + right) ** ** Using this form of
* *assert
, the failure report will include the left and right values, * helping you debug the problem. However, ScalaTest provides the===
operator to make this easier. * (The===
operator is defined in traitAssertions
which traitSuite
extends.) * You use it like this: ** val left = 2 * val right = 1 * assert(left === right) ** ** Because you use
* *===
here instead of==
, the failure report will include the left * and right values. For example, the detail message in the thrownTestFailedException
from theassert
* shown previously will include, "2 did not equal 1". * From this message you will know that the operand on the left had the value 2, and the operand on the right had the value 1. ** If you're familiar with JUnit, you would use
* *===
* in a ScalaTestSuite
where you'd useassertEquals
in a JUnitTestCase
. * The===
operator is made possible by an implicit conversion fromAny
* toEqualizer
. If you're curious to understand the mechanics, see the documentation for *Equalizer
and theconvertToEqualizer
method. *Expected results
* * Although===
provides a natural, readable extension to Scala'sassert
mechanism, * as the operands become lengthy, the code becomes less readable. In addition, the===
comparison * doesn't distinguish between actual and expected values. The operands are just calledleft
andright
, * because if one were namedexpected
and the otheractual
, it would be difficult for people to * remember which was which. To help with these limitations of assertions,Suite
includes a method calledexpectResult
that * can be used as an alternative toassert
with===
. To useexpectResult
, you place * the expected value in parentheses afterexpectResult
, followed by curly braces containing code * that should result in the expected value. For example: * ** val a = 5 * val b = 2 * expectResult(2) { * a - b * } ** ** In this case, the expected value is
* *2
, and the code being tested isa - b
. This expectation will fail, and * the detail message in theTestFailedException
will read, "Expected 2, but got 3." *Intercepted exceptions
* ** Sometimes you need to test whether a method throws an expected exception under certain circumstances, such * as when invalid arguments are passed to the method. You can do this in the JUnit style, like this: *
* ** val s = "hi" * try { * s.charAt(-1) * fail() * } * catch { * case _: IndexOutOfBoundsException => // Expected, so continue * } ** ** If
* *charAt
throwsIndexOutOfBoundsException
as expected, control will transfer * to the catch case, which does nothing. If, however,charAt
fails to throw an exception, * the next statement,fail()
, will be executed. Thefail
method always completes abruptly with * aTestFailedException
, thereby signaling a failed test. ** To make this common use case easier to express and read, ScalaTest provides an
* *intercept
* method. You use it like this: ** val s = "hi" * intercept[IndexOutOfBoundsException] { * s.charAt(-1) * } ** ** This code behaves much like the previous example. If
* *charAt
throws an instance ofIndexOutOfBoundsException
, *intercept
will return that exception. But ifcharAt
completes normally, or throws a different * exception,intercept
will complete abruptly with aTestFailedException
. Theintercept
method returns the * caught exception so that you can inspect it further if you wish, for example, to ensure that data contained inside * the exception has the expected values. Here's an example: ** val s = "hi" * val caught = * intercept[IndexOutOfBoundsException] { * s.charAt(-1) * } * assert(caught.getMessage === "String index out of range: -1") ** *Using matchers and other assertions
* ** ScalaTest also supports another style of assertions via its matchers DSL. By mixing in * trait
* *ShouldMatchers
, you can * write suites that look like: ** package org.scalatest.examples.suite.matchers * * import org.scalatest._ * * class SetSuite extends Suite with ShouldMatchers { * * def `test: an empty Set should have size 0` { * Set.empty.size should equal (0) * } * * def `test: invoking head on an empty Set should produce NoSuchElementException` { * evaluating { Set.empty.head } should produce [NoSuchElementException] * } * } ** *If you prefer the word "
* *must
" to the word "should
," you can alternatively mix in * traitMustMatchers
. ** If you are comfortable with assertion mechanisms from other test frameworks, chances * are you can use them with ScalaTest. Any assertion mechanism that indicates a failure with an exception * can be used as is with ScalaTest. For example, to use the
*/ /** * A suite of tests. AassertEquals
* methods provided by JUnit or TestNG, simply import them and use them. (You will of course need * to include the relevant JAR file for the framework whose assertions you want to use on either the * classpath or runpath when you run your tests.) *Suite
instance encapsulates a conceptual * suite (i.e., a collection) of tests. * ** This trait provides an interface composed of "lifecycle methods" that allow suites of tests to be run. * Its implementation enables a default way of writing and executing tests. Subtraits and subclasses can * override
* *Suite
's lifecycle methods to enable other ways of writing and executing tests. ** Prior to ScalaTest 2.0.M4, trait
* *Suite
served two purposes: 1) It served as the base * class of ScalaTest's family of style traits, and 2) It was itself a style trait in which tests are methods. * Although it will continue to serve its first purpose, it has been deprecated as a style trait. Pre-existing code * that usedSuite
as a style trait to define tests as methods will continue to work during the * deprecation period, but will generate a deprecation warning. Please change all such uses ofSuite
* to use traitSpec
instead. *Nested suites
* ** A
* *Suite
can refer to a collection of otherSuite
s, * which are called nestedSuite
s. Those nestedSuite
s can in turn have * their own nestedSuite
s, and so on. Large test suites can be organized, therefore, as a tree of * nestedSuite
s. * This trait'srun
method, in addition to invoking its * test methods, invokesrun
on each of its nestedSuite
s. ** A
* *List
of aSuite
's nestedSuite
s can be obtained by invoking its *nestedSuites
method. If you wish to create aSuite
that serves as a * container for nestedSuite
s, whether or not it has test methods of its own, simply overridenestedSuites
* to return aList
of the nestedSuite
s. Because this is a common use case, ScalaTest provides * a convenienceSuites
class, which takes a variable number of nestedSuite
s as constructor * parameters. Here's an example: ** package org.scalatest.examples.suite.nested * * import org.scalatest._ * * class ASuite extends FunSuite { * test("A should have ASCII value 41 hex") { * assert('A' === 0x41) * } * test("a should have ASCII value 61 hex") { * assert('a' === 0x61) * } * } * class BSuite extends FunSuite { * test("B should have ASCII value 42 hex") { * assert('B' === 0x42) * } * test("b should have ASCII value 62 hex") { * assert('b' === 0x62) * } * } * class CSuite extends FunSuite { * test("C should have ASCII value 43 hex") { * assert('C' === 0x43) * } * test("c should have ASCII value 63 hex") { * assert('c' === 0x63) * } * } * * class ASCIISuite extends Suites( * new ASuite, * new BSuite, * new CSuite * ) ** ** If you now run
* *ASCIISuite
: ** scala> new ASCIISuite execute ** ** You will see reports printed to the standard output that indicate the nested * suites—
* *ASuite
,BSuite
, and *CSuite
—were run: ** ASCIISuite: * ASuite: * - A should have ASCII value 41 hex * - a should have ASCII value 61 hex * BSuite: * - B should have ASCII value 42 hex * - b should have ASCII value 62 hex * CSuite: * - C should have ASCII value 43 hex * - c should have ASCII value 63 hex *
* ** Note that
* *Runner
can discoverSuite
s automatically, so you need not * necessarily define nestedSuites
explicitly. See the documentation * forRunner
for more information. *The config map
* ** In some cases you may need to pass information to a suite of tests. * For example, perhaps a suite of tests needs to grab information from a file, and you want * to be able to specify a different filename during different runs. You can accomplish this in ScalaTest by passing * the filename in a config map of key-value pairs, which is passed to
* *run
as aMap[String, Any]
. * The values in the config map are called "config objects," because they can be used to configure * suites, reporters, and tests. ** You can specify a string config object is via the ScalaTest
* *Runner
, either via the command line * or ScalaTest's ant task. * (See the documentation for Runner for information on how to specify * config objects on the command line.) * The config map is passed torun
,runNestedSuites
,runTests
, andrunTest
, * so one way to access it in your suite is to override one of those methods. If you need to use the config map inside your tests, you * can access it from theNoArgTest
passed towithFixture
, or theOneArgTest
passed to *withFixture
in the traits in theorg.scalatest.fixture
package. (See the * documentation forfixture.Suite
* for instructions on how to access the config map in tests.) *Executing suites in parallel
* ** The
* * *run
method takes as one of its parameters an optionalDistributor
. If * aDistributor
is passed in, this trait's implementation ofrun
puts its nested *Suite
s into the distributor rather than executing them directly. The caller ofrun
* is responsible for ensuring that some entity runs theSuite
s placed into the * distributor. The-P
command line parameter toRunner
, for example, will cause *Suite
s put into theDistributor
to be run in parallel via a pool of threads. * If you wish to execute the tests themselves in parallel, mix inParallelTestExecution
. *Treatment of
* *java.lang.Error
s* The Javadoc documentation for
* *java.lang.Error
states: ** An* *Error
is a subclass ofThrowable
that indicates serious problems that a reasonable application should not try to catch. Most * such errors are abnormal conditions. ** Because
* *Error
s are used to denote serious errors, traitSuite
and its subtypes in the ScalaTest API do not always treat a test * that completes abruptly with anError
as a test failure, but sometimes as an indication that serious problems * have arisen that should cause the run to abort. For example, if a test completes abruptly with anOutOfMemoryError
, * it will not be reported as a test failure, but will instead cause the run to abort. Because not everyone usesError
s only to represent serious * problems, however, ScalaTest only behaves this way for the following exception types (and their subclasses): **
* *- *
java.lang.annotation.AnnotationFormatError
- *
java.awt.AWTError
- *
java.nio.charset.CoderMalfunctionError
- *
javax.xml.parsers.FactoryConfigurationError
- *
java.lang.LinkageError
- *
java.lang.ThreadDeath
- *
javax.xml.transform.TransformerFactoryConfigurationError
- *
java.lang.VirtualMachineError
* The previous list includes all
* *Error
s that exist as part of Java 1.5 API, excludingjava.lang.AssertionError
. ScalaTest * does treat a thrownAssertionError
as an indication of a test failure. In addition, any otherError
that is not an instance of a * type mentioned in the previous list will be caught by theSuite
traits in the ScalaTest API and reported as the cause of a test failure. ** Although trait
* *Suite
and all its subtypes in the ScalaTest API consistently behave this way with regard toError
s, * this behavior is not required by the contract ofSuite
. Subclasses and subtraits that you define, for example, may treat all *Error
s as test failures, or indicate errors in some other way that has nothing to do with exceptions. *Extensibility
* ** Trait
* *Suite
provides default implementations of its methods that should * be sufficient for most applications, but many methods can be overridden when desired. Here's * a summary of the methods that are intended to be overridden: **
* *- *
run
- override this method to define custom ways to run suites of * tests.- *
runNestedSuites
- override this method to define custom ways to run nested suites.- *
runTests
- override this method to define custom ways to run a suite's tests.- *
runTest
- override this method to define custom ways to run a single named test.- *
testNames
- override this method to specify theSuite
's test names in a custom way.- *
tags
- override this method to specify theSuite
's test tags in a custom way.- *
nestedSuites
- override this method to specify theSuite
's nestedSuite
s in a custom way.- *
suiteName
- override this method to specify theSuite
's name in a custom way.- *
expectedTestCount
- override this method to count thisSuite
's expected tests in a custom way.* For example, this trait's implementation of
* *testNames
performs reflection to discover methods starting withtest
, * and places these in aSet
whose iterator returns the names in alphabetical order. If you wish to run tests in a different * order in a particularSuite
, perhaps because a test namedtestAlpha
can only succeed after a test named *testBeta
has run, you can overridetestNames
so that it returns aSet
whose iterator returns *testBeta
beforetestAlpha
. (This trait's implementation ofrun
will invoke tests * in the order they come out of thetestNames
Set
iterator.) ** Alternatively, you may not like starting your test methods with
* *test
, and prefer using@Test
annotations in * the style of Java's JUnit 4 or TestNG. If so, you can overridetestNames
to discover tests using either of these two APIs *@Test
annotations, or one of your own invention. (This is in fact * howorg.scalatest.junit.JUnitSuite
andorg.scalatest.testng.TestNGSuite
work.) ** Moreover, test in ScalaTest does not necessarily mean test method. A test can be anything that can be given a name, * that starts and either succeeds or fails, and can be ignored. In
* *org.scalatest.FunSuite
, for example, tests are represented * as function values. This * approach might look foreign to JUnit users, but may feel more natural to programmers with a functional programming background. * To facilitate this style of writing tests,FunSuite
overridestestNames
,runTest
, andrun
such that you can * define tests as function values. ** You can also model existing JUnit 3, JUnit 4, or TestNG tests as suites of tests, thereby incorporating tests written in Java into a ScalaTest suite. * The "wrapper" classes in packages
* * @author Bill Venners */ @Finders(Array("org.scalatest.finders.MethodFinder")) trait Suite extends Assertions with AbstractSuite with Serializable { thisSuite => import Suite.TestMethodPrefix, Suite.InformerInParens, Suite.IgnoreAnnotation /** * A test function taking no arguments, which also provides a test name and config map. * *org.scalatest.junit
andorg.scalatest.testng
exist to make this easy. * No matter what legacy tests you may have, it is likely you can create or use an existingSuite
subclass that allows you to model those tests * as ScalaTest suites and tests and incorporate them into a ScalaTest suite. You can then write new tests in Scala and continue supporting * older tests in Java. **
*/ protected trait NoArgTest extends (() => Unit) with TestData { /** * Runs the code of the test. */ def apply() } /** * An immutableSuite
's implementation ofrunTest
passes instances of this trait * towithFixture
for every test method it executes. It invokeswithFixture
* for every test, including test methods that take anInformer
. For the latter case, * theInformer
to pass to the test method is already contained inside the *NoArgTest
instance passed towithFixture
. *IndexedSeq
of thisSuite
object's nestedSuite
s. If thisSuite
contains no nestedSuite
s, * this method returns an emptyIndexedSeq
. This trait's implementation of this method returns an emptyList
. */ def nestedSuites: collection.immutable.IndexedSeq[Suite] = Vector.empty /** * Executes one or more tests in thisSuite
, printing results to the standard output. * ** This method invokes
* *run
on itself, passing in values that can be configured via the parameters to this * method, all of which have default values. This behavior is convenient when working with ScalaTest in the Scala interpreter. * Here's a summary of this method's parameters and how you can use them: ** The
* *testName
parameter ** If you leave
* *testName
at its default value (ofnull
), this method will passNone
to * thetestName
parameter ofrun
, and as a result all the tests in this suite will be executed. If you * specify atestName
, this method will passSome(testName)
torun
, and only that test * will be run. Thus to run all tests in a suite from the Scala interpreter, you can write: ** scala> new ExampleSuite execute ** ** (The above syntax actually invokes the overloaded parameterless form of
* *execute
, which calls this form with its default parameter values.) * To run just the test named"my favorite test"
in a suite from the Scala interpreter, you would write: ** scala> new ExampleSuite execute ("my favorite test") ** ** Or: *
* ** scala> new ExampleSuite execute (testName = "my favorite test") ** ** The
* *configMap
parameter ** If you provide a value for the
* *configMap
parameter, this method will pass it torun
. If not, the default value * of an emptyMap
will be passed. For more information on how to use a config map to configure your test suites, see * the config map section in the main documentation for this trait. Here's an example in which you configure * a run with the name of an input file: ** scala> new ExampleSuite execute (configMap = Map("inputFileName" -> "in.txt") ** ** The
* *color
parameter ** If you leave the
* *color
parameter unspecified, this method will configure the reporter it passes torun
to print * to the standard output in color (via ansi escape characters). If you don't want color output, specify false forcolor
, like this: ** scala> new ExampleSuite execute (color = false) ** ** The
* *durations
parameter ** If you leave the
* *durations
parameter unspecified, this method will configure the reporter it passes torun
to * not print durations for tests and suites to the standard output. If you want durations printed, specify true fordurations
, * like this: ** scala> new ExampleSuite execute (durations = true) ** ** The
* *shortstacks
andfullstacks
parameters ** If you leave both the
* *shortstacks
andfullstacks
parameters unspecified, this method will configure the reporter * it passes torun
to not print stack traces for failed tests if it has a stack depth that identifies the offending * line of test code. If you prefer a short stack trace (10 to 15 stack frames) to be printed with any test failure, specify true for *shortstacks
: ** scala> new ExampleSuite execute (shortstacks = true) ** ** For full stack traces, set
* *fullstacks
to true: ** scala> new ExampleSuite execute (fullstacks = true) ** ** If you specify true for both
* *shortstacks
andfullstacks
, you'll get full stack traces. ** The
* *stats
parameter ** If you leave the
* *stats
parameter unspecified, this method will not fireRunStarting
and eitherRunCompleted
* orRunAborted
events to the reporter it passes torun
. * If you specify true forstats
, this method will fire the run events to the reporter, and the reporter will print the * expected test count before the run, and various statistics after, including the number of suites completed and number of tests that * succeeded, failed, were ignored or marked pending. Here's how you get the stats: ** scala> new ExampleSuite execute (stats = true) ** * ** To summarize, this method will pass to
*run
: **
* *testName
-None
if this method'stestName
parameter is left at its default value ofnull
, elseSome(testName)
. *- *
reporter
- a reporter that prints to the standard output- *
stopper
- aStopper
whoseapply
method always returnsfalse
- *
filter
- aFilter
constructed withNone
fortagsToInclude
andSet()
* fortagsToExclude
- *
configMap
- theconfigMap
passed to this method- *
distributor
-None
- *
tracker
- a newTracker
* Note: In ScalaTest, the terms "execute" and "run" basically mean the same thing and * can be used interchangably. The reason this method isn't named
* *run
is that it takes advantage of * default arguments, and you can't mix overloaded methods and default arguments in Scala. (If namedrun
, * this method would have the same name but different arguments than the mainrun
method that * takes seven arguments. Thus it would overload and couldn't be used with default argument values.) ** Design note: This method has two "features" that may seem unidiomatic. First, the default value of
* *testName
isnull
. * Normally in Scala the type oftestName
would beOption[String]
and the default value would * beNone
, as it is in this trait'srun
method. Thenull
value is used here for two reasons. First, in * ScalaTest 1.5,execute
was changed from four overloaded methods to one method with default values, taking advantage of * the default and named parameters feature introduced in Scala 2.8. * To not break existing source code,testName
needed to have typeString
, as it did in two of the overloaded *execute
methods prior to 1.5. The other reason is thatexecute
has always been designed to be called primarily * from an interpeter environment, such as the Scala REPL (Read-Evaluate-Print-Loop). In an interpreter environment, minimizing keystrokes is king. * AString
type with anull
default value lets users typesuite.execute("my test name")
rather than *suite.execute(Some("my test name"))
, saving several keystrokes. ** The second non-idiomatic feature is that
* * @param testName the name of one test to run. * @param configMap ashortstacks
andfullstacks
are all lower case rather than * camel case. This is done to be consistent with theShell
, which also uses those forms. The reason * lower case is used in theShell
is to save keystrokes in an interpreter environment. Most Unix commands, for * example, are all lower case, making them easier and quicker to type. In the ScalaTest *Shell
, methods likeshortstacks
,fullstacks
, andnostats
, etc., are * designed to be all lower case so they feel more like shell commands than methods. *Map
of key-value pairs that can be used by the executingSuite
of tests. * @param color a boolean that configures whether output is printed in color * @param durations a boolean that configures whether test and suite durations are printed to the standard output * @param shortstacks a boolean that configures whether short stack traces should be printed for test failures * @param fullstacks a boolean that configures whether full stack traces should be printed for test failures * @param stats a boolean that configures whether test and suite statistics are printed to the standard output * * @throws NullPointerException if the passedconfigMap
parameter isnull
. * @throws IllegalArgumentException iftestName
is defined, but no test with the specified test name * exists in thisSuite
*/ final def execute( testName: String = null, configMap: Map[String, Any] = Map(), color: Boolean = true, durations: Boolean = false, shortstacks: Boolean = false, fullstacks: Boolean = false, stats: Boolean = false ) { if (configMap == null) throw new NullPointerException("configMap was null") val SelectedTag = "Selected" val SelectedSet = Set(SelectedTag) val desiredTests: Set[String] = if (testName == null) Set.empty else { testNames.filter { s => s.indexOf(testName) >= 0 || NameTransformer.decode(s).indexOf(testName) >= 0 } } if (testName != null && desiredTests.isEmpty) throw new IllegalArgumentException(Resources("testNotFound", testName)) val dispatch = new DispatchReporter(List(new StandardOutReporter(durations, color, shortstacks, fullstacks, false))) val tracker = new Tracker val filter = if (testName == null) Filter() else { val taggedTests: Map[String, Set[String]] = desiredTests.map(_ -> SelectedSet).toMap Filter( tagsToInclude = Some(SelectedSet), excludeNestedSuites = true, dynaTags = DynaTags(Map.empty, Map(suiteId -> taggedTests)) ) } val runStartTime = System.currentTimeMillis if (stats) dispatch(RunStarting(tracker.nextOrdinal(), expectedTestCount(filter), configMap)) val suiteStartTime = System.currentTimeMillis def dispatchSuiteAborted(e: Throwable) { val eMessage = e.getMessage val rawString = if (eMessage != null && eMessage.length > 0) Resources("runOnSuiteException") else Resources("runOnSuiteExceptionWithMessage", eMessage) val formatter = formatterForSuiteAborted(thisSuite, rawString) val duration = System.currentTimeMillis - suiteStartTime dispatch(SuiteAborted(tracker.nextOrdinal(), rawString, thisSuite.suiteName, thisSuite.suiteId, Some(thisSuite.getClass.getName), Some(e), Some(duration), formatter, Some(SeeStackDepthException))) } try { val formatter = formatterForSuiteStarting(thisSuite) dispatch(SuiteStarting(tracker.nextOrdinal(), thisSuite.suiteName, thisSuite.suiteId, Some(thisSuite.getClass.getName), formatter, Some(getTopOfClass))) run( None, Args(dispatch, Stopper.default, filter, configMap, None, tracker, Set.empty) ) val suiteCompletedFormatter = formatterForSuiteCompleted(thisSuite) val duration = System.currentTimeMillis - suiteStartTime dispatch(SuiteCompleted(tracker.nextOrdinal(), thisSuite.suiteName, thisSuite.suiteId, Some(thisSuite.getClass.getName), Some(duration), suiteCompletedFormatter, Some(getTopOfClass))) if (stats) { val duration = System.currentTimeMillis - runStartTime dispatch(RunCompleted(tracker.nextOrdinal(), Some(duration))) } } catch { case e: InstantiationException => dispatchSuiteAborted(e) dispatch(RunAborted(tracker.nextOrdinal(), Resources("cannotInstantiateSuite", e.getMessage), Some(e), Some(System.currentTimeMillis - runStartTime))) case e: IllegalAccessException => dispatchSuiteAborted(e) dispatch(RunAborted(tracker.nextOrdinal(), Resources("cannotInstantiateSuite", e.getMessage), Some(e), Some(System.currentTimeMillis - runStartTime))) case e: NoClassDefFoundError => dispatchSuiteAborted(e) dispatch(RunAborted(tracker.nextOrdinal(), Resources("cannotLoadClass", e.getMessage), Some(e), Some(System.currentTimeMillis - runStartTime))) case e: Throwable => dispatchSuiteAborted(e) dispatch(RunAborted(tracker.nextOrdinal(), Resources.bigProblems(e), Some(e), Some(System.currentTimeMillis - runStartTime))) } finally { dispatch.dispatchDisposeAndWaitUntilDone() } } /** * Executes thisSuite
, printing results to the standard output. * ** This method, which simply invokes the other overloaded form of
* *execute
with default parameter values, * is intended for use only as a mini-DSL for the Scala interpreter. It allows you to execute aSuite
in the * interpreter with a minimum of finger typing: ** scala> new SetSpec execute * An empty Set * - should have size 0 * - should produce NoSuchElementException when head is invoked !!! IGNORED !!! ** ** If you do ever want to invoke
* *execute
outside the Scala interpreter, it is best style to invoke it with * empty parens to indicate it has a side effect, like this: ** // Use empty parens form in regular code (outside the Scala interpreter) * (new ExampleSuite).execute() **/ final def execute { execute() } /** * AMap
whose keys areString
tag names with which tests in thisSuite
are marked, and * whose values are theSet
of test names marked with each tag. If thisSuite
contains no tags, this * method returns an emptyMap
. * ** This trait's implementation of this method uses Java reflection to discover any Java annotations attached to its test methods. The * fully qualified name of each unique annotation that extends
* *TagAnnotation
is considered a tag. This trait's * implementation of this method, therefore, places one key/value pair into to the *Map
for each unique tag annotation name discovered through reflection. The mapped value for each tag name key will contain * the test method name, as provided via thetestNames
method. ** In addition to test methods annotations, this trait's implementation will also auto-tag test methods with class level annotations. * For example, if you annotate @Ignore at the class level, all test methods in the class will be auto-annotated with @Ignore. *
* ** Subclasses may override this method to define and/or discover tags in a custom manner, but overriding method implementations * should never return an empty
*/ def tags: Map[String, Set[String]] = { val testNameSet = testNames val testTags = Map() ++ (for (testName <- testNameSet; if !getTags(testName).isEmpty) yield testName -> (Set() ++ getTags(testName))) autoTagClassAnnotations(testTags, this) } private def getTags(testName: String) = for { a <- getMethodForTestName(testName).getDeclaredAnnotations annotationClass = a.annotationType if annotationClass.isAnnotationPresent(classOf[TagAnnotation]) } yield annotationClass.getName /** * ASet
as a value. If a tag has no tests, its name should not appear as a key in the * returnedMap
. *Set
of test names. If thisSuite
contains no tests, this method returns an emptySet
. * **
* *Suite
has been deprecated as a style trait. During the deprecation period, the following behavior will continue * to work as before, but will go away at the conclusion of the deprecation period: * This trait's implementation of this method uses Java reflection to discover all public methods whose name starts with"test"
, * which take either nothing or a singleInformer
as parameters. For each discovered test method, it assigns a test name * comprised of just the method name if the method takes no parameters, or the method name plus(Informer)
if the * method takes aInformer
. Here are a few method signatures and the names that this trait's implementation assigns them: ** def testCat() {} // test name: "testCat" * def testCat(Informer) {} // test name: "testCat(Informer)" * def testDog() {} // test name: "testDog" * def testDog(Informer) {} // test name: "testDog(Informer)" * def test() {} // test name: "test" * def test(Informer) {} // test name: "test(Informer)" ** ** This trait's implementation of this method returns an immutable
* *Set
of all such names, excluding the name *testNames
. The iterator obtained by invokingelements
on this * returnedSet
will produce the test names in their natural order, as determined byString
's *compareTo
method. ** This trait's implementation of
* *runTests
invokes this method * and callsrunTest
for each test name in the order they appear in the returnedSet
's iterator. * Although this trait's implementation of this method returns aSet
whose iterator producesString
* test names in a well-defined order, the contract of this method does not required a defined order. Subclasses are free to * override this method and return test names in an undefined order, or in a defined order that's different fromString
's * natural order. ** Subclasses may override this method to produce test names in a custom manner. One potential reason to override
* *testNames
is * to run tests in a different order, for example, to ensure that tests that depend on other tests are run after those other tests. * Another potential reason to override is allow tests to be defined in a different manner, such as methods annotated@Test
annotations * (as is done inJUnitSuite
andTestNGSuite
) or test functions registered during construction (as is * done inFunSuite
andFunSpec
). ** In ScalaTest's event model, a test may be surrounded by “scopes.” Each test and scope is associated with string of text. * A test's name is concatenation of the text of any surrounding scopes followed by the text provided with the test * itself, after each text element has been trimmed and one space inserted between each component. Here's an example: *
* ** package org.scalatest.examples.freespec * * import org.scalatest.FreeSpec * * class SetSpec extends FreeSpec { * * "A Set" - { * "when empty" - { * "should have size 0" in { * assert(Set.empty.size === 0) * } * * "should produce NoSuchElementException when head is invoked" in { * intercept[NoSuchElementException] { * Set.empty.head * } * } * } * } * } ** ** The above
FreeSpec
contains two tests, both nested inside the same two scopes. The outermost scope names * the subject,A Set
. The nested scope qualifies the subject withwhen empty
. Inside that * scope are the two tests. The text of the tests are: ** *
*
* *- *
should have size 0
- *
should produce NoSuchElementException when head is invoked
* Therefore, the names of these two tests are: *
* **
* *- *
A Stack when empty should have size 0
- *
A Stack when empty should produce NoSuchElementException when head is invoked
* Note that because the component scope and test text strings are trimmed, any leading or trailing space will be dropped * before they are strung together to form the test name, with each trimmed component separated by a space. If the scopes * in the above example had text
" A Set "
and" when empty "
, and the first test had text *" should have size 0 "
, its test name would still be the same, "A Set when empty should have size 0"* This method should set up the fixture needed by the tests of the * current suite, invoke the test function, and if needed, perform any clean * up needed after the test completes. Because the
* *NoArgTest
function * passed to this method takes no parameters, preparing the fixture will require * side effects, such as reassigning instancevar
s in thisSuite
or initializing * a globally accessible external database. If you want to avoid reassigning instancevar
s * you can use fixture.Suite. ** This trait's implementation of
* *runTest
invokes this method for each test, passing * in aNoArgTest
whoseapply
method will execute the code of the test. ** This trait's implementation of this method simply invokes the passed
* * @param test the no-arg test function to run with a fixture */ protected def withFixture(test: NoArgTest) { test() } // Factored out to share this with fixture.Suite.runTest private[scalatest] def getSuiteRunTestGoodies(stopper: Stopper, reporter: Reporter, testName: String) = { val (stopRequested, report, testStartTime) = getRunTestGoodies(stopper, reporter, testName) val method = getMethodForTestName(testName) (stopRequested, report, method, testStartTime) } // Sharing this with FunSuite and fixture.FunSuite as well as Suite and fixture.Suite private[scalatest] def getRunTestGoodies(stopper: Stopper, reporter: Reporter, testName: String) = { val stopRequested = stopper val report = wrapReporterIfNecessary(reporter) val testStartTime = System.currentTimeMillis (stopRequested, report, testStartTime) } /** * Run a test. * *NoArgTest
function. ** This trait's implementation uses Java reflection to invoke on this object the test method identified by the passed
* *testName
. ** Implementations of this method are responsible for ensuring a
* * @param testName the name of one test to run. * @param args theTestStarting
event * is fired to theReporter
before executing any test, and eitherTestSucceeded
, *TestFailed
, orTestPending
after executing any nested *Suite
. (If a test is marked with theorg.scalatest.Ignore
tag, the *runTests
method is responsible for ensuring aTestIgnored
event is fired and that * thisrunTest
method is not invoked for that ignored test.) *Args
for this run * @return aStatus
object that indicates when the test started by this method has completed, and whether or not it failed . * * @throws NullPointerException if any oftestName
,reporter
,stopper
,configMap
* ortracker
isnull
. * @throws IllegalArgumentException iftestName
is defined, but no test with the specified test name * exists in thisSuite
*/ protected def runTest(testName: String, args: Args): Status = { if (testName == null) throw new NullPointerException("testName was null") if (args == null) throw new NullPointerException("args was null") import args._ val (stopRequested, report, method, testStartTime) = getSuiteRunTestGoodies(stopper, reporter, testName) reportTestStarting(this, report, tracker, testName, testName, rerunner, Some(getTopOfMethod(testName))) val formatter = getEscapedIndentedTextForTest(testName, 1, true) val messageRecorderForThisTest = new MessageRecorder(report) val informerForThisTest = MessageRecordingInformer( messageRecorderForThisTest, (message, payload, isConstructingThread, testWasPending, testWasCanceled, location) => createInfoProvided(thisSuite, report, tracker, Some(testName), message, payload, 2, location, isConstructingThread, true) ) // TODO: Was using reportInfoProvided here before, to double check with Bill for changing to markup provided. val documenterForThisTest = MessageRecordingDocumenter( messageRecorderForThisTest, (message, _, isConstructingThread, testWasPending, testWasCanceled, location) => createMarkupProvided(thisSuite, report, tracker, Some(testName), message, 2, location, isConstructingThread) // TODO: Need a test that fails because testWasCanceleed isn't being passed ) class RepImpl(val info: Informer, val markup: Documenter) extends Rep def testMethodTakesARep(method: Method): Boolean = { val paramTypes = method.getParameterTypes (paramTypes.size == 1) && (paramTypes(0) eq classOf[Rep]) } val argsArray: Array[Object] = if (testMethodTakesAnInformer(testName)) { Array(informerForThisTest) } else if (testMethodTakesARep(method)) { Array(new RepImpl(informerForThisTest, documenterForThisTest)) } else Array() try { val theConfigMap = configMap val testData = testDataFor(testName, theConfigMap) withFixture( new NoArgTest { val name = testData.name def apply() { method.invoke(thisSuite, argsArray: _*) } val configMap = testData.configMap val scopes = testData.scopes val text = testData.text val tags = testData.tags } ) val duration = System.currentTimeMillis - testStartTime reportTestSucceeded(this, report, tracker, testName, testName, messageRecorderForThisTest.recordedEvents(false, false), duration, formatter, rerunner, Some(getTopOfMethod(method))) SucceededStatus } catch { case ite: InvocationTargetException => val t = ite.getTargetException t match { case _: TestPendingException => val duration = System.currentTimeMillis - testStartTime // testWasPending = true so info's printed out in the finally clause show up yellow reportTestPending(this, report, tracker, testName, testName, messageRecorderForThisTest.recordedEvents(true, false), duration, formatter, Some(getTopOfMethod(method))) SucceededStatus case e: TestCanceledException => val duration = System.currentTimeMillis - testStartTime val message = getMessageForException(e) val formatter = getEscapedIndentedTextForTest(testName, 1, true) // testWasCanceled = true so info's printed out in the finally clause show up yellow report(TestCanceled(tracker.nextOrdinal(), message, thisSuite.suiteName, thisSuite.suiteId, Some(thisSuite.getClass.getName), testName, testName, messageRecorderForThisTest.recordedEvents(false, true), Some(e), Some(duration), Some(formatter), Some(TopOfMethod(thisSuite.getClass.getName, method.toGenericString())), rerunner)) SucceededStatus case e if !anErrorThatShouldCauseAnAbort(e) => val duration = System.currentTimeMillis - testStartTime handleFailedTest(t, testName, messageRecorderForThisTest.recordedEvents(false, false), report, tracker, getEscapedIndentedTextForTest(testName, 1, true), duration) FailedStatus case e => throw e } case e if !anErrorThatShouldCauseAnAbort(e) => val duration = System.currentTimeMillis - testStartTime handleFailedTest(e, testName, messageRecorderForThisTest.recordedEvents(false, false), report, tracker, getEscapedIndentedTextForTest(testName, 1, true), duration) FailedStatus case e: Throwable => throw e } } /** * Run zero to many of thisSuite
's tests. * ** This method takes a
* *testName
parameter that optionally specifies a test to invoke. * IftestName
is defined, this trait's implementation of this method * invokesrunTest
on this object, passing in: *
-
*
testName
- theString
value of thetestName
Option
passed * to this method
* reporter
- theReporter
passed to this method, or one that wraps and delegates to it
* stopper
- theStopper
passed to this method, or one that wraps and delegates to it
* configMap
- theconfigMap
Map
passed to this method, or one that wraps and delegates to it
*
* This method takes a Filter
, which encapsulates an optional Set
of tag names that should be included
* (tagsToInclude
) and a Set
that should be excluded (tagsToExclude
), when deciding which
* of this Suite
's tests to run.
* If tagsToInclude
is None
, all tests will be run
* except those those belonging to tags listed in the tagsToExclude
Set
. If tagsToInclude
is defined, only tests
* belonging to tags mentioned in the tagsToInclude
Set
, and not mentioned in the tagsToExclude
Set
* will be run. However, if testName
is defined, tagsToInclude
and tagsToExclude
are essentially ignored.
* Only if testName
is None
will tagsToInclude
and tagsToExclude
be consulted to
* determine which of the tests named in the testNames
Set
should be run. This trait's implementation
* behaves this way, and it is part of the general contract of this method, so all overridden forms of this method should behave
* this way as well. For more information on test tags, see the main documentation for this trait and for class Filter
.
* Note that this means that even if a test is marked as ignored, for example a test method in a Suite
annotated with
* org.scalatest.Ignore
, if that test name is passed as testName
to runTest
, it will be invoked
* despite the Ignore
annotation.
*
* If testName
is None
, this trait's implementation of this method
* invokes testNames
on this Suite
to get a Set
of names of tests to potentially run.
* (A testNames
value of None
essentially acts as a wildcard that means all tests in
* this Suite
that are selected by tagsToInclude
and tagsToExclude
should be run.)
* For each test in the testName
Set
, in the order
* they appear in the iterator obtained by invoking the elements
method on the Set
, this trait's implementation
* of this method checks whether the test should be run based on the Filter
.
* If so, this implementation invokes runTest
, passing in:
*
-
*
testName
- theString
name of the test to run (which will be one of the names in thetestNames
Set
)
* reporter
- theReporter
passed to this method, or one that wraps and delegates to it
* stopper
- theStopper
passed to this method, or one that wraps and delegates to it
* configMap
- theconfigMap
passed to this method, or one that wraps and delegates to it
*
* If a test is marked with the org.scalatest.Ignore
tag, implementations
* of this method are responsible for ensuring a TestIgnored
event is fired for that test
* and that runTest
is not called for that test.
*
None
, all relevant tests should be run.
* I.e., None
acts like a wildcard that means run all relevant tests in this Suite
.
* @param args the Args
for this run
* @return a Status
object that indicates when all tests started by this method have completed, and whether or not a failure occurred.
*
* @throws NullPointerException if any of the passed parameters is null
.
* @throws IllegalArgumentException if testName
is defined, but no test with the specified test name
* exists in this Suite
*/
protected def runTests(testName: Option[String], args: Args): Status = {
if (testName == null)
throw new NullPointerException("testName was null")
if (args == null)
throw new NullPointerException("args was null")
if (!this.isInstanceOf[Spec])
println("Unfortunately Suite has been deprecated as a style trait. Please use trait Spec instead.")
import args._
val theTestNames = testNames
if (theTestNames.size > 0)
checkChosenStyles(configMap, styleName)
val stopRequested = stopper
// Wrap any non-DispatchReporter, non-CatchReporter in a CatchReporter,
// so that exceptions are caught and transformed
// into error messages on the standard error stream.
val report = wrapReporterIfNecessary(reporter)
val newArgs = args.copy(reporter = report)
val statusBuffer = new ListBuffer[Status]()
// If a testName is passed to run, just run that, else run the tests returned
// by testNames.
testName match {
case Some(tn) =>
val (filterTest, ignoreTest) = filter(tn, tags, suiteId)
if (!filterTest) {
if (ignoreTest)
reportTestIgnored(thisSuite, report, tracker, tn, tn, getEscapedIndentedTextForTest(tn, 1, true), Some(getTopOfMethod(tn)))
else
statusBuffer += runTest(tn, newArgs)
}
case None =>
for ((tn, ignoreTest) <- filter(theTestNames, tags, suiteId)) {
if (!stopRequested()) {
if (ignoreTest)
reportTestIgnored(thisSuite, report, tracker, tn, tn, getEscapedIndentedTextForTest(tn, 1, true), Some(getTopOfMethod(tn)))
else
statusBuffer += runTest(tn, newArgs)
}
}
}
new CompositeStatus(Set.empty ++ statusBuffer)
}
/**
* Runs this suite of tests.
*
* If testName
is None
, this trait's implementation of this method
* calls these two methods on this object in this order:
-
*
runNestedSuites(report, stopper, tagsToInclude, tagsToExclude, configMap, distributor)
* runTests(testName, report, stopper, tagsToInclude, tagsToExclude, configMap)
*
* If testName
is defined, then this trait's implementation of this method
* calls runTests
, but does not call runNestedSuites
. This behavior
* is part of the contract of this method. Subclasses that override run
must take
* care not to call runNestedSuites
if testName
is defined. (The
* OneInstancePerTest
trait depends on this behavior, for example.)
*
* Subclasses and subtraits that override this run
method can implement them without
* invoking either the runTests
or runNestedSuites
methods, which
* are invoked by this trait's implementation of this method. It is recommended, but not required,
* that subclasses and subtraits that override run
in a way that does not
* invoke runNestedSuites
also override runNestedSuites
and make it
* final. Similarly it is recommended, but not required,
* that subclasses and subtraits that override run
in a way that does not
* invoke runTests
also override runTests
(and runTest
,
* which this trait's implementation of runTests
calls) and make it
* final. The implementation of these final methods can either invoke the superclass implementation
* of the method, or throw an UnsupportedOperationException
if appropriate. The
* reason for this recommendation is that ScalaTest includes several traits that override
* these methods to allow behavior to be mixed into a Suite
. For example, trait
* BeforeAndAfterEach
overrides runTests
s. In a Suite
* subclass that no longer invokes runTests
from run
, the
* BeforeAndAfterEach
trait is not applicable. Mixing it in would have no effect.
* By making runTests
final in such a Suite
subtrait, you make
* the attempt to mix BeforeAndAfterEach
into a subclass of your subtrait
* a compiler error. (It would fail to compile with a complaint that BeforeAndAfterEach
* is trying to override runTests
, which is a final method in your trait.)
*
None
, all relevant tests should be run.
* I.e., None
acts like a wildcard that means run all relevant tests in this Suite
.
* @param args the Args
for this run
* @return a Status
object that indicates when all tests and nested suites started by this method have completed, and whether or not a failure occurred.
*
* @throws NullPointerException if any passed parameter is null
.
* @throws IllegalArgumentException if testName
is defined, but no test with the specified test name
* exists in this Suite
*/
def run(testName: Option[String], args: Args): Status = {
if (testName == null)
throw new NullPointerException("testName was null")
if (args == null)
throw new NullPointerException("args was null")
import args._
val stopRequested = stopper
val report = wrapReporterIfNecessary(reporter)
val newArgs = args.copy(reporter = report)
testName match {
case None => runNestedSuites(newArgs)
case Some(_) =>
}
val status = runTests(testName, newArgs)
if (stopRequested()) {
val rawString = Resources("executeStopping")
report(InfoProvided(tracker.nextOrdinal(), rawString, Some(NameInfo(thisSuite.suiteName, thisSuite.suiteId, Some(thisSuite.getClass.getName), testName))))
}
status
}
// TODO see if I can take away the [scalatest] from the private
private[scalatest] def handleFailedTest(throwable: Throwable, testName: String, recordedEvents: collection.immutable.IndexedSeq[RecordableEvent], report: Reporter, tracker: Tracker, formatter: Formatter, duration: Long) {
val message = getMessageForException(throwable)
//val formatter = getEscapedIndentedTextForTest(testName, 1, true)
val payload =
throwable match {
case optPayload: PayloadField =>
optPayload.payload
case _ =>
None
}
report(TestFailed(tracker.nextOrdinal(), message, thisSuite.suiteName, thisSuite.suiteId, Some(thisSuite.getClass.getName), testName, testName, recordedEvents, Some(throwable), Some(duration), Some(formatter), Some(SeeStackDepthException), rerunner, payload))
}
/**
*
* Run zero to many of this Suite
's nested Suite
s.
*
*
* If the passed distributor
is None
, this trait's
* implementation of this method invokes run
on each
* nested Suite
in the List
obtained by invoking nestedSuites
.
* If a nested Suite
's run
* method completes abruptly with an exception, this trait's implementation of this
* method reports that the Suite
aborted and attempts to run the
* next nested Suite
.
* If the passed distributor
is defined, this trait's implementation
* puts each nested Suite
* into the Distributor
contained in the Some
, in the order in which the
* Suite
s appear in the List
returned by nestedSuites
, passing
* in a new Tracker
obtained by invoking nextTracker
on the Tracker
* passed to this method.
*
* Implementations of this method are responsible for ensuring SuiteStarting
events
* are fired to the Reporter
before executing any nested Suite
, and either SuiteCompleted
* or SuiteAborted
after executing any nested Suite
.
*
Args
for this run
* @return a Status
object that indicates when all nested suites started by this method have completed, and whether or not a failure occurred.
*
* @throws NullPointerException if any passed parameter is null
.
*/
protected def runNestedSuites(args: Args): Status = {
if (args == null)
throw new NullPointerException("args was null")
import args._
val stopRequested = stopper
val report = wrapReporterIfNecessary(reporter)
def callExecuteOnSuite(nestedSuite: Suite): Status = {
if (!stopRequested()) {
// Create a Rerunner if the Suite has a no-arg constructor
val hasPublicNoArgConstructor = Suite.checkForPublicNoArgConstructor(nestedSuite.getClass)
val rawString = Resources("suiteExecutionStarting")
val formatter = formatterForSuiteStarting(nestedSuite)
val suiteStartTime = System.currentTimeMillis
report(SuiteStarting(tracker.nextOrdinal(), nestedSuite.suiteName, nestedSuite.suiteId, Some(nestedSuite.getClass.getName), formatter, Some(TopOfClass(nestedSuite.getClass.getName)), nestedSuite.rerunner))
try { // TODO: pass runArgs down and that will get the chosenStyles passed down
// Same thread, so OK to send same tracker
val status = nestedSuite.run(None, Args(report, stopRequested, filter, configMap, distributor, tracker, Set.empty))
val rawString = Resources("suiteCompletedNormally")
val formatter = formatterForSuiteCompleted(nestedSuite)
val duration = System.currentTimeMillis - suiteStartTime
report(SuiteCompleted(tracker.nextOrdinal(), nestedSuite.suiteName, nestedSuite.suiteId, Some(nestedSuite.getClass.getName), Some(duration), formatter, Some(TopOfClass(nestedSuite.getClass.getName)), nestedSuite.rerunner))
SucceededStatus
}
catch {
case e: RuntimeException => {
val eMessage = e.getMessage
val rawString =
if (eMessage != null && eMessage.length > 0)
Resources("executeExceptionWithMessage", eMessage)
else
Resources("executeException")
val formatter = formatterForSuiteAborted(nestedSuite, rawString)
val duration = System.currentTimeMillis - suiteStartTime
report(SuiteAborted(tracker.nextOrdinal(), rawString, nestedSuite.suiteName, nestedSuite.suiteId, Some(nestedSuite.getClass.getName), Some(e), Some(duration), formatter, Some(SeeStackDepthException), nestedSuite.rerunner))
FailedStatus
}
}
}
else
FailedStatus
}
val statusBuffer = new ListBuffer[Status]()
if (!filter.excludeNestedSuites) {
val nestedSuitesArray = nestedSuites.toArray
distributor match {
case None =>
for (nestedSuite <- nestedSuitesArray) {
if (!stopRequested())
statusBuffer += callExecuteOnSuite(nestedSuite)
}
case Some(distribute) =>
for (nestedSuite <- nestedSuitesArray)
statusBuffer += distribute(nestedSuite, args.copy(tracker = tracker.nextTracker))
}
}
new CompositeStatus(Set.empty ++ statusBuffer)
}
/**
* A user-friendly suite name for this Suite
.
*
*
* This trait's
* implementation of this method returns the simple name of this object's class. This
* trait's implementation of runNestedSuites
calls this method to obtain a
* name for Report
s to pass to the suiteStarting
, suiteCompleted
,
* and suiteAborted
methods of the Reporter
.
*
Suite
object's suite name.
*/
def suiteName = getSimpleNameOfAnObjectsClass(thisSuite)
/**
* A string ID for this Suite
that is intended to be unique among all suites reported during a run.
*
*
* This trait's
* implementation of this method returns the fully qualified name of this object's class.
* Each suite reported during a run will commonly be an instance of a different Suite
class,
* and in such cases, this default implementation of this method will suffice. However, in special cases
* you may need to override this method to ensure it is unique for each reported suite. For example, if you write
* a Suite
subclass that reads in a file whose name is passed to its constructor and dynamically
* creates a suite of tests based on the information in that file, you will likely need to override this method
* in your Suite
subclass, perhaps by appending the pathname of the file to the fully qualified class name.
* That way if you run a suite of tests based on a directory full of these files, you'll have unique suite IDs for
* each reported suite.
*
* The suite ID is intended to be unique, because ScalaTest does not enforce that it is unique. If it is not * unique, then you may not be able to uniquely identify a particular test of a particular suite. This ability is used, * for example, to dynamically tag tests as having failed in the previous run when rerunning only failed tests. *
* * @return thisSuite
object's ID.
*/
def suiteId = thisSuite.getClass.getName
/**
* Throws TestPendingException
to indicate a test is pending.
*
* * A pending test is one that has been given a name but is not yet implemented. The purpose of * pending tests is to facilitate a style of testing in which documentation of behavior is sketched * out before tests are written to verify that behavior (and often, the before the behavior of * the system being tested is itself implemented). Such sketches form a kind of specification of * what tests and functionality to implement later. *
* *
* To support this style of testing, a test can be given a name that specifies one
* bit of behavior required by the system being tested. The test can also include some code that
* sends more information about the behavior to the reporter when the tests run. At the end of the test,
* it can call method pending
, which will cause it to complete abruptly with TestPendingException
.
* Because tests in ScalaTest can be designated as pending with TestPendingException
, both the test name and any information
* sent to the reporter when running the test can appear in the report of a test run. (In other words,
* the code of a pending test is executed just like any other test.) However, because the test completes abruptly
* with TestPendingException
, the test will be reported as pending, to indicate
* the actual test, and possibly the functionality it is intended to test, has not yet been implemented.
*
* Note: This method always completes abruptly with a TestPendingException
. Thus it always has a side
* effect. Methods with side effects are usually invoked with parentheses, as in pending()
. This
* method is defined as a parameterless method, in flagrant contradiction to recommended Scala style, because it
* forms a kind of DSL for pending tests. It enables tests in suites such as FunSuite
or FunSpec
* to be denoted by placing "(pending)
" after the test name, as in:
*
* test("that style rules are not laws") (pending) ** *
* Readers of the code see "pending" in parentheses, which looks like a little note attached to the test name to indicate
* it is pending. Whereas "(pending())
looks more like a method call, "(pending)
" lets readers
* stay at a higher level, forgetting how it is implemented and just focusing on the intent of the programmer who wrote the code.
*
TestPendingException
, else
* throw TestFailedException
.
*
*
* This method can be used to temporarily change a failing test into a pending test in such a way that it will
* automatically turn back into a failing test once the problem originally causing the test to fail has been fixed.
* At that point, you need only remove the pendingUntilFixed
call. In other words, a
* pendingUntilFixed
surrounding a block of code that isn't broken is treated as a test failure.
* The motivation for this behavior is to encourage people to remove pendingUntilFixed
calls when
* there are no longer needed.
*
* This method facilitates a style of testing in which tests are written before the code they test. Sometimes you may
* encounter a test failure that requires more functionality than you want to tackle without writing more tests. In this
* case you can mark the bit of test code causing the failure with pendingUntilFixed
. You can then write more
* tests and functionality that eventually will get your production code to a point where the original test won't fail anymore.
* At this point the code block marked with pendingUntilFixed
will no longer throw an exception (because the
* problem has been fixed). This will in turn cause pendingUntilFixed
to throw TestFailedException
* with a detail message explaining you need to go back and remove the pendingUntilFixed
call as the problem orginally
* causing your test code to fail has been fixed.
*
TestPendingException
* @throws TestPendingException if the passed block of code completes abruptly with an Exception
or AssertionError
*/
def pendingUntilFixed(f: => Unit) {
val isPending =
try {
f
false
}
catch {
case _: Exception => true
case _: AssertionError => true
}
if (isPending)
throw new TestPendingException
else
throw new TestFailedException(Resources("pendingUntilFixed"), 2)
}
/**
* The total number of tests that are expected to run when this Suite
's run
method is invoked.
*
* * This trait's implementation of this method returns the sum of: *
* *-
*
- the size of the
testNames
List
, minus the number of tests marked as ignored and * any tests that are exluded by the passedFilter
* - the sum of the values obtained by invoking
*
expectedTestCount
on every nestedSuite
contained in *nestedSuites
*
Filter
with which to filter tests to count based on their tags
*/
def expectedTestCount(filter: Filter): Int = {
// [bv: here was another tricky refactor. How to increment a counter in a loop]
def countNestedSuiteTests(nestedSuites: List[Suite], filter: Filter): Int =
nestedSuites.toList match {
case List() => 0
case nestedSuite :: nestedSuites =>
nestedSuite.expectedTestCount(filter) + countNestedSuiteTests(nestedSuites, filter)
}
filter.runnableTestCount(testNames, tags, suiteId) + countNestedSuiteTests(nestedSuites.toList, filter)
}
// Wrap any non-DispatchReporter, non-CatchReporter in a CatchReporter,
// so that exceptions are caught and transformed
// into error messages on the standard error stream.
private[scalatest] def wrapReporterIfNecessary(reporter: Reporter) = reporter match {
case cr: CatchReporter => cr
case _ => createCatchReporter(reporter)
}
protected[scalatest] def createCatchReporter(reporter: Reporter) = new WrapperCatchReporter(reporter)
/**
* The fully qualified class name of the rerunner to rerun this suite. This implementation will look at this.getClass and see if it is
* either an accessible Suite, or it has a WrapWith annotation. If so, it returns the fully qualified class name wrapped in a Some,
* or else it returns None.
*/
def rerunner: Option[String] = {
val suiteClass = getClass
val isAccessible = SuiteDiscoveryHelper.isAccessibleSuite(suiteClass)
val hasWrapWithAnnotation = suiteClass.getAnnotation(classOf[WrapWith]) != null
if (isAccessible || hasWrapWithAnnotation)
Some(suiteClass.getName)
else
None
}
private[scalatest] def getTopOfClass = TopOfClass(this.getClass.getName)
private[scalatest] def getTopOfMethod(method:Method) = TopOfMethod(this.getClass.getName, method.toGenericString())
private[scalatest] def getTopOfMethod(testName:String) = TopOfMethod(this.getClass.getName, getMethodForTestName(testName).toGenericString())
/**
* Suite style name.
*/
val styleName: String = "org.scalatest.Suite"
/**
* Provides a TestData
instance for the passed test name, given the passed config map.
*
*
* This method is used to obtain a TestData
instance to pass to withFixture(NoArgTest)
* and withFixture(OneArgTest)
and the beforeEach
and afterEach
methods
* of trait BeforeAndAfterEach
.
*
TestData
instance
* @param theConfigMap the config map to include in the returned TestData
* @return a TestData
instance for the specified test, which includes the specified config map
*/
def testDataFor(testName: String, theConfigMap: Map[String, Any] = Map.empty): TestData = {
val suiteTags = for {
a <- this.getClass.getDeclaredAnnotations
annotationClass = a.annotationType
if annotationClass.isAnnotationPresent(classOf[TagAnnotation])
} yield annotationClass.getName
val testTags: Set[String] =
try {
getTags(testName).toSet
}
catch {
case e: IllegalArgumentException => Set.empty[String]
}
new TestData {
val configMap = theConfigMap
val name = testName
val scopes = Vector.empty
val text = testName
val tags = Set.empty ++ suiteTags ++ testTags
}
}
}
private[scalatest] object Suite {
private[scalatest] val TestMethodPrefix = "test"
private[scalatest] val InformerInParens = "(Informer)"
private[scalatest] val IgnoreAnnotation = "org.scalatest.Ignore"
private[scalatest] def getSimpleNameOfAnObjectsClass(o: AnyRef) = stripDollars(parseSimpleName(o.getClass.getName))
// [bv: this is a good example of the expression type refactor. I moved this from SuiteClassNameListCellRenderer]
// this will be needed by the GUI classes, etc.
private[scalatest] def parseSimpleName(fullyQualifiedName: String) = {
val dotPos = fullyQualifiedName.lastIndexOf('.')
// [bv: need to check the dotPos != fullyQualifiedName.length]
if (dotPos != -1 && dotPos != fullyQualifiedName.length)
fullyQualifiedName.substring(dotPos + 1)
else
fullyQualifiedName
}
private[scalatest] def checkForPublicNoArgConstructor(clazz: java.lang.Class[_]) = {
try {
val constructor = clazz.getConstructor(new Array[java.lang.Class[T] forSome { type T }](0): _*)
Modifier.isPublic(constructor.getModifiers)
}
catch {
case nsme: NoSuchMethodException => false
}
}
// This attempts to strip dollar signs that happen when using the interpreter. It is quite fragile
// and already broke once. In the early days, all funky dollar sign encrusted names coming out of
// the interpreter started with "line". Now they don't, but in both cases they seemed to have at
// least one "$iw$" in them. So now I leave the string alone unless I see a "$iw$" in it. Worst case
// is sometimes people will get ugly strings coming out of the interpreter. -bv April 3, 2012
private[scalatest] def stripDollars(s: String): String = {
val lastDollarIndex = s.lastIndexOf('$')
if (lastDollarIndex < s.length - 1)
if (lastDollarIndex == -1 || !s.contains("$iw$")) s else s.substring(lastDollarIndex + 1)
else {
// The last char is a dollar sign
val lastNonDollarChar = s.reverse.find(_ != '$')
lastNonDollarChar match {
case None => s
case Some(c) => {
val lastNonDollarIndex = s.lastIndexOf(c)
if (lastNonDollarIndex == -1) s
else stripDollars(s.substring(0, lastNonDollarIndex + 1))
}
}
}
}
private[scalatest] def diffStrings(s: String, t: String): Tuple2[String, String] = {
def findCommonPrefixLength(s: String, t: String): Int = {
val max = s.length.min(t.length) // the maximum potential size of the prefix
var i = 0
var found = false
while (i < max & !found) {
found = (s.charAt(i) != t.charAt(i))
if (!found)
i = i + 1
}
i
}
def findCommonSuffixLength(s: String, t: String): Int = {
val max = s.length.min(t.length) // the maximum potential size of the suffix
var i = 0
var found = false
while (i < max & !found) {
found = (s.charAt(s.length - 1 - i) != t.charAt(t.length - 1 - i))
if (!found)
i = i + 1
}
i
}
val commonPrefixLength = findCommonPrefixLength(s, t)
val commonSuffixLength = findCommonSuffixLength(s.substring(commonPrefixLength), t.substring(commonPrefixLength))
val prefix = s.substring(0, commonPrefixLength)
val suffix = if (s.length - commonSuffixLength < 0) "" else s.substring(s.length - commonSuffixLength)
val sMiddleEnd = s.length - commonSuffixLength
val tMiddleEnd = t.length - commonSuffixLength
val sMiddle = s.substring(commonPrefixLength, sMiddleEnd)
val tMiddle = t.substring(commonPrefixLength, tMiddleEnd)
val MaxContext = 20
val shortPrefix = if (commonPrefixLength > MaxContext) "..." + prefix.substring(prefix.length - MaxContext) else prefix
val shortSuffix = if (commonSuffixLength > MaxContext) suffix.substring(0, MaxContext) + "..." else suffix
(shortPrefix + "[" + sMiddle + "]" + shortSuffix, shortPrefix + "[" + tMiddle + "]" + shortSuffix)
}
// If the objects are two strings, replace them with whatever is returned by diffStrings.
// Otherwise, use the same objects.
private[scalatest] def getObjectsForFailureMessage(a: Any, b: Any) =
a match {
case aStr: String => {
b match {
case bStr: String => {
Suite.diffStrings(aStr, bStr)
}
case _ => (a, b)
}
}
case _ => (a, b)
}
private[scalatest] def formatterForSuiteStarting(suite: Suite): Option[Formatter] =
Some(IndentedText(suite.suiteName + ":", suite.suiteName, 0))
private[scalatest] def formatterForSuiteCompleted(suite: Suite): Option[Formatter] =
Some(MotionToSuppress)
private[scalatest] def formatterForSuiteAborted(suite: Suite, message: String): Option[Formatter] =
Some(IndentedText(message, message, 0))
private[scalatest] def simpleNameForTest(testName: String) =
if (testName.endsWith(InformerInParens))
testName.substring(0, testName.length - InformerInParens.length)
else
testName
private[scalatest] def anErrorThatShouldCauseAnAbort(throwable: Throwable) =
throwable match {
case _: AnnotationFormatError |
_: CoderMalfunctionError |
_: FactoryConfigurationError |
_: LinkageError |
_: ThreadDeath |
_: TransformerFactoryConfigurationError |
_: VirtualMachineError => true
// Don't use AWTError directly because it doesn't exist on Android, and a user
// got ScalaTest to compile under Android.
case e if e.getClass.getName == "java.awt.AWTError" => true
case _ => false
}
def takesInformer(m: Method) = {
val paramTypes = m.getParameterTypes
paramTypes.length == 1 && classOf[Informer].isAssignableFrom(paramTypes(0))
}
def takesCommunicator(m: Method) = {
val paramTypes = m.getParameterTypes
paramTypes.length == 1 && classOf[Rep].isAssignableFrom(paramTypes(0))
}
def isTestMethodGoodies(m: Method) = {
val isInstanceMethod = !Modifier.isStatic(m.getModifiers())
// name must have at least 4 chars (minimum is "test")
val simpleName = m.getName
val firstFour = if (simpleName.length >= 4) simpleName.substring(0, 4) else ""
val paramTypes = m.getParameterTypes
val hasNoParams = paramTypes.length == 0
// Discover testNames(Informer) because if we didn't it might be confusing when someone
// actually wrote a testNames(Informer) method and it was silently ignored.
val isTestNames = simpleName == "testNames"
val isTestTags = simpleName == "testTags"
val isTestDataFor = (simpleName == "testDataFor" && paramTypes.length == 2 && classOf[String].isAssignableFrom(paramTypes(0)) && classOf[Map[String, Any]].isAssignableFrom(paramTypes(1))) ||
(simpleName == "testDataFor$default$2" && paramTypes.length == 0)
(isInstanceMethod, simpleName, firstFour, paramTypes, hasNoParams, isTestNames, isTestTags, isTestDataFor)
}
def testMethodTakesAnInformer(testName: String): Boolean = testName.endsWith(InformerInParens)
/*
For info and test names, the formatted text should have one level shaved off so that the text will
line up correctly, and the icon is over to the left of that even with the enclosing level.
If a test is at the top level (not nested inside a describe, it's level is 0. So no need to subtract 1
to make room for the icon in that case. An info inside such a test will have level 1. And agin, in that
case no need to subtract 1. Such a test is "outermost test" and the info inside is "in outermost test" in:
class ArghSpec extends Spec with GivenWhenThen {
info("in ArghSpec")
it("outermost test") {
info("in outermost test")
}
describe("Apple") {
info("in Apple")
describe("Boat") {
info("in Boat")
describe("Cat") {
info("in Cat")
describe("Dog") {
info("in Dog")
describe("Elephant") {
info("in Elephant")
it("Factory") {
info("in Factory (test)")
given("an empty Stack")
when("push is invoked")
then("it should have size 1")
and("pop should return the pushed value")
}
}
}
}
}
}
}
It should (and at this point does) output this:
[scalatest] ArghSpec:
[scalatest] + in ArghSpec
[scalatest] - outermost test (5 milliseconds)
[scalatest] + in outermost test
[scalatest] Apple
[scalatest] + in Apple
[scalatest] Boat
[scalatest] + in Boat
[scalatest] Cat
[scalatest] + in Cat
[scalatest] Dog
[scalatest] + in Dog
[scalatest] Elephant
[scalatest] + in Elephant
[scalatest] - Factory (1 millisecond)
[scalatest] + in Factory (test)
[scalatest] + Given an empty Stack
[scalatest] + When push is invoked
[scalatest] + Then it should have size 1
[scalatest] + And pop should return the pushed value
FeatureSpec doesn't want any icons printed out. So adding includeIcon here. It
was already in getIndentedTextForInfo because of descriptions being printed out
without icons.
This should really be named getIndentedTextForTest maybe, because I think it is just
used for test events like succeeded/failed, etc.
*/
def getIndentedTextForTest(testText: String, level: Int, includeIcon: Boolean) = {
val decodedTestText = NameTransformer.decode(testText)
val formattedText =
if (includeIcon) {
val testSucceededIcon = Resources("testSucceededIconChar")
(" " * (if (level == 0) 0 else (level - 1))) + Resources("iconPlusShortName", testSucceededIcon, decodedTestText)
}
else {
(" " * level) + decodedTestText
}
IndentedText(formattedText, decodedTestText, level)
}
def getEscapedIndentedTextForTest(testText: String, level: Int, includeIcon: Boolean) = {
val decodedTestText = NameTransformer.decode(testText)
val escapedTestText =
if (decodedTestText.startsWith("test: "))
decodedTestText.drop(6)
else
decodedTestText
val formattedText =
if (includeIcon) {
val testSucceededIcon = Resources("testSucceededIconChar")
(" " * (if (level == 0) 0 else (level - 1))) + Resources("iconPlusShortName", testSucceededIcon, escapedTestText)
}
else {
(" " * level) + escapedTestText
}
IndentedText(formattedText, decodedTestText, level)
}
// The icon is not included for branch description text, but is included for things sent via info(), given(),
// when(), then(), etc. When it is included, reduce the level by 1, unless it is already 1 or 0.
def getIndentedTextForInfo(message: String, level: Int, includeIcon: Boolean, infoIsInsideATest: Boolean) = {
val formattedText =
if (includeIcon) {
val infoProvidedIcon = Resources("infoProvidedIconChar")
//
// Inside a test, you want level 1 to stay 1
// [scalatest] - outermost test (5 milliseconds)
// [scalatest] + in outermost test
//
// But outside a test, level 1 should be transformed to 0
// [scalatest] Apple
// [scalatest] + in Apple
//
val indentationLevel =
level match {
case 0 => 0
case 1 if infoIsInsideATest => 1
case _ => level - 1
}
(" " * indentationLevel) + Resources("iconPlusShortName", infoProvidedIcon, message)
// (" " * (if (level <= 1) level else (level - 1))) + Resources("iconPlusShortName", infoProvidedIcon, message)
}
else {
(" " * level) + message
}
IndentedText(formattedText, message, level)
}
def getMessageForException(e: Throwable): String =
if (e.getMessage != null)
e.getMessage
else
Resources("exceptionThrown", e.getClass.getName) // Say something like, "java.lang.Exception was thrown."
def indentation(level: Int) = " " * level
def reportTestFailed(theSuite: Suite, report: Reporter, throwable: Throwable, testName: String, testText: String,
recordedEvents: collection.immutable.IndexedSeq[RecordableEvent], rerunnable: Option[String], tracker: Tracker, duration: Long, formatter: Formatter, location: Option[Location]) {
val message = getMessageForException(throwable)
//val formatter = getEscapedIndentedTextForTest(testText, level, includeIcon)
val payload =
throwable match {
case optPayload: PayloadField =>
optPayload.payload
case _ =>
None
}
report(TestFailed(tracker.nextOrdinal(), message, theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName, testText, recordedEvents, Some(throwable), Some(duration), Some(formatter), location, theSuite.rerunner, payload))
}
// TODO: Possibly separate these out from method tests and function tests, because locations are different
// Update: Doesn't seems to need separation, to be confirmed with Bill.
def reportTestStarting(theSuite: Suite, report: Reporter, tracker: Tracker, testName: String, testText: String, rerunnable: Option[String], location: Option[Location]) {
report(TestStarting(tracker.nextOrdinal(), theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName, testText, Some(MotionToSuppress),
location, rerunnable))
}
def reportTestPending(theSuite: Suite, report: Reporter, tracker: Tracker, testName: String, testText: String, recordedEvents: collection.immutable.IndexedSeq[RecordableEvent], duration: Long, formatter: Formatter, location: Option[Location]) {
report(TestPending(tracker.nextOrdinal(), theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName, testText, recordedEvents, Some(duration), Some(formatter),
location))
}
/*
def reportTestCanceled(theSuite: Suite, report: Reporter, tracker: Tracker, testName: String, duration: Long, formatter: Formatter, location: Option[Location]) {
val message = getMessageForException(throwable)
report(TestCanceled(tracker.nextOrdinal(), message, theSuite.suiteName, theSuite.suiteID, Some(theSuite.getClass.getName), testName, Some(duration), Some(formatter),
location))
}
*/
def reportTestCanceled(theSuite: Suite, report: Reporter, throwable: Throwable, testName: String, testText: String,
recordedEvents: collection.immutable.IndexedSeq[RecordableEvent], rerunnable: Option[String], tracker: Tracker, duration: Long, formatter: Formatter, location: Option[Location]) {
val message = getMessageForException(throwable)
//val formatter = getEscapedIndentedTextForTest(testText, level, includeIcon)
report(TestCanceled(tracker.nextOrdinal(), message, theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName, testText, recordedEvents, Some(throwable), Some(duration), Some(formatter), location, rerunnable))
}
def reportTestSucceeded(theSuite: Suite, report: Reporter, tracker: Tracker, testName: String, testText: String, recordedEvents: collection.immutable.IndexedSeq[RecordableEvent], duration: Long, formatter: Formatter, rerunnable: Option[String], location: Option[Location]) {
report(TestSucceeded(tracker.nextOrdinal(), theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName, testText, recordedEvents, Some(duration), Some(formatter),
location, rerunnable))
}
def reportTestIgnored(theSuite: Suite, report: Reporter, tracker: Tracker, testName: String, testText: String, formatter: Formatter, location: Option[Location]) {
val testSucceededIcon = Resources("testSucceededIconChar")
report(TestIgnored(tracker.nextOrdinal(), theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName, testText, Some(formatter),
location))
}
def createInfoProvided(theSuite: Suite,
report: Reporter,
tracker: Tracker,
testName: Option[String],
message: String,
payload: Option[Any],
level: Int,
location: Option[Location],
includeNameInfo: Boolean,
includeIcon: Boolean = true) = {
InfoProvided(
tracker.nextOrdinal(),
message,
if (includeNameInfo)
Some(NameInfo(theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName))
else
None,
None,
Some(getIndentedTextForInfo(message, level, includeIcon, testName.isDefined)),
location,
payload
)
}
// If not fired in the context of a test, then testName will be None
def reportInfoProvided(
theSuite: Suite,
report: Reporter,
tracker: Tracker,
testName: Option[String],
message: String,
payload: Option[Any],
level: Int,
location: Option[Location],
includeNameInfo: Boolean,
includeIcon: Boolean = true
) {
report(
createInfoProvided(
theSuite,
report,
tracker,
testName,
message,
payload,
level,
location,
includeNameInfo,
includeIcon
)
)
}
def createMarkupProvided(
theSuite: Suite,
report: Reporter,
tracker: Tracker,
testName: Option[String],
message: String,
level: Int,
location: Option[Location],
includeNameInfo: Boolean,
includeIcon: Boolean = true
) = {
MarkupProvided(
tracker.nextOrdinal(),
message,
if (includeNameInfo)
Some(NameInfo(theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName))
else
None,
Some(getIndentedTextForInfo(message, level, includeIcon, testName.isDefined)),
location
)
}
// If not fired in the context of a test, then testName will be None
def reportMarkupProvided(
theSuite: Suite,
report: Reporter,
tracker: Tracker,
testName: Option[String],
message: String,
level: Int,
location: Option[Location],
includeNameInfo: Boolean,
includeIcon: Boolean = true
) {
report(
createMarkupProvided(
theSuite,
report,
tracker,
testName,
message,
level,
location,
includeNameInfo
)
)
}
// If not fired in the context of a test, then testName will be None
def reportScopeOpened(
theSuite: Suite,
report: Reporter,
tracker: Tracker,
testName: Option[String],
message: String,
level: Int,
includeIcon: Boolean = true,
location: Option[Location]
) {
report(
ScopeOpened(
tracker.nextOrdinal(),
message,
NameInfo(theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName),
Some(getIndentedTextForInfo(message, level, includeIcon, testName.isDefined)),
location
)
)
}
// If not fired in the context of a test, then testName will be None
def reportScopeClosed(
theSuite: Suite,
report: Reporter,
tracker: Tracker,
testName: Option[String],
message: String,
level: Int,
includeIcon: Boolean = true,
location: Option[Location]
) {
report(
ScopeClosed(
tracker.nextOrdinal(),
message,
NameInfo(theSuite.suiteName, theSuite.suiteId, Some(theSuite.getClass.getName), testName),
Some(MotionToSuppress),
location
)
)
}
/*def getLineInFile(stackTraceList:List[StackTraceElement], sourceFileName:String, methodName: String):Option[LineInFile] = {
val baseStackDepth = stackTraceList.takeWhile(stackTraceElement => sourceFileName != stackTraceElement.getFileName || stackTraceElement.getMethodName != methodName).length
val stackTraceOpt = stackTraceList.drop(baseStackDepth).find(stackTraceElement => stackTraceElement.getMethodName() == "