
org.scalatest.matchers.must.Matchers.scala Maven / Gradle / Ivy
/*
* Copyright 2001-2013 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.matchers.must
import org.scalatest.FailureMessages
import org.scalatest.Resources
import org.scalatest.Assertion
import org.scalatest.Assertions
import org.scalatest.Suite
import org.scalatest.UnquotedString
import org.scalatest.CompileMacro
import org.scalactic._
import org.scalatest.enablers._
import org.scalatest.matchers._
import org.scalatest.matchers.dsl._
import org.scalatest.verbs.CompileWord
import org.scalatest.verbs.TypeCheckWord
import org.scalatest.verbs.MustVerb
import org.scalatest.matchers.dsl.ResultOfNoElementsOfApplication
import org.scalatest.matchers.dsl.ResultOfOneElementOfApplication
import scala.collection.GenTraversable
import scala.reflect.{classTag, ClassTag}
import scala.util.matching.Regex
import DefaultEquality.areEqualComparingArraysStructurally
import org.scalatest.matchers.MatchersHelper
import MatchersHelper.transformOperatorChars
import TripleEqualsSupport.Spread
import TripleEqualsSupport.TripleEqualsInvocation
import TripleEqualsSupport.TripleEqualsInvocationOnSpread
import ArrayHelper.deep
import scala.language.experimental.macros
import scala.language.higherKinds
import MatchersHelper.endWithRegexWithGroups
import MatchersHelper.fullyMatchRegexWithGroups
import MatchersHelper.includeRegexWithGroups
import MatchersHelper.indicateFailure
import MatchersHelper.indicateSuccess
import MatchersHelper.newTestFailedException
import MatchersHelper.startWithRegexWithGroups
import org.scalatest.exceptions._
// TODO: drop generic support for be as an equality comparison, in favor of specific ones.
// TODO: Put links from ShouldMatchers to wherever I reveal the matrix and algo of how properties are checked dynamically.
// TODO: double check that I wrote tests for (length (7)) and (size (8)) in parens
// TODO: document how to turn off the === implicit conversion
// TODO: Document you can use JMock, EasyMock, etc.
/**
* Trait that provides a domain specific language (DSL) for expressing assertions in tests
* using the word must
.
*
*
* For example, if you mix Matchers
into
* a suite class, you can write an equality assertion in that suite like this:
*
*
*
* result must equal (3)
*
*
*
* Here result
is a variable, and can be of any type. If the object is an
* Int
with the value 3, execution will continue (i.e., the expression will result
* in the unit value, ()
). Otherwise, a TestFailedException
* will be thrown with a detail message that explains the problem, such as "7 did not equal 3"
.
* This TestFailedException
will cause the test to fail.
*
*
*
* Here is a table of contents for this documentation:
*
*
*
* - Matchers migration in ScalaTest 2.0
* - Checking equality with matchers
* - Checking size and length
* - Checking strings
* - Greater and less than
* - Checking
Boolean
properties with be
* - Using custom
BeMatchers
* - Checking object identity
* - Checking an object's class
* - Checking numbers against a range
* - Checking for emptiness
* - Working with "containers"
* - Working with "aggregations"
* - Working with "sequences"
* - Working with "sortables"
* - Working with iterators
* - Inspector shorthands
* - Single-element collections
* - Java collections and maps
* String
s and Array
s as collections
* - Be as an equality comparison
* - Being negative
* - Checking that a snippet of code does not compile
* - Logical expressions with
and
and or
* - Working with
Option
s
* - Checking arbitrary properties with
have
* - Using
length
and size
with HavePropertyMatcher
s
* - Checking that an expression matches a pattern
* - Using custom matchers
* - Checking for expected exceptions
* - Those pesky parens
*
*
*
* Trait must.Matchers
is an alternative to should.Matchers
that provides the exact same
* meaning, syntax, and behavior as should.Matchers
, but uses the verb must
instead of should
.
* The two traits differ only in the English semantics of the verb: should
* is informal, making the code feel like conversation between the writer and the reader; must
is more formal, making the code feel more like
* a written specification.
*
*
*
* Checking equality with matchers
*
*
* ScalaTest matchers provides five different ways to check equality, each designed to address a different need. They are:
*
*
*
* result must equal (3) // can customize equality
* result must === (3) // can customize equality and enforce type constraints
* result must be (3) // cannot customize equality, so fastest to compile
* result mustEqual 3 // can customize equality, no parentheses required
* result mustBe 3 // cannot customize equality, so fastest to compile, no parentheses required
*
*
*
* The “left
must
equal
(right)
” syntax requires an
* org.scalactic.Equality[L]
to be provided (either implicitly or explicitly), where
* L
is the left-hand type on which must
is invoked. In the "left
must
equal
(right)
" case,
* for example, L
is the type of left
. Thus if left
is type Int
, the "left
must
* equal
(right)
"
* statement would require an Equality[Int]
.
*
*
*
* By default, an implicit Equality[T]
instance is available for any type T
, in which equality is implemented
* by simply invoking ==
on the left
* value, passing in the right
value, with special treatment for arrays. If either left
or right
is an array, deep
* will be invoked on it before comparing with ==. Thus, the following expression
* will yield false, because Array
's equals
method compares object identity:
*
*
*
* Array(1, 2) == Array(1, 2) // yields false
*
*
*
* The next expression will by default not result in a TestFailedException
, because default Equality[Array[Int]]
compares
* the two arrays structurally, taking into consideration the equality of the array's contents:
*
*
*
* Array(1, 2) must equal (Array(1, 2)) // succeeds (i.e., does not throw TestFailedException)
*
*
*
* If you ever do want to verify that two arrays are actually the same object (have the same identity), you can use the
* be theSameInstanceAs
syntax, described below.
*
*
*
* You can customize the meaning of equality for a type when using "must
equal
," "must
===
,"
* or mustEqual
syntax by defining implicit Equality
instances that will be used instead of default Equality
.
* You might do this to normalize types before comparing them with ==
, for instance, or to avoid calling the ==
method entirely,
* such as if you want to compare Double
s with a tolerance.
* For an example, see the main documentation of trait org.scalactic.Equality
.
*
*
*
* You can always supply implicit parameters explicitly, but in the case of implicit parameters of type Equality[T]
, Scalactic provides a
* simple "explictly" DSL. For example, here's how you could explicitly supply an Equality[String]
instance that normalizes both left and right
* sides (which must be strings), by transforming them to lowercase:
*
*
*
* scala> import org.scalatest.matchers.must.Matchers._
* import org.scalatest.matchers.must.Matchers._
*
* scala> import org.scalactic.Explicitly._
* import org.scalactic.Explicitly._
*
* scala> import org.scalactic.StringNormalizations._
* import org.scalactic.StringNormalizations._
*
* scala> "Hi" must equal ("hi") (after being lowerCased)
*
*
*
* The after
being
lowerCased
expression results in an Equality[String]
, which is then passed
* explicitly as the second curried parameter to equal
. For more information on the explictly DSL, see the main documentation
* for trait org.scalactic.Explicitly
.
*
*
*
* The "must
be
" and mustBe
syntax do not take an Equality[T]
and can therefore not be customized.
* They always use the default approach to equality described above. As a result, "must
be
" and mustBe
will
* likely be the fastest-compiling matcher syntax for equality comparisons, since the compiler need not search for
* an implicit Equality[T]
each time.
*
*
*
* The must
===
syntax (and its complement, must
!==
) can be used to enforce type
* constraints at compile-time between the left and right sides of the equality comparison. Here's an example:
*
*
*
* scala> import org.scalatest.matchers.must.Matchers._
* import org.scalatest.matchers.must.Matchers._
*
* scala> import org.scalactic.TypeCheckedTripleEquals._
* import org.scalactic.TypeCheckedTripleEquals._
*
* scala> Some(2) must === (2)
* <console>:17: error: types Some[Int] and Int do not adhere to the equality constraint
* selected for the === and !== operators; the missing implicit parameter is of
* type org.scalactic.CanEqual[Some[Int],Int]
* Some(2) must === (2)
* ^
*
*
*
* By default, the "Some(2)
must
===
(2)
" statement would fail at runtime. By mixing in
* the equality constraints provided by TypeCheckedTripleEquals
, however, the statement fails to compile. For more information
* and examples, see the main documentation for trait org.scalactic.TypeCheckedTripleEquals
.
*
*
*
* Checking size and length
*
*
* You can check the size or length of any type of object for which it
* makes sense. Here's how checking for length looks:
*
*
* result must have length 3
*
*
*
* Size is similar:
*
*
*
* result must have size 10
*
*
*
* The length
syntax can be used with String
, Array
, any scala.collection.GenSeq
,
* any java.util.List
, and any type T
for which an implicit Length[T]
type class is
* available in scope.
* Similarly, the size
syntax can be used with Array
, any scala.collection.GenTraversable
,
* any java.util.Collection
, any java.util.Map
, and any type T
for which an implicit Size[T]
type class is
* available in scope. You can enable the length
or size
syntax for your own arbitrary types, therefore,
* by defining Length
or Size
type
* classes for those types.
*
*
*
* In addition, the length
syntax can be used with any object that has a field or method named length
* or a method named getLength
. Similarly, the size
syntax can be used with any
* object that has a field or method named size
or a method named getSize
.
* The type of a length
or size
field, or return type of a method, must be either Int
* or Long
. Any such method must take no parameters. (The Scala compiler will ensure at compile time that
* the object on which must
is being invoked has the appropriate structure.)
*
*
*
* Checking strings
*
*
* You can check for whether a string starts with, ends with, or includes a substring like this:
*
*
*
* string must startWith ("Hello")
* string must endWith ("world")
* string must include ("seven")
*
*
*
* You can check for whether a string starts with, ends with, or includes a regular expression, like this:
*
*
*
* string must startWith regex "Hel*o"
* string must endWith regex "wo.ld"
* string must include regex "wo.ld"
*
*
*
* And you can check whether a string fully matches a regular expression, like this:
*
*
*
* string must fullyMatch regex """(-)?(\d+)(\.\d*)?"""
*
*
*
* The regular expression passed following the regex
token can be either a String
* or a scala.util.matching.Regex
.
*
*
*
* With the startWith
, endWith
, include
, and fullyMatch
* tokens can also be used with an optional specification of required groups, like this:
*
*
*
* "abbccxxx" must startWith regex ("a(b*)(c*)" withGroups ("bb", "cc"))
* "xxxabbcc" must endWith regex ("a(b*)(c*)" withGroups ("bb", "cc"))
* "xxxabbccxxx" must include regex ("a(b*)(c*)" withGroups ("bb", "cc"))
* "abbcc" must fullyMatch regex ("a(b*)(c*)" withGroups ("bb", "cc"))
*
*
*
* You can check whether a string is empty with empty
:
*
*
*
* s mustBe empty
*
*
*
* You can also use most of ScalaTest's matcher syntax for collections on String
by
* treating the String
s as collections of characters. For examples, see the
* String
s and Array
s as collections section below.
*
*
*
* Greater and less than
*
*
* You can check whether any type for which an implicit Ordering[T]
is available
* is greater than, less than, greater than or equal, or less
* than or equal to a value of type T
. The syntax is:
*
*
* one must be < 7
* one must be > 0
* one must be <= 7
* one must be >= 0
*
*
*
* Checking Boolean
properties with be
*
*
* If an object has a method that takes no parameters and returns boolean, you can check
* it by placing a Symbol
(after be
) that specifies the name
* of the method (excluding an optional prefix of "is
"). A symbol literal
* in Scala begins with a tick mark and ends at the first non-identifier character. Thus,
* 'traversableAgain
results in a Symbol
object at runtime, as does
* 'completed
and 'file
. Here's an example:
*
*
*
* iter mustBe 'traversableAgain
*
*
* Given this code, ScalaTest will use reflection to look on the object referenced from
* emptySet
for a method that takes no parameters and results in Boolean
,
* with either the name empty
or isEmpty
. If found, it will invoke
* that method. If the method returns true
, execution will continue. But if it returns
* false
, a TestFailedException
will be thrown that will contain a detail message, such as:
*
*
* non-empty iterator was not traversableAgain
*
*
*
* This be
syntax can be used with any reference (AnyRef
) type. If the object does
* not have an appropriately named predicate method, you'll get a TestFailedException
* at runtime with a detailed message that explains the problem.
* (For the details on how a field or method is selected during this
* process, see the documentation for BeWord
.)
*
*
*
* If you think it reads better, you can optionally put a
or an
after
* be
. For example, java.io.File
has two predicate methods,
* isFile
and isDirectory
. Thus with a File
object
* named temp
, you could write:
*
*
*
* temp must be a 'file
*
*
*
* Or, given java.awt.event.KeyEvent
has a method isActionKey
that takes
* no arguments and returns Boolean
, you could assert that a KeyEvent
is
* an action key with:
*
*
*
* keyEvent must be an 'actionKey
*
*
*
* If you prefer to check Boolean
properties in a type-safe manner, you can use a BePropertyMatcher
.
* This would allow you to write expressions such as:
*
*
*
* xs mustBe traversableAgain
* temp must be a file
* keyEvent must be an actionKey
*
*
*
* These expressions would fail to compile if must
is used on an inappropriate type, as determined
* by the type parameter of the BePropertyMatcher
being used. (For example, file
in this example
* would likely be of type BePropertyMatcher[java.io.File]
. If used with an appropriate type, such an expression will compile
* and at run time the Boolean
property method or field will be accessed directly; i.e., no reflection will be used.
* See the documentation for BePropertyMatcher
for more information.
*
*
*
* Using custom BeMatchers
*
* If you want to create a new way of using be
, which doesn't map to an actual property on the
* type you care about, you can create a BeMatcher
. You could use this, for example, to create BeMatcher[Int]
* called odd
, which would match any odd Int
, and even
, which would match
* any even Int
.
* Given this pair of BeMatcher
s, you could check whether an Int
was odd or even with expressions like:
*
*
*
* num mustBe odd
* num must not be even
*
*
* For more information, see the documentation for BeMatcher
.
*
*
* Checking object identity
*
*
* If you need to check that two references refer to the exact same object, you can write:
*
*
*
* ref1 must be theSameInstanceAs ref2
*
*
*
* Checking an object's class
*
*
* If you need to check that an object is an instance of a particular class or trait, you can supply the type to
* “be
a
” or “be
an
”:
*
*
*
* result1 mustBe a [Tiger]
* result1 must not be an [Orangutan]
*
*
*
* Because type parameters are erased on the JVM, we recommend you insert an underscore for any type parameters
* when using this syntax. Both of the following test only that the result is an instance of List[_]
, because at
* runtime the type parameter has been erased:
*
*
*
* result mustBe a [List[_]] // recommended
* result mustBe a [List[Fruit]] // discouraged
*
*
*
* Checking numbers against a range
*
*
* Often you may want to check whether a number is within a
* range. You can do that using the +-
operator, like this:
*
*
*
* sevenDotOh must equal (6.9 +- 0.2)
* sevenDotOh must === (6.9 +- 0.2)
* sevenDotOh must be (6.9 +- 0.2)
* sevenDotOh mustEqual 6.9 +- 0.2
* sevenDotOh mustBe 6.9 +- 0.2
*
*
*
* Any of these expressions will cause a TestFailedException
to be thrown if the floating point
* value, sevenDotOh
is outside the range 6.7
to 7.1
.
* You can use +-
with any type T
for which an implicit Numeric[T]
exists, such as integral types:
*
*
*
* seven must equal (6 +- 2)
* seven must === (6 +- 2)
* seven must be (6 +- 2)
* seven mustEqual 6 +- 2
* seven mustBe 6 +- 2
*
*
*
* Checking for emptiness
*
*
* You can check whether an object is "empty", like this:
*
*
*
* traversable mustBe empty
* javaMap must not be empty
*
*
*
* The empty
token can be used with any type L
for which an implicit Emptiness[L]
exists.
* The Emptiness
companion object provides implicits for GenTraversable[E]
, java.util.Collection[E]
,
* java.util.Map[K, V]
, String
, Array[E]
, and Option[E]
. In addition, the
* Emptiness
companion object provides structural implicits for types that declare an isEmpty
method that
* returns a Boolean
. Here are some examples:
*
*
*
* scala> import org.scalatest.matchers.must.Matchers._
* import org.scalatest.matchers.must.Matchers._
*
* scala> List.empty mustBe empty
*
* scala> None mustBe empty
*
* scala> Some(1) must not be empty
*
* scala> "" mustBe empty
*
* scala> new java.util.HashMap[Int, Int] mustBe empty
*
* scala> new { def isEmpty = true} mustBe empty
*
* scala> Array(1, 2, 3) must not be empty
*
*
*
* Working with "containers"
*
*
* You can check whether a collection contains a particular element like this:
*
*
*
* traversable must contain ("five")
*
*
*
* The contain
syntax shown above can be used with any type C
that has a "containing" nature, evidenced by
* an implicit org.scalatest.enablers.Containing[L]
, where L
is left-hand type on
* which must
is invoked. In the Containing
* companion object, implicits are provided for types GenTraversable[E]
, java.util.Collection[E]
,
* java.util.Map[K, V]
, String
, Array[E]
, and Option[E]
.
* Here are some examples:
*
*
*
* scala> import org.scalatest.matchers.must.Matchers._
* import org.scalatest.matchers.must.Matchers._
*
* scala> List(1, 2, 3) must contain (2)
*
* scala> Map('a' -> 1, 'b' -> 2, 'c' -> 3) must contain ('b' -> 2)
*
* scala> Set(1, 2, 3) must contain (2)
*
* scala> Array(1, 2, 3) must contain (2)
*
* scala> "123" must contain ('2')
*
* scala> Some(2) must contain (2)
*
*
*
* ScalaTest's implicit methods that provide the Containing[L]
type classes require an Equality[E]
, where
* E
is an element type. For example, to obtain a Containing[Array[Int]]
you must supply an Equality[Int]
,
* either implicitly or explicitly. The contain
syntax uses this Equality[E]
to determine containership.
* Thus if you want to change how containership is determined for an element type E
, place an implicit Equality[E]
* in scope or use the explicitly DSL. Although the implicit parameter required for the contain
syntax is of type Containing[L]
,
* implicit conversions are provided in the Containing
companion object from Equality[E]
to the various
* types of containers of E
. Here's an example:
*
*
*
* scala> import org.scalatest.matchers.must.Matchers._
* import org.scalatest.matchers.must.Matchers._
*
* scala> List("Hi", "Di", "Ho") must contain ("ho")
* org.scalatest.exceptions.TestFailedException: List(Hi, Di, Ho) did not contain element "ho"
* at ...
*
* scala> import org.scalactic.Explicitly._
* import org.scalactic.Explicitly._
*
* scala> import org.scalactic.StringNormalizations._
* import org.scalactic.StringNormalizations._
*
* scala> (List("Hi", "Di", "Ho") must contain ("ho")) (after being lowerCased)
*
*
*
* Note that when you use the explicitly DSL with contain
you need to wrap the entire
* contain
expression in parentheses, as shown here.
*
*
*
* (List("Hi", "Di", "Ho") must contain ("ho")) (after being lowerCased)
* ^ ^
*
*
*
* In addition to determining whether an object contains another object, you can use contain
to
* make other determinations.
* For example, the contain
oneOf
syntax ensures that one and only one of the specified elements are
* contained in the containing object:
*
*
*
* List(1, 2, 3, 4, 5) must contain oneOf (5, 7, 9)
* Some(7) must contain oneOf (5, 7, 9)
* "howdy" must contain oneOf ('a', 'b', 'c', 'd')
*
*
*
* Note that if multiple specified elements appear in the containing object, oneOf
will fail:
*
*
*
* scala> List(1, 2, 3) must contain oneOf (2, 3, 4)
* org.scalatest.exceptions.TestFailedException: List(1, 2, 3) did not contain one (and only one) of (2, 3, 4)
* at ...
*
*
*
* If you really want to ensure one or more of the specified elements are contained in the containing object,
* use atLeastOneOf
, described below, instead of oneOf
. Keep in mind, oneOf
* means "exactly one of."
*
*
*
* Note also that with any contain
syntax, you can place custom implicit Equality[E]
instances in scope
* to customize how containership is determined, or use the explicitly DSL. Here's an example:
*
*
*
* (Array("Doe", "Ray", "Me") must contain oneOf ("X", "RAY", "BEAM")) (after being lowerCased)
*
*
*
* If you have a collection of elements that you'd like to use in a "one of" comparison, you can use "oneElementOf," like this:
*
*
*
* List(1, 2, 3, 4, 5) must contain oneElementOf List(5, 7, 9)
* Some(7) must contain oneElementOf Vector(5, 7, 9)
* "howdy" must contain oneElementOf Set('a', 'b', 'c', 'd')
* (Array("Doe", "Ray", "Me") must contain oneElementOf List("X", "RAY", "BEAM")) (after being lowerCased)
*
*
*
* The contain
noneOf
syntax does the opposite of oneOf
: it ensures none of the specified elements
* are contained in the containing object:
*
*
*
* List(1, 2, 3, 4, 5) must contain noneOf (7, 8, 9)
* Some(0) must contain noneOf (7, 8, 9)
* "12345" must contain noneOf ('7', '8', '9')
*
*
*
* If you have a collection of elements that you'd like to use in a "none of" comparison, you can use "noElementsOf," like this:
*
*
*
* List(1, 2, 3, 4, 5) must contain noElementsOf List(7, 8, 9)
* Some(0) must contain noElementsOf Vector(7, 8, 9)
* "12345" must contain noElementsOf Set('7', '8', '9')
*
*
*
* Working with "aggregations"
*
*
* As mentioned, the "contain
," "contain
oneOf
," and "contain
noneOf
" syntax requires a
* Containing[L]
be provided, where L
is the left-hand type. Other contain
syntax, which
* will be described in this section, requires an Aggregating[L]
be provided, where again L
is the left-hand type.
* (An Aggregating[L]
instance defines the "aggregating nature" of a type L
.)
* The reason, essentially, is that contain
syntax that makes sense for Option
is enabled by
* Containing[L]
, whereas syntax that does not make sense for Option
is enabled
* by Aggregating[L]
. For example, it doesn't make sense to assert that an Option[Int]
contains all of a set of integers, as it
* could only ever contain one of them. But this does make sense for a type such as List[Int]
that can aggregate zero to many integers.
*
*
*
* The Aggregating
companion object provides implicit instances of Aggregating[L]
* for types GenTraversable[E]
, java.util.Collection[E]
,
* java.util.Map[K, V]
, String
, Array[E]
. Note that these are the same types as are supported with
* Containing
, but with Option[E]
missing.
* Here are some examples:
*
*
*
* The contain
atLeastOneOf
syntax, for example, works for any type L
for which an Aggregating[L]
exists. It ensures
* that at least one of (i.e., one or more of) the specified objects are contained in the containing object:
*
*
*
* List(1, 2, 3) must contain atLeastOneOf (2, 3, 4)
* Array(1, 2, 3) must contain atLeastOneOf (3, 4, 5)
* "abc" must contain atLeastOneOf ('c', 'a', 't')
*
*
*
* Similar to Containing[L]
, the implicit methods that provide the Aggregating[L]
instances require an Equality[E]
, where
* E
is an element type. For example, to obtain a Aggregating[Vector[String]]
you must supply an Equality[String]
,
* either implicitly or explicitly. The contain
syntax uses this Equality[E]
to determine containership.
* Thus if you want to change how containership is determined for an element type E
, place an implicit Equality[E]
* in scope or use the explicitly DSL. Although the implicit parameter required for the contain
syntax is of type Aggregating[L]
,
* implicit conversions are provided in the Aggregating
companion object from Equality[E]
to the various
* types of aggregations of E
. Here's an example:
*
*
*
* (Vector(" A", "B ") must contain atLeastOneOf ("a ", "b", "c")) (after being lowerCased and trimmed)
*
*
*
* If you have a collection of elements that you'd like to use in an "at least one of" comparison, you can use "atLeastOneElementOf," like this:
*
*
*
* List(1, 2, 3) must contain atLeastOneElementOf List(2, 3, 4)
* Array(1, 2, 3) must contain atLeastOneElementOf Vector(3, 4, 5)
* "abc" must contain atLeastOneElementOf Set('c', 'a', 't')
* (Vector(" A", "B ") must contain atLeastOneElementOf List("a ", "b", "c")) (after being lowerCased and trimmed)
*
*
*
* The "contain
atMostOneOf
" syntax lets you specify a set of objects at most one of which must be contained in the containing object:
*
*
*
* List(1, 2, 3, 4, 5) must contain atMostOneOf (5, 6, 7)
*
*
*
* If you have a collection of elements that you'd like to use in a "at most one of" comparison, you can use "atMostOneElementOf," like this:
*
*
*
* List(1, 2, 3, 4, 5) must contain atMostOneElementOf Vector(5, 6, 7)
*
*
*
* The "contain
allOf
" syntax lets you specify a set of objects that must all be contained in the containing object:
*
*
*
* List(1, 2, 3, 4, 5) must contain allOf (2, 3, 5)
*
*
*
* If you have a collection of elements that you'd like to use in a "all of" comparison, you can use "allElementsOf," like this:
*
*
*
* List(1, 2, 3, 4, 5) must contain allElementsOf Array(2, 3, 5)
*
*
*
* The "contain
only
" syntax lets you assert that the containing object contains only the specified objects, though it may
* contain more than one of each:
*
*
*
* List(1, 2, 3, 2, 1) must contain only (1, 2, 3)
*
*
*
* The "contain
theSameElementsAs
" and "contain
theSameElementsInOrderAs
syntax differ from the others
* in that the right hand side is a GenTraversable[_]
rather than a varargs of Any
. (Note: in a future 2.0 milestone release, possibly
* 2.0.M6, these will likely be widened to accept any type R
for which an Aggregating[R]
exists.)
*
*
*
* The "contain
theSameElementsAs
" syntax lets you assert that two aggregations contain the same objects:
*
*
*
* List(1, 2, 2, 3, 3, 3) must contain theSameElementsAs Vector(3, 2, 3, 1, 2, 3)
*
*
*
* The number of times any family of equal objects appears must also be the same in both the left and right aggregations.
* The specified objects may appear multiple times, but must appear in the order they appear in the right-hand list. For example, if
* the last 3 element is left out of the right-hand list in the previous example, the expression would fail because the left side
* has three 3's and the right hand side has only two:
*
*
*
* List(1, 2, 2, 3, 3, 3) must contain theSameElementsAs Vector(3, 2, 3, 1, 2)
* org.scalatest.exceptions.TestFailedException: List(1, 2, 2, 3, 3, 3) did not contain the same elements as Vector(3, 2, 3, 1, 2)
* at ...
*
*
*
* Note that no onlyElementsOf
matcher is provided, because it would have the same
* behavior as theSameElementsAs
. (I.e., if you were looking for onlyElementsOf
, please use theSameElementsAs
* instead.)
*
*
*
*
* Working with "sequences"
*
*
* The rest of the contain
syntax, which
* will be described in this section, requires a Sequencing[L]
be provided, where again L
is the left-hand type.
* (A Sequencing[L]
instance defines the "sequencing nature" of a type L
.)
* The reason, essentially, is that contain
syntax that implies an "order" of elements makes sense only for types that place elements in a sequence.
* For example, it doesn't make sense to assert that a Map[String, Int]
or Set[Int]
contains all of a set of integers in a particular
* order, as these types don't necessarily define an order for their elements. But this does make sense for a type such as Seq[Int]
that does define
* an order for its elements.
*
*
*
* The Sequencing
companion object provides implicit instances of Sequencing[L]
* for types GenSeq[E]
, java.util.List[E]
,
* String
, and Array[E]
.
* Here are some examples:
*
*
*
* Similar to Containing[L]
, the implicit methods that provide the Aggregating[L]
instances require an Equality[E]
, where
* E
is an element type. For example, to obtain a Aggregating[Vector[String]]
you must supply an Equality[String]
,
* either implicitly or explicitly. The contain
syntax uses this Equality[E]
to determine containership.
* Thus if you want to change how containership is determined for an element type E
, place an implicit Equality[E]
* in scope or use the explicitly DSL. Although the implicit parameter required for the contain
syntax is of type Aggregating[L]
,
* implicit conversions are provided in the Aggregating
companion object from Equality[E]
to the various
* types of aggregations of E
. Here's an example:
*
*
*
* The "contain
inOrderOnly
" syntax lets you assert that the containing object contains only the specified objects, in order.
* The specified objects may appear multiple times, but must appear in the order they appear in the right-hand list. Here's an example:
*
*
*
* List(1, 2, 2, 3, 3, 3) must contain inOrderOnly (1, 2, 3)
*
*
*
* The "contain
inOrder
" syntax lets you assert that the containing object contains only the specified objects in order, like
* inOrderOnly
, but allows other objects to appear in the left-hand aggregation as well:
* contain more than one of each:
*
*
*
* List(0, 1, 2, 2, 99, 3, 3, 3, 5) must contain inOrder (1, 2, 3)
*
*
*
* If you have a collection of elements that you'd like to use in a "in order" comparison, you can use "inOrderElementsOf," like this:
*
*
*
* List(0, 1, 2, 2, 99, 3, 3, 3, 5) must contain inOrderElementsOf Array(1, 2, 3)
*
*
*
* Note that "order" in inOrder
, inOrderOnly
, and theSameElementsInOrderAs
(described below)
* in the Aggregation[L]
instances built-in to ScalaTest is defined as "iteration order".
*
*
*
* Lastly, the "contain
theSameElementsInOrderAs
" syntax lets you assert that two aggregations contain
* the same exact elements in the same (iteration) order:
*
*
*
* List(1, 2, 3) must contain theSameElementsInOrderAs collection.mutable.TreeSet(3, 2, 1)
*
*
*
* The previous assertion succeeds because the iteration order of aTreeSet
is the natural
* ordering of its elements, which in this case is 1, 2, 3. An iterator obtained from the left-hand List
will produce the same elements
* in the same order.
*
*
*
* Note that no inOrderOnlyElementsOf
matcher is provided, because it would have the same
* behavior as theSameElementsInOrderAs
. (I.e., if you were looking for inOrderOnlyElementsOf
, please use theSameElementsInOrderAs
* instead.)
*
*
*
* Working with "sortables"
*
*
* You can also ask whether the elements of "sortable" objects (such as Array
s, Java List
s, and GenSeq
s)
* are in sorted order, like this:
*
*
*
* List(1, 2, 3) mustBe sorted
*
*
*
* Working with iterators
*
*
* Although it seems desireable to provide similar matcher syntax for Scala and Java iterators to that provided for sequences like
* Seq
s, Array
, and java.util.List
, the
* ephemeral nature of iterators makes this problematic. Some syntax (such as must
contain
) is relatively straightforward to
* support on iterators, but other syntax (such
* as, for example, Inspector
expressions on nested iterators) is not. Rather
* than allowing inconsistencies between sequences and iterators in the API, we chose to not support any such syntax directly on iterators:
*
*
* scala> val it = List(1, 2, 3).iterator
* it: Iterator[Int] = non-empty iterator
*
* scala> it must contain (2)
* <console>:15: error: could not find implicit value for parameter typeClass1: org.scalatest.enablers.Containing[Iterator[Int]]
* it must contain (2)
* ^
*
*
*
* Instead, you will need to convert your iterators to a sequence explicitly before using them in matcher expressions:
*
*
*
* scala> it.toStream must contain (2)
*
*
*
* We recommend you convert (Scala or Java) iterators to Stream
s, as shown in the previous example, so that you can
* continue to reap any potential benefits provided by the laziness of the underlying iterator.
*
*
*
* Inspector shorthands
*
*
* You can use the Inspectors
syntax with matchers as well as assertions. If you have a multi-dimensional collection, such as a
* list of lists, using Inspectors
is your best option:
*
*
*
* val yss =
* List(
* List(1, 2, 3),
* List(1, 2, 3),
* List(1, 2, 3)
* )
*
* forAll (yss) { ys =>
* forAll (ys) { y => y must be > 0 }
* }
*
*
*
* For assertions on one-dimensional collections, however, matchers provides "inspector shorthands." Instead of writing:
*
*
*
* val xs = List(1, 2, 3)
* forAll (xs) { x => x must be < 10 }
*
*
*
* You can write:
*
*
*
* all (xs) must be < 10
*
*
*
* The previous statement asserts that all elements of the xs
list must be less than 10.
* All of the inspectors have shorthands in matchers. Here is the full list:
*
*
*
* all
- succeeds if the assertion holds true for every element
* atLeast
- succeeds if the assertion holds true for at least the specified number of elements
* atMost
- succeeds if the assertion holds true for at most the specified number of elements
* between
- succeeds if the assertion holds true for between the specified minimum and maximum number of elements, inclusive
* every
- same as all
, but lists all failing elements if it fails (whereas all
just reports the first failing element)
* exactly
- succeeds if the assertion holds true for exactly the specified number of elements
*
*
*
* Here are some examples:
*
*
*
* scala> import org.scalatest.matchers.must.Matchers._
* import org.scalatest.matchers.must.Matchers._
*
* scala> val xs = List(1, 2, 3, 4, 5)
* xs: List[Int] = List(1, 2, 3, 4, 5)
*
* scala> all (xs) must be > 0
*
* scala> atMost (2, xs) must be >= 4
*
* scala> atLeast (3, xs) must be < 5
*
* scala> between (2, 3, xs) must (be > 1 and be < 5)
*
* scala> exactly (2, xs) must be <= 2
*
* scala> every (xs) must be < 10
*
* scala> // And one that fails...
*
* scala> exactly (2, xs) mustEqual 2
* org.scalatest.exceptions.TestFailedException: 'exactly(2)' inspection failed, because only 1 element
* satisfied the assertion block at index 1:
* at index 0, 1 did not equal 2,
* at index 2, 3 did not equal 2,
* at index 3, 4 did not equal 2,
* at index 4, 5 did not equal 2
* in List(1, 2, 3, 4, 5)
* at ...
*
*
*
* Like Inspectors
, objects used with inspector shorthands can be any type T
for which a Collecting[T, E]
* is availabe, which by default includes GenTraversable
,
* Java Collection
, Java Map
, Array
s, and String
s.
* Here are some examples:
*
*
*
* scala> import org.scalatest._
* import org.scalatest._
*
* scala> import matchers.must.Matchers._
* import matchers.must.Matchers._
*
* scala> all (Array(1, 2, 3)) must be < 5
*
* scala> import collection.JavaConverters._
* import collection.JavaConverters._
*
* scala> val js = List(1, 2, 3).asJava
* js: java.util.List[Int] = [1, 2, 3]
*
* scala> all (js) must be < 5
*
* scala> val jmap = Map("a" -> 1, "b" -> 2).asJava
* jmap: java.util.Map[String,Int] = {a=1, b=2}
*
* scala> atLeast(1, jmap) mustBe Entry("b", 2)
*
* scala> atLeast(2, "hello, world!") mustBe 'o'
*
*
*
* Single-element collections
*
*
* To assert both that a collection contains just one "lone" element as well as something else about that element, you can use
* the loneElement
syntax provided by trait LoneElement
. For example, if a
* Set[Int]
must contain just one element, an Int
* less than or equal to 10, you could write:
*
*
*
* import LoneElement._
* set.loneElement must be <= 10
*
*
*
* You can invoke loneElement
on any type T
for which an implicit Collecting[E, T]
* is available, where E
is the element type returned by the loneElement
invocation. By default, you can use loneElement
* on GenTraversable
, Java Collection
, Java Map
, Array
, and String
.
*
*
*
* Java collections and maps
*
*
* You can use similar syntax on Java collections (java.util.Collection
) and maps (java.util.Map
).
* For example, you can check whether a Java Collection
or Map
is empty
,
* like this:
*
*
*
* javaCollection must be ('empty)
* javaMap must be ('empty)
*
*
*
* Even though Java's List
type doesn't actually have a length
or getLength
method,
* you can nevertheless check the length of a Java List
(java.util.List
) like this:
*
*
*
* javaList must have length 9
*
*
*
* You can check the size of any Java Collection
or Map
, like this:
*
*
*
* javaMap must have size 20
* javaSet must have size 90
*
*
*
* In addition, you can check whether a Java Collection
contains a particular
* element, like this:
*
*
*
* javaCollection must contain ("five")
*
*
*
* One difference to note between the syntax supported on Java and Scala collections is that
* in Java, Map
is not a subtype of Collection
, and does not
* actually define an element type. You can ask a Java Map
for an "entry set"
* via the entrySet
method, which will return the Map
's key/value pairs
* wrapped in a set of java.util.Map.Entry
, but a Map
is not actually
* a collection of Entry
. To make Java Map
s easier to work with, however,
* ScalaTest matchers allows you to treat a Java Map
as a collection of Entry
,
* and defines a convenience implementation of java.util.Map.Entry
in
* org.scalatest.Entry
. Here's how you use it:
*
*
*
* javaMap must contain (Entry(2, 3))
* javaMap must contain oneOf (Entry(2, 3), Entry(3, 4))
*
*
* You can you alse just check whether a Java Map
contains a particular key, or value, like this:
*
*
* javaMap must contain key 1
* javaMap must contain value "Howdy"
*
*
*
* String
s and Array
s as collections
*
*
* You can also use all the syntax described above for Scala and Java collections on Array
s and
* String
s. Here are some examples:
*
*
*
* scala> import org.scalatest._
* import org.scalatest._
*
* scala> import matchers.must.Matchers._
* import matchers.must.Matchers._
*
* scala> atLeast (2, Array(1, 2, 3)) must be > 1
*
* scala> atMost (2, "halloo") mustBe 'o'
*
* scala> Array(1, 2, 3) mustBe sorted
*
* scala> "abcdefg" mustBe sorted
*
* scala> Array(1, 2, 3) must contain atMostOneOf (3, 4, 5)
*
* scala> "abc" must contain atMostOneOf ('c', 'd', 'e')
*
*
*
* be
as an equality comparison
*
*
* All uses of be
other than those shown previously perform an equality comparison. They work
* the same as equal
when it is used with default equality. This redundancy between be
and equals
exists in part
* because it enables syntax that sometimes sounds more natural. For example, instead of writing:
*
*
*
* result must equal (null)
*
*
*
* You can write:
*
*
*
* result must be (null)
*
*
*
* (Hopefully you won't write that too much given null
is error prone, and Option
* is usually a better, well, option.)
* As mentioned previously, the other difference between equal
* and be
is that equal
delegates the equality check to an Equality
typeclass, whereas
* be
always uses default equality.
* Here are some other examples of be
used for equality comparison:
*
*
*
* sum must be (7.0)
* boring must be (false)
* fun must be (true)
* list must be (Nil)
* option must be (None)
* option must be (Some(1))
*
*
*
* As with equal
used with default equality, using be
on arrays results in deep
being called on both arrays prior to
* calling equal
. As a result,
* the following expression would not throw a TestFailedException
:
*
*
*
* Array(1, 2) must be (Array(1, 2)) // succeeds (i.e., does not throw TestFailedException)
*
*
*
* Because be
is used in several ways in ScalaTest matcher syntax, just as it is used in many ways in English, one
* potential point of confusion in the event of a failure is determining whether be
was being used as an equality comparison or
* in some other way, such as a property assertion. To make it more obvious when be
is being used for equality, the failure
* messages generated for those equality checks will include the word equal
in them. For example, if this expression fails with a
* TestFailedException
:
*
*
*
* option must be (Some(1))
*
*
*
* The detail message in that TestFailedException
will include the words "equal to"
to signify be
* was in this case being used for equality comparison:
*
*
*
* Some(2) was not equal to Some(1)
*
*
*
* Being negative
*
*
* If you wish to check the opposite of some condition, you can simply insert not
in the expression.
* Here are a few examples:
*
*
*
* result must not be (null)
* sum must not be <= (10)
* mylist must not equal (yourList)
* string must not startWith ("Hello")
*
*
*
* Checking that a snippet of code does not compile
*
*
* Often when creating libraries you may wish to ensure that certain arrangements of code that
* represent potential “user errors” do not compile, so that your library is more error resistant.
* ScalaTest Matchers
trait includes the following syntax for that purpose:
*
*
*
* "val a: String = 1" mustNot compile
*
*
*
* If you want to ensure that a snippet of code does not compile because of a type error (as opposed
* to a syntax error), use:
*
*
*
* "val a: String = 1" mustNot typeCheck
*
*
*
* Note that the mustNot
typeCheck
syntax will only succeed if the given snippet of code does not
* compile because of a type error. A syntax error will still result on a thrown TestFailedException
.
*
*
*
* If you want to state that a snippet of code does compile, you can make that
* more obvious with:
*
*
*
* "val a: Int = 1" must compile
*
*
*
* Although the previous three constructs are implemented with macros that determine at compile time whether
* the snippet of code represented by the string does or does not compile, errors
* are reported as test failures at runtime.
*
*
*
* Logical expressions with and
and or
*
*
* You can also combine matcher expressions with and
and/or or
, however,
* you must place parentheses or curly braces around the and
or or
expression. For example,
* this and
-expression would not compile, because the parentheses are missing:
*
*
*
* map must contain key ("two") and not contain value (7) // ERROR, parentheses missing!
*
*
*
* Instead, you need to write:
*
*
*
* map must (contain key ("two") and not contain value (7))
*
*
*
* Here are some more examples:
*
*
*
* number must (be > (0) and be <= (10))
* option must (equal (Some(List(1, 2, 3))) or be (None))
* string must (
* equal ("fee") or
* equal ("fie") or
* equal ("foe") or
* equal ("fum")
* )
*
*
*
* Two differences exist between expressions composed of these and
and or
operators and the expressions you can write
* on regular Boolean
s using its &&
and ||
operators. First, expressions with and
* and or
do not short-circuit. The following contrived expression, for example, would print "hello, world!"
:
*
*
*
* "yellow" must (equal ("blue") and equal { println("hello, world!"); "green" })
*
*
*
* In other words, the entire and
or or
expression is always evaluated, so you'll see any side effects
* of the right-hand side even if evaluating
* only the left-hand side is enough to determine the ultimate result of the larger expression. Failure messages produced by these
* expressions will "short-circuit," however,
* mentioning only the left-hand side if that's enough to determine the result of the entire expression. This "short-circuiting" behavior
* of failure messages is intended
* to make it easier and quicker for you to ascertain which part of the expression caused the failure. The failure message for the previous
* expression, for example, would be:
*
*
*
* "yellow" did not equal "blue"
*
*
*
* Most likely this lack of short-circuiting would rarely be noticeable, because evaluating the right hand side will usually not
* involve a side effect. One situation where it might show up, however, is if you attempt to and
a null
check on a variable with an expression
* that uses the variable, like this:
*
*
*
* map must (not be (null) and contain key ("ouch"))
*
*
*
* If map
is null
, the test will indeed fail, but with a NullArgumentException
, not a
* TestFailedException
. Here, the NullArgumentException
is the visible right-hand side effect. To get a
* TestFailedException
, you would need to check each assertion separately:
*
*
*
* map must not be (null)
* map must contain key ("ouch")
*
*
*
* If map
is null
in this case, the null
check in the first expression will fail with
* a TestFailedException
, and the second expression will never be executed.
*
*
*
* The other difference with Boolean
operators is that although &&
has a higher precedence than ||
,
* and
and or
* have the same precedence. Thus although the Boolean
expression (a || b && c)
will evaluate the &&
expression
* before the ||
expression, like (a || (b && c))
, the following expression:
*
*
*
* traversable must (contain (7) or contain (8) and have size (9))
*
*
*
* Will evaluate left to right, as:
*
*
*
* traversable must ((contain (7) or contain (8)) and have size (9))
*
*
*
* If you really want the and
part to be evaluated first, you'll need to put in parentheses, like this:
*
*
*
* traversable must (contain (7) or (contain (8) and have size (9)))
*
*
*
* Working with Option
s
*
*
* You can work with options using ScalaTest's equality, empty
,
* defined
, and contain
syntax.
* For example, if you wish to check whether an option is None
, you can write any of:
*
*
*
* option mustEqual None
* option mustBe None
* option must === (None)
* option mustBe empty
*
*
*
* If you wish to check an option is defined, and holds a specific value, you can write any of:
*
*
*
* option mustEqual Some("hi")
* option mustBe Some("hi")
* option must === (Some("hi"))
*
*
*
* If you only wish to check that an option is defined, but don't care what it's value is, you can write:
*
*
*
* option mustBe defined
*
*
*
* If you mix in (or import the members of) OptionValues
,
* you can write one statement that indicates you believe an option must be defined and then say something else about its value. Here's an example:
*
*
*
* import org.scalatest.OptionValues._
* option.value must be < 7
*
*
*
* As mentioned previously, you can use also use ScalaTest's contain
, contain oneOf
, and
* contain noneOf
syntax with options:
*
*
*
* Some(2) must contain (2)
* Some(7) must contain oneOf (5, 7, 9)
* Some(0) must contain noneOf (7, 8, 9)
*
*
*
*
* Checking arbitrary properties with have
*
*
* Using have
, you can check properties of any type, where a property is an attribute of any
* object that can be retrieved either by a public field, method, or JavaBean-style get
* or is
method, like this:
*
*
*
* book must have (
* 'title ("Programming in Scala"),
* 'author (List("Odersky", "Spoon", "Venners")),
* 'pubYear (2008)
* )
*
*
*
* This expression will use reflection to ensure the title
, author
, and pubYear
properties of object book
* are equal to the specified values. For example, it will ensure that book
has either a public Java field or method
* named title
, or a public method named getTitle
, that when invoked (or accessed in the field case) results
* in a the string "Programming in Scala"
. If all specified properties exist and have their expected values, respectively,
* execution will continue. If one or more of the properties either does not exist, or exists but results in an unexpected value,
* a TestFailedException
will be thrown that explains the problem. (For the details on how a field or method is selected during this
* process, see the documentation for HavePropertyMatcherGenerator
.)
*
*
*
* When you use this syntax, you must place one or more property values in parentheses after have
, seperated by commas, where a property
* value is a symbol indicating the name of the property followed by the expected value in parentheses. The only exceptions to this rule is the syntax
* for checking size and length shown previously, which does not require parentheses. If you forget and put parentheses in, however, everything will
* still work as you'd expect. Thus instead of writing:
*
*
*
* array must have length (3)
* set must have size (90)
*
*
*
* You can alternatively, write:
*
*
*
* array must have (length (3))
* set must have (size (90))
*
*
*
* If a property has a value different from the specified expected value, a TestFailedError
will be thrown
* with a detailed message that explains the problem. For example, if you assert the following on
* a book
whose title is Moby Dick
:
*
*
*
* book must have ('title ("A Tale of Two Cities"))
*
*
*
* You'll get a TestFailedException
with this detail message:
*
*
*
* The title property had value "Moby Dick", instead of its expected value "A Tale of Two Cities",
* on object Book("Moby Dick", "Melville", 1851)
*
*
*
* If you prefer to check properties in a type-safe manner, you can use a HavePropertyMatcher
.
* This would allow you to write expressions such as:
*
*
*
* book must have (
* title ("Programming in Scala"),
* author (List("Odersky", "Spoon", "Venners")),
* pubYear (2008)
* )
*
*
*
* These expressions would fail to compile if must
is used on an inappropriate type, as determined
* by the type parameter of the HavePropertyMatcher
being used. (For example, title
in this example
* might be of type HavePropertyMatcher[org.publiclibrary.Book]
. If used with an appropriate type, such an expression will compile
* and at run time the property method or field will be accessed directly; i.e., no reflection will be used.
* See the documentation for HavePropertyMatcher
for more information.
*
*
*
* Using length
and size
with HavePropertyMatcher
s
*
*
* If you want to use length
or size
syntax with your own custom HavePropertyMatcher
s, you
* can do so, but you must write (of [“the type”])
afterwords. For example, you could write:
*
*
*
* book must have (
* title ("A Tale of Two Cities"),
* length (220) (of [Book]),
* author ("Dickens")
* )
*
*
*
* Prior to ScalaTest 2.0, “length
(22)
” yielded a HavePropertyMatcher[Any, Int]
that used reflection to dynamically look
* for a length
field or getLength
method. In ScalaTest 2.0, “length
(22)
” yields a
* MatcherFactory1[Any, Length]
, so it is no longer a HavePropertyMatcher
. The (of [<type>])
syntax converts the
* the MatcherFactory1[Any, Length]
to a HavePropertyMatcher[<type>, Int]
.
*
*
*
* Checking that an expression matches a pattern
*
*
* ScalaTest's Inside
trait allows you to make assertions after a pattern match.
* Here's an example:
*
*
*
* case class Name(first: String, middle: String, last: String)
*
* val name = Name("Jane", "Q", "Programmer")
*
* inside(name) { case Name(first, _, _) =>
* first must startWith ("S")
* }
*
*
*
* You can use inside
to just ensure a pattern is matched, without making any further assertions, but a better
* alternative for that kind of assertion is matchPattern
. The matchPattern
syntax allows you
* to express that you expect a value to match a particular pattern, no more and no less:
*
*
*
* name must matchPattern { case Name("Sarah", _, _) => }
*
*
*
* Using custom matchers
*
*
* If none of the built-in matcher syntax (or options shown so far for extending the syntax) satisfy a particular need you have, you can create
* custom Matcher
s that allow
* you to place your own syntax directly after must
. For example, class java.io.File
has a method isHidden
, which
* indicates whether a file of a certain path and name is hidden. Because the isHidden
method takes no parameters and returns Boolean
,
* you can call it using be
with a symbol or BePropertyMatcher
, yielding assertions like:
*
*
*
* file must be ('hidden) // using a symbol
* file must be (hidden) // using a BePropertyMatcher
*
*
*
* If it doesn't make sense to have your custom syntax follow be
, you might want to create a custom Matcher
* instead, so your syntax can follow must
directly. For example, you might want to be able to check whether
* a java.io.File
's name ends with a particular extension, like this:
*
*
*
* // using a plain-old Matcher
* file must endWithExtension ("txt")
*
*
*
* ScalaTest provides several mechanism to make it easy to create custom matchers, including ways to compose new matchers
* out of existing ones complete with new error messages. For more information about how to create custom
* Matcher
s, please see the documentation for the Matcher
trait.
*
*
*
* Checking for expected 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. With Matchers
mixed in, you can
* check for an expected exception like this:
*
*
*
* an [IndexOutOfBoundsException] must be thrownBy s.charAt(-1)
*
*
*
* If charAt
throws an instance of StringIndexOutOfBoundsException
,
* this expression will result in that exception. But if charAt
completes normally, or throws a different
* exception, this expression will complete abruptly with a TestFailedException
.
*
*
* If you need to further isnpect an expected exception, you can capture it using this syntax:
*
*
*
* val thrown = the [IndexOutOfBoundsException] thrownBy s.charAt(-1)
*
*
*
* This expression 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:
*
*
*
* thrown.getMessage must equal ("String index out of range: -1")
*
*
*
* If you prefer you can also capture and inspect an expected exception in one statement, like this:
*
*
*
* the [ArithmeticException] thrownBy 1 / 0 must have message "/ by zero"
* the [IndexOutOfBoundsException] thrownBy {
* s.charAt(-1)
* } must have message "String index out of range: -1"
*
*
*
* You can also state that no exception must be thrown by some code, like this:
*
*
*
* noException must be thrownBy 0 / 1
*
*
*
* Those pesky parens
*
*
* Perhaps the most tricky part of writing assertions using ScalaTest matchers is remembering
* when you need or don't need parentheses, but bearing in mind a few simple rules should help.
* It is also reassuring to know that if you ever leave off a set of parentheses when they are
* required, your code will not compile. Thus the compiler will help you remember when you need the parens.
* That said, the rules are:
*
*
*
* 1. Although you don't always need them, you may choose to always put parentheses
* around right-hand values, such as the 7
in num must equal (7)
:
*
*
*
* result must equal (4)
* array must have length (3)
* book must have (
* 'title ("Programming in Scala"),
* 'author (List("Odersky", "Spoon", "Venners")),
* 'pubYear (2008)
* )
* option must be ('defined)
* catMap must (contain key (9) and contain value ("lives"))
* keyEvent must be an ('actionKey)
* javaSet must have size (90)
*
*
*
* 2. Except for length
, size
and message
, you must always put parentheses around
* the list of one or more property values following a have
:
*
*
*
* file must (exist and have ('name ("temp.txt")))
* book must have (
* title ("Programming in Scala"),
* author (List("Odersky", "Spoon", "Venners")),
* pubYear (2008)
* )
* javaList must have length (9) // parens optional for length and size
*
*
*
* 3. You must always put parentheses around and
and or
expressions, as in:
*
*
*
* catMap must (contain key (9) and contain value ("lives"))
* number must (equal (2) or equal (4) or equal (8))
*
*
*
* 4. Although you don't always need them, you may choose to always put parentheses
* around custom Matcher
s when they appear directly after not
:
*
*
*
* file must exist
* file must not (exist)
* file must (exist and have ('name ("temp.txt")))
* file must (not (exist) and have ('name ("temp.txt"))
* file must (have ('name ("temp.txt") or exist)
* file must (have ('name ("temp.txt") or not (exist))
*
*
*
* That's it. With a bit of practice it should become natural to you, and the compiler will always be there to tell you if you
* forget a set of needed parentheses.
*
*
*
* Note: ScalaTest's matchers are in part inspired by the matchers of RSpec,
* Hamcrest, and
* specs2, and its “mustNot compile
” syntax
* by the illTyped
macro of shapeless.
*
*
* @author Bill Venners
* @author Chua Chee Seng
*/
trait Matchers extends Assertions with Tolerance with MustVerb with MatcherWords with Explicitly { matchers =>
import scala.language.implicitConversions
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
class ResultOfBeWordForAny[T](left: T, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax (positiveNumber is a AMatcher
):
*
*
* 1 must be a positiveNumber
* ^
*
*/
infix def a(aMatcher: AMatcher[T]): Assertion = {
val matcherResult = aMatcher(left)
if (matcherResult.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) matcherResult.failureMessage(prettifier) else matcherResult.negatedFailureMessage(prettifier), None, pos)
} else indicateSuccess(mustBeTrue, matcherResult.negatedFailureMessage(prettifier), matcherResult.failureMessage(prettifier))
}
/**
* This method enables the following syntax (positiveNumber is a AnMatcher
):
*
*
* 1 must be an oddNumber
* ^
*
*/
infix def an(anMatcher: AnMatcher[T]): Assertion = {
val matcherResult = anMatcher(left)
if (matcherResult.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) matcherResult.failureMessage(prettifier) else matcherResult.negatedFailureMessage(prettifier), None, pos)
} else indicateSuccess(mustBeTrue, matcherResult.negatedFailureMessage(prettifier), matcherResult.failureMessage(prettifier))
}
/**
* This method enables the following syntax:
*
*
* result must be theSameInstanceAs anotherObject
* ^
*
*/
infix def theSameInstanceAs(right: AnyRef)(implicit toAnyRef: T <:< AnyRef): Assertion = {
if ((toAnyRef(left) eq right) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.wasNotSameInstanceAs(prettifier, left, right) else FailureMessages.wasSameInstanceAs(prettifier, left, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.wasSameInstanceAs(prettifier, left, right), FailureMessages.wasNotSameInstanceAs(prettifier, left, right))
}
/* *
* This method enables the following syntax:
*
*
* result must be a [String]
* ^
*
infix def a[EXPECTED : ClassManifest] {
val clazz = implicitly[ClassManifest[EXPECTED]].erasure.asInstanceOf[Class[EXPECTED]]
if (clazz.isAssignableFrom(left.getClass)) {
throw newTestFailedException(
if (mustBeTrue)
FailureMessages.wasNotAnInstanceOf(prettifier, left, UnquotedString(clazz.getName), UnquotedString(left.getClass.getName))
else
FailureMessages.wasAnInstanceOf
)
}
}
*/
// TODO: Check the mustBeTrues, are they sometimes always false or true?
/**
* This method enables the following syntax, where badBook
is, for example, of type Book
and
* goodRead
refers to a BePropertyMatcher[Book]
:
*
*
* badBook must be a (goodRead)
* ^
*
*/
infix def a(bePropertyMatcher: BePropertyMatcher[T])(implicit ev: T <:< AnyRef): Assertion = { // TODO: Try expanding this to 2.10 AnyVals
val result = bePropertyMatcher(left)
if (result.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotA(prettifier, left, UnquotedString(result.propertyName)) else FailureMessages.wasA(prettifier, left, UnquotedString(result.propertyName)), None, pos)
} else indicateSuccess(mustBeTrue, FailureMessages.wasA(prettifier, left, UnquotedString(result.propertyName)), FailureMessages.wasNotA(prettifier, left, UnquotedString(result.propertyName)))
}
/**
* This method enables the following syntax, where badBook
is, for example, of type Book
and
* excellentRead
refers to a BePropertyMatcher[Book]
:
*
*
* book must be an (excellentRead)
* ^
*
*/
infix def an(beTrueMatcher: BePropertyMatcher[T])(implicit ev: T <:< AnyRef): Assertion = { // TODO: Try expanding this to 2.10 AnyVals
val beTrueMatchResult = beTrueMatcher(left)
if (beTrueMatchResult.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotAn(prettifier, left, UnquotedString(beTrueMatchResult.propertyName)) else FailureMessages.wasAn(prettifier, left, UnquotedString(beTrueMatchResult.propertyName)), None, pos)
} else indicateSuccess(mustBeTrue, FailureMessages.wasAn(prettifier, left, UnquotedString(beTrueMatchResult.propertyName)), FailureMessages.wasNotAn(prettifier, left, UnquotedString(beTrueMatchResult.propertyName)))
}
/**
* This method enables the following syntax, where fraction
is, for example, of type PartialFunction
:
*
*
* fraction must be definedAt (6)
* ^
*
*/
infix def definedAt[U](right: U)(implicit ev: T <:< PartialFunction[U, _]): Assertion = {
if (left.isDefinedAt(right) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.wasNotDefinedAt(prettifier, left, right) else FailureMessages.wasDefinedAt(prettifier, left, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.wasDefinedAt(prettifier, left, right), FailureMessages.wasNotDefinedAt(prettifier, left, right))
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfBeWordForAny([left], [mustBeTrue])"
*/
override def toString: String = "ResultOfBeWordForAny(" + Prettifier.default(left) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class RegexWord {
/**
* This method enables the following syntax:
*
*
* "eight" must not fullyMatch regex ("""(-)?(\d+)(\.\d*)?""".r)
* ^
*
*/
def apply(regexString: String): ResultOfRegexWordApplication =
new ResultOfRegexWordApplication(regexString, IndexedSeq.empty)
/**
* This method enables the following syntax:
*
*
* "eight" must not fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
* ^
*
*/
def apply(regex: Regex): ResultOfRegexWordApplication =
new ResultOfRegexWordApplication(regex, IndexedSeq.empty)
/**
* This method enables the following syntax:
*
*
* string must not fullyMatch regex ("a(b*)c" withGroup "bb")
* ^
*
*/
def apply(regexWithGroups: RegexWithGroups) =
new ResultOfRegexWordApplication(regexWithGroups.regex, regexWithGroups.groups)
/**
* Overrides to return "regex"
*/
override def toString: String = "regex"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class ResultOfIncludeWordForString(left: String, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* string must include regex ("world")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
regex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* string must include regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion = {
val result = includeRegexWithGroups(left, regexWithGroups.regex, regexWithGroups.groups)
if (result.matches != mustBeTrue)
indicateFailure(if (mustBeTrue) result.failureMessage(prettifier) else result.negatedFailureMessage(prettifier), None, pos)
else indicateSuccess(mustBeTrue, result.negatedFailureMessage(prettifier), result.failureMessage(prettifier))
}
/**
* This method enables the following syntax:
*
*
* string must include regex ("wo.ld".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion = {
if (rightRegex.findFirstIn(left).isDefined != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotIncludeRegex(prettifier, left, rightRegex) else FailureMessages.includedRegex(prettifier, left, rightRegex), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.includedRegex(prettifier, left, rightRegex), FailureMessages.didNotIncludeRegex(prettifier, left, rightRegex))
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfIncludeWordForString([left], [mustBeTrue])"
*/
override def toString: String = "ResultOfIncludeWordForString(" + Prettifier.default(left) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class ResultOfStartWithWordForString(left: String, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* string must startWith regex ("Hel*o")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
regex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* string must startWith regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion = {
val result = startWithRegexWithGroups(left, regexWithGroups.regex, regexWithGroups.groups)
if (result.matches != mustBeTrue)
indicateFailure(if (mustBeTrue) result.failureMessage(prettifier) else result.negatedFailureMessage(prettifier), None, pos)
else indicateSuccess(mustBeTrue, result.negatedFailureMessage(prettifier), result.failureMessage(prettifier))
}
/**
* This method enables the following syntax:
*
*
* string must startWith regex ("Hel*o".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion = {
if (rightRegex.pattern.matcher(left).lookingAt != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotStartWithRegex(prettifier, left, rightRegex) else FailureMessages.startedWithRegex(prettifier, left, rightRegex), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.startedWithRegex(prettifier, left, rightRegex), FailureMessages.didNotStartWithRegex(prettifier, left, rightRegex))
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfStartWithWordForString([left], [mustBeTrue])"
*/
override def toString: String = "ResultOfStartWithWordForString(" + Prettifier.default(left) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class ResultOfEndWithWordForString(left: String, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* string must endWith regex ("wor.d")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
regex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* string must endWith regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion = {
val result = endWithRegexWithGroups(left, regexWithGroups.regex, regexWithGroups.groups)
if (result.matches != mustBeTrue)
indicateFailure(if (mustBeTrue) result.failureMessage(prettifier) else result.negatedFailureMessage(prettifier), None, pos)
else indicateSuccess(mustBeTrue, result.negatedFailureMessage(prettifier), result.failureMessage(prettifier))
}
/**
* This method enables the following syntax:
*
*
* string must endWith regex ("wor.d".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion = {
val allMatches = rightRegex.findAllIn(left)
if ((allMatches.hasNext && (allMatches.end == left.length)) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotEndWithRegex(prettifier, left, rightRegex) else FailureMessages.endedWithRegex(prettifier, left, rightRegex), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.endedWithRegex(prettifier, left, rightRegex), FailureMessages.didNotEndWithRegex(prettifier, left, rightRegex))
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfEndWithWordForString([left], [mustBeTrue])"
*/
override def toString: String = "ResultOfEndWithWordForString(" + Prettifier.default(left) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class ResultOfFullyMatchWordForString(left: String, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* string must fullMatch regex ("Hel*o world")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
regex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* string must fullMatch regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion = {
val result = fullyMatchRegexWithGroups(left, regexWithGroups.regex, regexWithGroups.groups)
if (result.matches != mustBeTrue)
indicateFailure(if (mustBeTrue) result.failureMessage(prettifier) else result.negatedFailureMessage(prettifier), None, pos)
else indicateSuccess(mustBeTrue, result.negatedFailureMessage(prettifier), result.failureMessage(prettifier))
}
/**
* This method enables the following syntax:
*
*
* string must fullymatch regex ("Hel*o world".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion = {
if (rightRegex.pattern.matcher(left).matches != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotFullyMatchRegex(prettifier, left, rightRegex) else FailureMessages.fullyMatchedRegex(prettifier, left, rightRegex), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.fullyMatchedRegex(prettifier, left, rightRegex), FailureMessages.didNotFullyMatchRegex(prettifier, left, rightRegex))
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfFullyMatchWordForString([left], [mustBeTrue])"
*/
override def toString: String = "ResultOfFullyMatchWordForString(" + Prettifier.default(left) + ", " + Prettifier.default(mustBeTrue) + ")"
}
// Going back to original, legacy one to get to a good place to check in.
/*
def equal(right: Any): Matcher[Any] =
new Matcher[Any] {
def apply(left: Any): MatchResult = {
val (leftee, rightee) = Suite.getObjectsForFailureMessage(left, right)
MatchResult(
areEqualComparingArraysStructurally(left, right),
FailureMessages.didNotEqual(prettifier, leftee, rightee),
FailureMessages.equaled(prettifier, left, right)
)
}
}
*/
/**
* This method enables syntax such as the following:
*
*
* result must equal (100 +- 1)
* ^
*
*/
def equal[T](spread: Spread[T]): Matcher[T] = {
new Matcher[T] {
def apply(left: T): MatchResult = {
MatchResult(
spread.isWithin(left),
Resources.rawDidNotEqualPlusOrMinus,
Resources.rawEqualedPlusOrMinus,
Vector(left, spread.pivot, spread.tolerance)
)
}
override def toString: String = "equal (" + Prettifier.default(spread) + ")"
}
}
/**
* This method enables syntax such as the following:
*
*
* result must equal (null)
* ^
*
*/
def equal(o: Null): Matcher[AnyRef] =
new Matcher[AnyRef] {
def apply(left: AnyRef): MatchResult = {
MatchResult(
left == null,
Resources.rawDidNotEqualNull,
Resources.rawEqualedNull,
Resources.rawDidNotEqualNull,
Resources.rawMidSentenceEqualedNull,
Vector(left),
Vector.empty
)
}
override def toString: String = "equal (" + Prettifier.default(o) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class KeyWord {
/**
* This method enables the following syntax:
*
*
* map must not contain key (10)
* ^
*
*/
def apply(expectedKey: Any): ResultOfKeyWordApplication =
new ResultOfKeyWordApplication(expectedKey)
/**
* Overrides to return pretty toString.
*
* @return "key"
*/
override def toString: String = "key"
}
/**
* This field enables the following syntax:
*
*
* map must not contain key (10)
* ^
*
*/
val key = new KeyWord
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class ValueWord {
/**
* This method enables the following syntax:
*
*
* map must not contain key (10)
* ^
*
*/
def apply(expectedValue: Any): ResultOfValueWordApplication =
new ResultOfValueWordApplication(expectedValue)
/**
* Overrides to return pretty toString.
*
* @return "value"
*/
override def toString: String = "value"
}
/**
* This field enables the following syntax:
*
*
* map must not contain value (10)
* ^
*
*/
val value = new ValueWord
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class AWord {
/**
* This method enables the following syntax:
*
*
* badBook must not be a ('goodRead)
* ^
*
*/
def apply(symbol: Symbol): ResultOfAWordToSymbolApplication =
new ResultOfAWordToSymbolApplication(symbol)
/**
* This method enables the following syntax, where, for example, badBook
is of type Book
and goodRead
* is a BePropertyMatcher[Book]
:
*
*
* badBook must not be a (goodRead)
* ^
*
*/
def apply[T](beTrueMatcher: BePropertyMatcher[T]): ResultOfAWordToBePropertyMatcherApplication[T] =
new ResultOfAWordToBePropertyMatcherApplication(beTrueMatcher)
/**
* This method enables the following syntax, where, positiveNumber
is an AMatcher[Book]
:
*
*
* result must not be a (positiveNumber)
* ^
*
*/
def apply[T](aMatcher: AMatcher[T]): ResultOfAWordToAMatcherApplication[T] =
new ResultOfAWordToAMatcherApplication(aMatcher)
/**
* Overrides to return pretty toString.
*
* @return "a"
*/
override def toString: String = "a"
}
/**
* This field enables the following syntax:
*
*
* badBook must not be a ('goodRead)
* ^
*
*/
val a = new AWord
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class AnWord {
/**
* This method enables the following syntax:
*
*
* badBook must not be an ('excellentRead)
* ^
*
*/
def apply(symbol: Symbol): ResultOfAnWordToSymbolApplication =
new ResultOfAnWordToSymbolApplication(symbol)
/**
* This method enables the following syntax, where, for example, badBook
is of type Book
and excellentRead
* is a BePropertyMatcher[Book]
:
*
*
* badBook must not be an (excellentRead)
* ^
*
*/
def apply[T](beTrueMatcher: BePropertyMatcher[T]): ResultOfAnWordToBePropertyMatcherApplication[T] =
new ResultOfAnWordToBePropertyMatcherApplication(beTrueMatcher)
/**
* This method enables the following syntax, where, positiveNumber
is an AnMatcher[Book]
:
*
*
* result must not be an (positiveNumber)
* ^
*
*/
def apply[T](anMatcher: AnMatcher[T]): ResultOfAnWordToAnMatcherApplication[T] =
new ResultOfAnWordToAnMatcherApplication(anMatcher)
/**
* Overrides to return pretty toString.
*
* @return "an"
*/
override def toString: String = "an"
}
/**
* This field enables the following syntax:
*
*
* badBook must not be an (excellentRead)
* ^
*
*/
val an = new AnWord
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class TheSameInstanceAsPhrase {
/**
* This method enables the following syntax:
*
*
* oneString must not be theSameInstanceAs (anotherString)
* ^
*
*/
def apply(anyRef: AnyRef): ResultOfTheSameInstanceAsApplication =
new ResultOfTheSameInstanceAsApplication(anyRef)
/**
* Overrides to return pretty toString.
*
* @return "theSameInstanceAs"
*/
override def toString: String = "theSameInstanceAs"
}
/**
* This field enables the following syntax:
*
*
* oneString must not be theSameInstanceAs (anotherString)
* ^
*
*/
val theSameInstanceAs: TheSameInstanceAsPhrase = new TheSameInstanceAsPhrase
/**
* This field enables the following syntax:
*
*
* "eight" must not fullyMatch regex ("""(-)?(\d+)(\.\d*)?""".r)
* ^
*
*/
val regex = new RegexWord
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class ResultOfHaveWordForExtent[A](left: A, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* obj must have length (2L)
* ^
*
*
*
* This method is ultimately invoked for objects that have a length
property structure
* of type Long
,
* but is of a type that is not handled by implicit conversions from nominal types such as
* scala.Seq
, java.lang.String
, and java.util.List
.
*
*/
infix def length(expectedLength: Long)(implicit len: Length[A]): Assertion = {
val leftLength = len.lengthOf(left)
if ((leftLength == expectedLength) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.hadLengthInsteadOfExpectedLength(prettifier, left, leftLength, expectedLength) else FailureMessages.hadLength(prettifier, left, expectedLength), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.hadLength(prettifier, left, expectedLength), FailureMessages.hadLengthInsteadOfExpectedLength(prettifier, left, leftLength, expectedLength))
}
/**
* This method enables the following syntax:
*
*
* obj must have size (2L)
* ^
*
*
*
* This method is ultimately invoked for objects that have a size
property structure
* of type Long
,
* but is of a type that is not handled by implicit conversions from nominal types such as
* Traversable
and java.util.Collection
.
*
*/
infix def size(expectedSize: Long)(implicit sz: Size[A]): Assertion = {
val leftSize = sz.sizeOf(left)
if ((leftSize == expectedSize) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.hadSizeInsteadOfExpectedSize(prettifier, left, leftSize, expectedSize) else FailureMessages.hadSize(prettifier, left, expectedSize), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.hadSize(prettifier, left, expectedSize), FailureMessages.hadSizeInsteadOfExpectedSize(prettifier, left, leftSize, expectedSize))
}
/**
* This method enables the following syntax:
*
*
* exception must have message ("file not found")
* ^
*
*/
infix def message(expectedMessage: String)(implicit messaging: Messaging[A]): Assertion = {
val actualMessage = messaging.messageOf(left)
if ((actualMessage== expectedMessage) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.hadMessageInsteadOfExpectedMessage(prettifier, left, actualMessage, expectedMessage) else FailureMessages.hadExpectedMessage(prettifier, left, expectedMessage), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.hadExpectedMessage(prettifier, left, expectedMessage), FailureMessages.hadMessageInsteadOfExpectedMessage(prettifier, left, actualMessage, expectedMessage))
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfHaveWordForExtent([left], [mustBeTrue])"
*/
override def toString: String = "ResultOfHaveWordForExtent(" + Prettifier.default(left) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This method enables the following syntax:
*
*
* num must (not be < (10) and not be > (17))
* ^
*
*/
def <[T : Ordering] (right: T): ResultOfLessThanComparison[T] =
new ResultOfLessThanComparison(right)
/**
* This method enables the following syntax:
*
*
* num must (not be > (10) and not be < (7))
* ^
*
*/
def >[T : Ordering] (right: T): ResultOfGreaterThanComparison[T] =
new ResultOfGreaterThanComparison(right)
/**
* This method enables the following syntax:
*
*
* num must (not be <= (10) and not be > (17))
* ^
*
*/
def <=[T : Ordering] (right: T): ResultOfLessThanOrEqualToComparison[T] =
new ResultOfLessThanOrEqualToComparison(right)
/**
* This method enables the following syntax:
*
*
* num must (not be >= (10) and not be < (7))
* ^
*
*/
def >=[T : Ordering] (right: T): ResultOfGreaterThanOrEqualToComparison[T] =
new ResultOfGreaterThanOrEqualToComparison(right)
/**
* This method enables the following syntax:
*
*
* list must (not be definedAt (7) and not be definedAt (9))
* ^
*
*/
def definedAt[T](right: T): ResultOfDefinedAt[T] =
new ResultOfDefinedAt(right)
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (oneOf(1, 2))
* ^
*
*/
def oneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit pos: source.Position) = {
val xs = firstEle :: secondEle :: remainingEles.toList
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.oneOfDuplicate, pos)
new ResultOfOneOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (oneElementOf (List(1, 2)))
* ^
*
*/
def oneElementOf(elements: GenTraversable[Any]) = {
val xs = elements.toList
new ResultOfOneElementOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (atLeastOneOf(1, 2))
* ^
*
*/
def atLeastOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit pos: source.Position) = {
val xs = firstEle :: secondEle :: remainingEles.toList
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.atLeastOneOfDuplicate, pos)
new ResultOfAtLeastOneOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (atLeastOneElementOf (List(1, 2)))
* ^
*
*/
def atLeastOneElementOf(elements: GenTraversable[Any]) = {
val xs = elements.toList
new ResultOfAtLeastOneElementOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (noneOf(1, 2))
* ^
*
*/
def noneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit pos: source.Position) = {
val xs = firstEle :: secondEle :: remainingEles.toList
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.noneOfDuplicate, pos)
new ResultOfNoneOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (noElementsOf List(1, 2))
* ^
*
*/
def noElementsOf(elements: GenTraversable[Any]) = {
val xs = elements.toList
new ResultOfNoElementsOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (theSameElementsAs(List(1, 2, 3)))
* ^
*
*/
def theSameElementsAs(xs: GenTraversable[_]) =
new ResultOfTheSameElementsAsApplication(xs)
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (theSameElementsInOrderAs(List(1, 2)))
* ^
*
*/
def theSameElementsInOrderAs(xs: GenTraversable[_]) =
new ResultOfTheSameElementsInOrderAsApplication(xs)
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (only(1, 2))
* ^
*
*/
def only(xs: Any*)(implicit pos: source.Position) = {
if (xs.isEmpty)
throw new NotAllowedException(FailureMessages.onlyEmpty, pos)
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.onlyDuplicate, pos)
new ResultOfOnlyApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (inOrderOnly(1, 2))
* ^
*
*/
def inOrderOnly[T](firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit pos: source.Position) = {
val xs = firstEle :: secondEle :: remainingEles.toList
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.inOrderOnlyDuplicate, pos)
new ResultOfInOrderOnlyApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (allOf(1, 2))
* ^
*
*/
def allOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit pos: source.Position) = {
val xs = firstEle :: secondEle :: remainingEles.toList
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.allOfDuplicate, pos)
new ResultOfAllOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (allElementsOf(1, 2))
* ^
*
*/
def allElementsOf[R](elements: GenTraversable[R]) = {
val xs = elements.toList
new ResultOfAllElementsOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (inOrder(1, 2))
* ^
*
*/
def inOrder(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit pos: source.Position) = {
val xs = firstEle :: secondEle :: remainingEles.toList
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.inOrderDuplicate, pos)
new ResultOfInOrderApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (inOrderElementsOf List(1, 2))
* ^
*
*/
def inOrderElementsOf[R](elements: GenTraversable[R]) = {
val xs = elements.toList
new ResultOfInOrderElementsOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (atMostOneOf(1, 2))
* ^
*
*/
def atMostOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit pos: source.Position) = {
val xs = firstEle :: secondEle :: remainingEles.toList
if (xs.distinct.size != xs.size)
throw new NotAllowedException(FailureMessages.atMostOneOfDuplicate, pos)
new ResultOfAtMostOneOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* List(1, 2, 3) must contain (atMostOneElementOf (List(1, 2)))
* ^
*
*/
def atMostOneElementOf[R](elements: GenTraversable[R]) = {
val xs = elements.toList
new ResultOfAtMostOneElementOfApplication(xs)
}
/**
* This method enables the following syntax:
*
*
* a [RuntimeException] must be thrownBy {...}
* ^
*
*/
def thrownBy(fun: => Any) =
new ResultOfThrownByApplication(fun)
/**
* This method enables the following syntax:
*
*
* exception must not have message ("file not found")
* ^
*
*/
def message(expectedMessage: String) =
new ResultOfMessageWordApplication(expectedMessage)
/*
// For safe keeping
private implicit def nodeToCanonical(node: scala.xml.Node) = new Canonicalizer(node)
private class Canonicalizer(node: scala.xml.Node) {
def toCanonical: scala.xml.Node = {
node match {
case elem: scala.xml.Elem =>
val canonicalizedChildren =
for (child <- node.child if !child.toString.trim.isEmpty) yield {
child match {
case elem: scala.xml.Elem => elem.toCanonical
case other => other
}
}
new scala.xml.Elem(elem.prefix, elem.label, elem.attributes, elem.scope, canonicalizedChildren: _*)
case other => other
}
}
}
*/
/*
class AType[T : ClassManifest] {
private val clazz = implicitly[ClassManifest[T]].erasure.asInstanceOf[Class[T]]
def isAssignableFromClassOf(o: Any): Boolean = clazz.isAssignableFrom(o.getClass)
def className: String = clazz.getName
}
def a[T : ClassManifest]: AType[T] = new AType[T]
*/
// This is where InspectorShorthands started
protected sealed class Collected(name: String) extends Serializable {
override def toString: String = name
}
private val AllCollected = new Collected("AllCollected")
private val EveryCollected = new Collected("EveryCollected")
private case class BetweenCollected(from: Int, to: Int) extends Collected("BetweenCollected")
private case class AtLeastCollected(num: Int) extends Collected("AtLeastCollected")
private case class AtMostCollected(num: Int) extends Collected("AtMostCollected")
private val NoCollected = new Collected("NoCollected")
private case class ExactlyCollected(num: Int) extends Collected("ExactlyCollected")
private[scalatest] def doCollected[T](collected: Collected, xs: scala.collection.GenTraversable[T], original: Any, prettifier: Prettifier, pos: source.Position)(fun: T => Assertion): Assertion = {
val asserting = InspectorAsserting.assertingNatureOfAssertion
collected match {
case AllCollected =>
asserting.forAll(xs, original, true, prettifier, pos) { e =>
fun(e)
}
case AtLeastCollected(num) =>
asserting.forAtLeast(num, xs, original, true, prettifier, pos) { e =>
fun(e)
}
case EveryCollected =>
asserting.forEvery(xs, original, true, prettifier, pos) { e =>
fun(e)
}
case ExactlyCollected(num) =>
asserting.forExactly(num, xs, original, true, prettifier, pos) { e =>
fun(e)
}
case NoCollected =>
asserting.forNo(xs, original, true, prettifier, pos) { e =>
fun(e)
}
case BetweenCollected(from, to) =>
asserting.forBetween(from, to, xs, original, true, prettifier, pos) { e =>
fun(e)
}
case AtMostCollected(num) =>
asserting.forAtMost(num, xs, original, true, prettifier, pos) { e =>
fun(e)
}
}
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
final class ResultOfNotWordForCollectedAny[T](collected: Collected, xs: scala.collection.GenTraversable[T], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* all(xs) must not equal (7)
* ^
*
*/
infix def equal(right: Any)(implicit equality: Equality[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((equality.areEqual(e, right)) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotEqual(prettifier, e, right) else FailureMessages.equaled(prettifier, e, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.equaled(prettifier, e, right), FailureMessages.didNotEqual(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be (7)
* ^
*
*/
infix def be(right: Any): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((e == right) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.wasNotEqualTo(prettifier, e, right) else FailureMessages.wasEqualTo(prettifier, e, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.wasEqualTo(prettifier, e, right), FailureMessages.wasNotEqualTo(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be <= (7)
* ^
*
*/
infix def be(comparison: ResultOfLessThanOrEqualToComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (comparison(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotLessThanOrEqualTo(prettifier, e, comparison.right) else FailureMessages.wasLessThanOrEqualTo(prettifier, e, comparison.right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasLessThanOrEqualTo(prettifier, e, comparison.right), FailureMessages.wasNotLessThanOrEqualTo(prettifier, e, comparison.right))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be >= (7)
* ^
*
*/
infix def be(comparison: ResultOfGreaterThanOrEqualToComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (comparison(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotGreaterThanOrEqualTo(prettifier, e, comparison.right) else FailureMessages.wasGreaterThanOrEqualTo(prettifier, e, comparison.right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasGreaterThanOrEqualTo(prettifier, e, comparison.right), FailureMessages.wasNotGreaterThanOrEqualTo(prettifier, e, comparison.right))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be < (7)
* ^
*
*/
infix def be(comparison: ResultOfLessThanComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (comparison(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotLessThan(prettifier, e, comparison.right) else FailureMessages.wasLessThan(prettifier, e, comparison.right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasLessThan(prettifier, e, comparison.right), FailureMessages.wasNotLessThan(prettifier, e, comparison.right))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be > (7)
* ^
*
*/
infix def be(comparison: ResultOfGreaterThanComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (comparison(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotGreaterThan(prettifier, e, comparison.right) else FailureMessages.wasGreaterThan(prettifier, e, comparison.right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasGreaterThan(prettifier, e, comparison.right), FailureMessages.wasNotGreaterThan(prettifier, e, comparison.right))
}
}
/**
*
* The deprecation period for the "be ===" syntax has expired, and the syntax
* will now throw NotAllowedException
. Please use must equal, must ===, mustEqual,
* must be, or mustBe instead.
*
*
*
* Note: usually syntax will be removed after its deprecation period. This was left in because otherwise the syntax could in some
* cases still compile, but silently wouldn't work.
*
*/
@deprecated("The deprecation period for the be === syntax has expired. Please use must equal, must ===, mustEqual, must be, or mustBe instead.")
infix def be(comparison: TripleEqualsInvocation[_]): Nothing = {
throw new NotAllowedException(FailureMessages.beTripleEqualsNotAllowed, pos)
}
/**
* This method enables the following syntax, where odd
refers to
* a BeMatcher[Int]
:
*
*
* all(xs) must not be (odd)
* ^
*
*/
infix def be(beMatcher: BeMatcher[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = beMatcher(e)
if (result.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) result.failureMessage(prettifier) else result.negatedFailureMessage(prettifier), None, pos)
}
else indicateSuccess(mustBeTrue, result.negatedFailureMessage(prettifier), result.failureMessage(prettifier))
}
}
/**
* This method enables the following syntax, where stack
is, for example, of type Stack
and
* empty
refers to a BePropertyMatcher[Stack]
:
*
*
* all(xs) must not be (empty)
* ^
*
*/
infix def be(bePropertyMatcher: BePropertyMatcher[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = bePropertyMatcher(e)
if (result.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNot(prettifier, e, UnquotedString(result.propertyName)) else FailureMessages.was(prettifier, e, UnquotedString(result.propertyName)), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.was(prettifier, e, UnquotedString(result.propertyName)), FailureMessages.wasNot(prettifier, e, UnquotedString(result.propertyName)))
}
}
/**
* This method enables the following syntax, where notFileMock
is, for example, of type File
and
* file
refers to a BePropertyMatcher[File]
:
*
*
* all(xs) must not be a (file)
* ^
*
*/
infix def be[U >: T](resultOfAWordApplication: ResultOfAWordToBePropertyMatcherApplication[U]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = resultOfAWordApplication.bePropertyMatcher(e)
if (result.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotA(prettifier, e, UnquotedString(result.propertyName)) else FailureMessages.wasA(prettifier, e, UnquotedString(result.propertyName)), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasA(prettifier, e, UnquotedString(result.propertyName)), FailureMessages.wasNotA(prettifier, e, UnquotedString(result.propertyName)))
}
}
/**
* This method enables the following syntax, where keyEvent
is, for example, of type KeyEvent
and
* actionKey
refers to a BePropertyMatcher[KeyEvent]
:
*
*
* all(keyEvents) must not be an (actionKey)
* ^
*
*/
infix def be[U >: T](resultOfAnWordApplication: ResultOfAnWordToBePropertyMatcherApplication[U]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = resultOfAnWordApplication.bePropertyMatcher(e)
if (result.matches != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotAn(prettifier, e, UnquotedString(result.propertyName)) else FailureMessages.wasAn(prettifier, e, UnquotedString(result.propertyName)), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasAn(prettifier, e, UnquotedString(result.propertyName)), FailureMessages.wasNotAn(prettifier, e, UnquotedString(result.propertyName)))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be theSameInstanceAs (string)
* ^
*
*/
infix def be(resultOfSameInstanceAsApplication: ResultOfTheSameInstanceAsApplication): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
e match {
case ref: AnyRef =>
if ((resultOfSameInstanceAsApplication.right eq ref) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotSameInstanceAs(prettifier, e, resultOfSameInstanceAsApplication.right) else FailureMessages.wasSameInstanceAs(prettifier, e, resultOfSameInstanceAsApplication.right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasSameInstanceAs(prettifier, e, resultOfSameInstanceAsApplication.right), FailureMessages.wasNotSameInstanceAs(prettifier, e, resultOfSameInstanceAsApplication.right))
case _ =>
throw new IllegalArgumentException("theSameInstanceAs must only be used for AnyRef")
}
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be definedAt ("apple")
* ^
*
*/
infix def be[U](resultOfDefinedAt: ResultOfDefinedAt[U])(implicit ev: T <:< PartialFunction[U, _]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (e.isDefinedAt(resultOfDefinedAt.right) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.wasNotDefinedAt(prettifier, e, resultOfDefinedAt.right) else FailureMessages.wasDefinedAt(prettifier, e, resultOfDefinedAt.right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.wasDefinedAt(prettifier, e, resultOfDefinedAt.right), FailureMessages.wasNotDefinedAt(prettifier, e, resultOfDefinedAt.right))
}
}
// TODO: Write tests and implement cases for:
// have(length (9), title ("hi")) (this one we'll use this have method but add a HavePropertyMatcher* arg)
// have(size (9), title ("hi")) (this one we'll use the next have method but add a HavePropertyMatcher* arg)
// have(length(9), size (9), title ("hi")) (for this one we'll need a new overloaded have(ROLWA, ROSWA, HPM*))
// have(size(9), length (9), title ("hi")) (for this one we'll need a new overloaded have(ROSWA, ROLWA, HPM*))
/**
* This method enables the following syntax:
*
*
* all(xs) must not have length (0)
* ^
*
*
*/
infix def have(resultOfLengthWordApplication: ResultOfLengthWordApplication)(implicit len: Length[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val right = resultOfLengthWordApplication.expectedLength
val leftLength = len.lengthOf(e)
if ((leftLength == right) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.hadLengthInsteadOfExpectedLength(prettifier, e, leftLength, right) else FailureMessages.hadLength(prettifier, e, right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.hadLength(prettifier, e, right), FailureMessages.hadLengthInsteadOfExpectedLength(prettifier, e, leftLength, right))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not have size (0)
* ^
*
*
*/
infix def have(resultOfSizeWordApplication: ResultOfSizeWordApplication)(implicit sz: Size[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val right = resultOfSizeWordApplication.expectedSize
val leftSize = sz.sizeOf(e)
if ((leftSize == right) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.hadSizeInsteadOfExpectedSize(prettifier, e, leftSize, right) else FailureMessages.hadSize(prettifier, e, right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.hadSize(prettifier, e, right), FailureMessages.hadSizeInsteadOfExpectedSize(prettifier, e, leftSize, right))
}
}
/**
* This method enables the following syntax, where badBook
is, for example, of type Book
and
* title ("One Hundred Years of Solitude")
results in a HavePropertyMatcher[Book]
:
*
*
* all(books) must not have (title ("One Hundred Years of Solitude"))
* ^
*
*/
infix def have[U >: T](firstPropertyMatcher: HavePropertyMatcher[U, _], propertyMatchers: HavePropertyMatcher[U, _]*): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val results =
for (propertyVerifier <- firstPropertyMatcher :: propertyMatchers.toList) yield
propertyVerifier(e)
val firstFailureOption = results.find(pv => !pv.matches)
val justOneProperty = propertyMatchers.isEmpty
// if mustBeTrue is false, then it is like "not have ()", and must throw TFE if firstFailureOption.isDefined is false
// if mustBeTrue is true, then it is like "not (not have ()), which must behave like have ()", and must throw TFE if firstFailureOption.isDefined is true
if (firstFailureOption.isDefined == mustBeTrue) {
firstFailureOption match {
case Some(firstFailure) =>
// This is one of these cases, thus will only get here if mustBeTrue is true
// 0 0 | 0 | 1
// 0 1 | 0 | 1
// 1 0 | 0 | 1
indicateFailure(
FailureMessages.propertyDidNotHaveExpectedValue(prettifier,
UnquotedString(firstFailure.propertyName),
firstFailure.expectedValue,
firstFailure.actualValue,
e
),
None,
pos
)
case None =>
// This is this cases, thus will only get here if mustBeTrue is false
// 1 1 | 1 | 0
val failureMessage =
if (justOneProperty) {
val firstPropertyResult = results.head // know this will succeed, because firstPropertyMatcher was required
FailureMessages.propertyHadExpectedValue(prettifier,
UnquotedString(firstPropertyResult.propertyName),
firstPropertyResult.expectedValue,
e
)
}
else FailureMessages.allPropertiesHadExpectedValues(prettifier, e)
indicateFailure(failureMessage, None, pos)
}
}
else {
if (mustBeTrue)
indicateSuccess(FailureMessages.allPropertiesHadExpectedValues(prettifier, e))
else {
firstFailureOption match {
case Some(firstFailure) =>
indicateSuccess(
FailureMessages.propertyDidNotHaveExpectedValue(prettifier,
UnquotedString(firstFailure.propertyName),
firstFailure.expectedValue,
firstFailure.actualValue,
e
)
)
case None =>
val message =
if (justOneProperty) {
val firstPropertyResult = results.head // know this will succeed, because firstPropertyMatcher was required
FailureMessages.propertyHadExpectedValue(prettifier,
UnquotedString(firstPropertyResult.propertyName),
firstPropertyResult.expectedValue,
e
)
}
else FailureMessages.allPropertiesHadExpectedValues(prettifier, e)
indicateSuccess(message)
}
}
}
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be (null)
* ^
*
*/
infix def be(o: Null)(implicit ev: T <:< AnyRef): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((e == null) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotNull(prettifier, e) else FailureMessages.wasNull, None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasNull, FailureMessages.wasNotNull(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be sorted
* ^
*
*/
infix def be(sortedWord: SortedWord)(implicit sortable: Sortable[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sortable.isSorted(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotSorted(prettifier, e) else FailureMessages.wasSorted(prettifier, e), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasSorted(prettifier, e), FailureMessages.wasNotSorted(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be readable
* ^
*
*/
infix def be(readableWord: ReadableWord)(implicit readability: Readability[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (readability.isReadable(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotReadable(prettifier, e) else FailureMessages.wasReadable(prettifier, e), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasReadable(prettifier, e), FailureMessages.wasNotReadable(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be writable
* ^
*
*/
infix def be(writableWord: WritableWord)(implicit writability: Writability[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (writability.isWritable(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotWritable(prettifier, e) else FailureMessages.wasWritable(prettifier, e), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasWritable(prettifier, e), FailureMessages.wasNotWritable(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be empty
* ^
*
*/
infix def be(emptyWord: EmptyWord)(implicit emptiness: Emptiness[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (emptiness.isEmpty(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotEmpty(prettifier, e) else FailureMessages.wasEmpty(prettifier, e), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasEmpty(prettifier, e), FailureMessages.wasNotEmpty(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must not be defined
* ^
*
*/
infix def be(definedWord: DefinedWord)(implicit definition: Definition[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (definition.isDefined(e) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.wasNotDefined(prettifier, e) else FailureMessages.wasDefined(prettifier, e), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.wasDefined(prettifier, e), FailureMessages.wasNotDefined(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain (null)
* ^
*
*/
infix def contain(nullValue: Null)(implicit containing: Containing[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((containing.contains(e, null)) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.didNotContainNull(prettifier, e) else FailureMessages.containedNull(prettifier, e), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.containedNull(prettifier, e), FailureMessages.didNotContainNull(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain ("one")
* ^
*
*/
infix def contain(expectedElement: Any)(implicit containing: Containing[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val right = expectedElement
if ((containing.contains(e, right)) != mustBeTrue) {
indicateFailure(if (mustBeTrue) FailureMessages.didNotContainExpectedElement(prettifier, e, right) else FailureMessages.containedExpectedElement(prettifier, e, right), None, pos)
}
else indicateSuccess(mustBeTrue, FailureMessages.containedExpectedElement(prettifier, e, right), FailureMessages.didNotContainExpectedElement(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain oneOf ("one")
* ^
*
*/
infix def contain(oneOf: ResultOfOneOfApplication)(implicit containing: Containing[T]): Assertion = {
val right = oneOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (containing.containsOneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos)
else indicateSuccess(
mustBeTrue,
FailureMessages.containedOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain oneElementOf ("one")
* ^
*
*/
infix def contain(oneElementOf: ResultOfOneElementOfApplication)(implicit containing: Containing[T]): Assertion = {
val right = oneElementOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (containing.containsOneOf(e, right.distinct) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotContainOneElementOf(prettifier, e, right) else FailureMessages.containedOneElementOf(prettifier, e, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.containedOneElementOf(prettifier, e, right), FailureMessages.didNotContainOneElementOf(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain atLeastOneOf ("one")
* ^
*
*/
infix def contain(atLeastOneOf: ResultOfAtLeastOneOfApplication)(implicit aggregating: Aggregating[T]): Assertion = {
val right = atLeastOneOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAtLeastOneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain atLeastOneElementOf ("one")
* ^
*
*/
infix def contain(atLeastOneElementOf: ResultOfAtLeastOneElementOfApplication)(implicit evidence: Aggregating[T]): Assertion = {
val right = atLeastOneElementOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (evidence.containsAtLeastOneOf(e, right.distinct) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right) else FailureMessages.containedAtLeastOneElementOf(prettifier, e, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.containedAtLeastOneElementOf(prettifier, e, right), FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain noneOf ("one")
* ^
*
*/
infix def contain(noneOf: ResultOfNoneOfApplication)(implicit containing: Containing[T]): Assertion = {
val right = noneOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (containing.containsNoneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else indicateSuccess(
mustBeTrue,
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain noElementsOf ("one")
* ^
*
*/
infix def contain(noElementsOf: ResultOfNoElementsOfApplication)(implicit evidence: Containing[T]): Assertion = {
val right = noElementsOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (evidence.containsNoneOf(e, right.distinct) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.containedAtLeastOneElementOf(prettifier, e, right) else FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right), FailureMessages.containedAtLeastOneElementOf(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain theSameElementsAs ("one")
* ^
*
*/
infix def contain(theSameElementsAs: ResultOfTheSameElementsAsApplication)(implicit aggregating: Aggregating[T]): Assertion = {
val right = theSameElementsAs.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsTheSameElementsAs(e, right) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotContainSameElements(prettifier, e, right) else FailureMessages.containedSameElements(prettifier, e, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.containedSameElements(prettifier, e, right), FailureMessages.didNotContainSameElements(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain theSameElementsInOrderAs ("one")
* ^
*
*/
infix def contain(theSameElementsInOrderAs: ResultOfTheSameElementsInOrderAsApplication)(implicit sequencing: Sequencing[T]): Assertion = {
val right = theSameElementsInOrderAs.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sequencing.containsTheSameElementsInOrderAs(e, right) != mustBeTrue)
indicateFailure(if (mustBeTrue) FailureMessages.didNotContainSameElementsInOrder(prettifier, e, right) else FailureMessages.containedSameElementsInOrder(prettifier, e, right), None, pos)
else indicateSuccess(mustBeTrue, FailureMessages.containedSameElementsInOrder(prettifier, e, right), FailureMessages.didNotContainSameElementsInOrder(prettifier, e, right))
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain only ("one")
* ^
*
*/
infix def contain(only: ResultOfOnlyApplication)(implicit aggregating: Aggregating[T]): Assertion = {
val right = only.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsOnly(e, right) != mustBeTrue) {
val withFriendlyReminder = right.size == 1 && (right(0).isInstanceOf[scala.collection.GenTraversable[_]] || right(0).isInstanceOf[Every[_]])
indicateFailure(
if (mustBeTrue)
if (withFriendlyReminder)
FailureMessages.didNotContainOnlyElementsWithFriendlyReminder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.didNotContainOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
if (withFriendlyReminder)
FailureMessages.containedOnlyElementsWithFriendlyReminder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
}
else indicateSuccess(
mustBeTrue,
FailureMessages.containedOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain inOrderOnly ("one", "two")
* ^
*
*/
infix def contain(only: ResultOfInOrderOnlyApplication)(implicit sequencing: Sequencing[T]): Assertion = {
val right = only.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sequencing.containsInOrderOnly(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos)
else indicateSuccess(
mustBeTrue,
FailureMessages.containedInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain allOf ("one")
* ^
*
*/
infix def contain(only: ResultOfAllOfApplication)(implicit aggregating: Aggregating[T]): Assertion = {
val right = only.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAllOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain allElementsOf ("one")
* ^
*
*/
infix def contain(only: ResultOfAllElementsOfApplication)(implicit evidence: Aggregating[T]): Assertion = {
val right = only.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (evidence.containsAllOf(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllElementsOf(prettifier, e, right)
else
FailureMessages.containedAllElementsOf(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllElementsOf(prettifier, e, right),
FailureMessages.didNotContainAllElementsOf(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain inOrder ("one")
* ^
*
*/
infix def contain(inOrder: ResultOfInOrderApplication)(implicit sequencing: Sequencing[T]): Assertion = {
val right = inOrder.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sequencing.containsInOrder(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain inOrderElementsOf (List("one"))
* ^
*
*/
infix def contain(inOrderElementsOf: ResultOfInOrderElementsOfApplication)(implicit evidence: Sequencing[T]): Assertion = {
val right = inOrderElementsOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (evidence.containsInOrder(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllElementsOfInOrder(prettifier, e, right)
else
FailureMessages.containedAllElementsOfInOrder(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllElementsOfInOrder(prettifier, e, right),
FailureMessages.didNotContainAllElementsOfInOrder(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain atMostOneOf ("one")
* ^
*
*/
infix def contain(atMostOneOf: ResultOfAtMostOneOfApplication)(implicit aggregating: Aggregating[T]): Assertion = {
val right = atMostOneOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAtMostOneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must not contain atMostOneElementOf List("one")
* ^
*
*/
infix def contain(atMostOneElementOf: ResultOfAtMostOneElementOfApplication)(implicit evidence: Aggregating[T]): Assertion = {
val right = atMostOneElementOf.right
doCollected(collected, xs, original, prettifier, pos) { e =>
if (evidence.containsAtMostOneOf(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAtMostOneElementOf(prettifier, e, right)
else
FailureMessages.containedAtMostOneElementOf(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAtMostOneElementOf(prettifier, e, right),
FailureMessages.didNotContainAtMostOneElementOf(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(colOfMap) must not contain key ("three")
* ^
*
*/
infix def contain(resultOfKeyWordApplication: ResultOfKeyWordApplication)(implicit keyMapping: KeyMapping[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { map =>
val expectedKey = resultOfKeyWordApplication.expectedKey
if ((keyMapping.containsKey(map, expectedKey)) != mustBeTrue) {
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainKey(prettifier, map, expectedKey)
else
FailureMessages.containedKey(prettifier, map, expectedKey),
None,
pos
)
}
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedKey(prettifier, map, expectedKey),
FailureMessages.didNotContainKey(prettifier, map, expectedKey)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(colOfMap) must not contain value (3)
* ^
*
*/
infix def contain(resultOfValueWordApplication: ResultOfValueWordApplication)(implicit valueMapping: ValueMapping[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { map =>
val expectedValue = resultOfValueWordApplication.expectedValue
if ((valueMapping.containsValue(map, expectedValue)) != mustBeTrue) {
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainValue(prettifier, map, expectedValue)
else
FailureMessages.containedValue(prettifier, map, expectedValue),
None,
pos
)
}
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedValue(prettifier, map, expectedValue),
FailureMessages.didNotContainValue(prettifier, map, expectedValue)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(string) must not startWith ("1.7")
* ^
*
*/
infix def startWith(right: String)(implicit ev: T <:< String): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((e.indexOf(right) == 0) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotStartWith(prettifier, e, right)
else
FailureMessages.startedWith(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.startedWith(prettifier, e, right),
FailureMessages.didNotStartWith(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(string) must not startWith regex ("Hel*o")
* ^
*
*
*
* The regular expression passed following the regex
token can be either a String
* or a scala.util.matching.Regex
.
*
*/
infix def startWith(resultOfRegexWordApplication: ResultOfRegexWordApplication)(implicit ev: T <:< String): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = startWithRegexWithGroups(e, resultOfRegexWordApplication.regex, resultOfRegexWordApplication.groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(string) must not endWith ("1.7")
* ^
*
*/
infix def endWith(expectedSubstring: String)(implicit ev: T <:< String): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((e endsWith expectedSubstring) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotEndWith(prettifier, e, expectedSubstring)
else
FailureMessages.endedWith(prettifier, e, expectedSubstring),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.endedWith(prettifier, e, expectedSubstring),
FailureMessages.didNotEndWith(prettifier, e, expectedSubstring)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(string) must not endWith regex ("wor.d")
* ^
*
*/
infix def endWith(resultOfRegexWordApplication: ResultOfRegexWordApplication)(implicit ev: T <:< String): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = endWithRegexWithGroups(e, resultOfRegexWordApplication.regex, resultOfRegexWordApplication.groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(string) must not include regex ("wo.ld")
* ^
*
*
*
* The regular expression passed following the regex
token can be either a String
* or a scala.util.matching.Regex
.
*
*/
infix def include(resultOfRegexWordApplication: ResultOfRegexWordApplication)(implicit ev: T <:< String): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = includeRegexWithGroups(e, resultOfRegexWordApplication.regex, resultOfRegexWordApplication.groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(string) must not include ("world")
* ^
*
*/
infix def include(expectedSubstring: String)(implicit ev: T <:< String): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((e.indexOf(expectedSubstring) >= 0) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotIncludeSubstring(prettifier, e, expectedSubstring)
else
FailureMessages.includedSubstring(prettifier, e, expectedSubstring),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.includedSubstring(prettifier, e, expectedSubstring),
FailureMessages.didNotIncludeSubstring(prettifier, e, expectedSubstring)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(string) must not fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
* ^
*
*
*
* The regular expression passed following the regex
token can be either a String
* or a scala.util.matching.Regex
.
*
*/
infix def fullyMatch(resultOfRegexWordApplication: ResultOfRegexWordApplication)(implicit ev: T <:< String): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = fullyMatchRegexWithGroups(e, resultOfRegexWordApplication.regex, resultOfRegexWordApplication.groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfNotWordForCollectedAny([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfNotWordForCollectedAny(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
final class ResultOfContainWordForCollectedAny[T](collected: Collected, xs: scala.collection.GenTraversable[T], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* option must contain oneOf (1, 2)
* ^
*
*/
infix def oneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit containing: Containing[T]): Assertion = {
val right = firstEle :: secondEle :: remainingEles.toList
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.oneOfDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (containing.containsOneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainOneOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain oneElementOf List(1, 2)
* ^
*
*/
infix def oneElementOf(elements: GenTraversable[Any])(implicit containing: Containing[T]): Assertion = {
val right = elements.toList
doCollected(collected, xs, original, prettifier, pos) { e =>
if (containing.containsOneOf(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainOneElementOf(prettifier, e, right)
else
FailureMessages.containedOneElementOf(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedOneElementOf(prettifier, e, right),
FailureMessages.didNotContainOneElementOf(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain atLeastOneOf (1, 2)
* ^
*
*/
infix def atLeastOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit aggregating: Aggregating[T]): Assertion = {
val right = firstEle :: secondEle :: remainingEles.toList
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.atLeastOneOfDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAtLeastOneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain atLeastOneElementOf List(1, 2)
* ^
*
*/
infix def atLeastOneElementOf(elements: GenTraversable[Any])(implicit aggregating: Aggregating[T]): Assertion = {
val right = elements.toList
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAtLeastOneOf(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right)
else
FailureMessages.containedAtLeastOneElementOf(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAtLeastOneElementOf(prettifier, e, right),
FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain noneOf (1, 2)
* ^
*
*/
infix def noneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit containing: Containing[T]): Assertion = {
val right = firstEle :: secondEle :: remainingEles.toList
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.noneOfDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (containing.containsNoneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.didNotContainAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.containedAtLeastOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain noElementsOf (1, 2)
* ^
*
*/
infix def noElementsOf(elements: GenTraversable[Any])(implicit containing: Containing[T]): Assertion = {
val right = elements.toList
doCollected(collected, xs, original, prettifier, pos) { e =>
if (containing.containsNoneOf(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.containedAtLeastOneElementOf(prettifier, e, right)
else
FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.didNotContainAtLeastOneElementOf(prettifier, e, right),
FailureMessages.containedAtLeastOneElementOf(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain theSameElementsAs (1, 2)
* ^
*
*/
infix def theSameElementsAs(right: GenTraversable[_])(implicit aggregating: Aggregating[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsTheSameElementsAs(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainSameElements(prettifier, e, right)
else
FailureMessages.containedSameElements(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedSameElements(prettifier, e, right),
FailureMessages.didNotContainSameElements(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain theSameElementsInOrderAs (1, 2)
* ^
*
*/
infix def theSameElementsInOrderAs(right: GenTraversable[_])(implicit sequencing: Sequencing[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sequencing.containsTheSameElementsInOrderAs(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainSameElementsInOrder(prettifier, e, right)
else
FailureMessages.containedSameElementsInOrder(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedSameElementsInOrder(prettifier, e, right),
FailureMessages.didNotContainSameElementsInOrder(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain only (1, 2)
* ^
*
*/
infix def only(right: Any*)(implicit aggregating: Aggregating[T]): Assertion = {
if (right.isEmpty)
throw new NotAllowedException(FailureMessages.onlyEmpty, pos)
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.onlyDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsOnly(e, right) != mustBeTrue) {
val withFriendlyReminder = right.size == 1 && (right(0).isInstanceOf[scala.collection.GenTraversable[_]] || right(0).isInstanceOf[Every[_]])
indicateFailure(
if (mustBeTrue)
if (withFriendlyReminder)
FailureMessages.didNotContainOnlyElementsWithFriendlyReminder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.didNotContainOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
if (withFriendlyReminder)
FailureMessages.containedOnlyElementsWithFriendlyReminder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
}
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain inOrderOnly (1, 2)
* ^
*
*/
infix def inOrderOnly(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit sequencing: Sequencing[T]): Assertion = {
val right = firstEle :: secondEle :: remainingEles.toList
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.inOrderOnlyDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sequencing.containsInOrderOnly(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainInOrderOnlyElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain allOf (1, 2)
* ^
*
*/
infix def allOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit aggregating: Aggregating[T]): Assertion = {
val right = firstEle :: secondEle :: remainingEles.toList
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.allOfDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAllOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAllOfElements(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain allElementsOf (1, 2)
* ^
*
*/
infix def allElementsOf(elements: GenTraversable[Any])(implicit aggregating: Aggregating[T]): Assertion = {
val right = elements.toList
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAllOf(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllElementsOf(prettifier, e, right)
else
FailureMessages.containedAllElementsOf(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllElementsOf(prettifier, e, right),
FailureMessages.didNotContainAllElementsOf(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain inOrder (1, 2)
* ^
*
*/
infix def inOrder(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit sequencing: Sequencing[T]): Assertion = {
val right = firstEle :: secondEle :: remainingEles.toList
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.inOrderDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sequencing.containsInOrder(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAllOfElementsInOrder(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* option must contain inOrderElementsOf (1, 2)
* ^
*
*/
infix def inOrderElementsOf(elements: GenTraversable[Any])(implicit sequencing: Sequencing[T]): Assertion = {
val right = elements.toList
doCollected(collected, xs, original, prettifier, pos) { e =>
if (sequencing.containsInOrder(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAllElementsOfInOrder(prettifier, e, right)
else
FailureMessages.containedAllElementsOfInOrder(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAllElementsOfInOrder(prettifier, e, right),
FailureMessages.didNotContainAllElementsOfInOrder(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must contain atMostOneOf (1, 2)
* ^
*
*/
infix def atMostOneOf(firstEle: Any, secondEle: Any, remainingEles: Any*)(implicit aggregating: Aggregating[T]): Assertion = {
val right = firstEle :: secondEle :: remainingEles.toList
if (right.distinct.size != right.size)
throw new NotAllowedException(FailureMessages.atMostOneOfDuplicate, pos)
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAtMostOneOf(e, right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
else
FailureMessages.containedAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", "))),
FailureMessages.didNotContainAtMostOneOf(prettifier, e, UnquotedString(right.map(r => FailureMessages.decorateToStringValue(prettifier, r)).mkString(", ")))
)
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) must contain atMostOneElementOf (1, 2)
* ^
*
*/
infix def atMostOneElementOf(elements: GenTraversable[Any])(implicit aggregating: Aggregating[T]): Assertion = {
val right = elements.toList
doCollected(collected, xs, original, prettifier, pos) { e =>
if (aggregating.containsAtMostOneOf(e, right.distinct) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainAtMostOneElementOf(prettifier, e, right)
else
FailureMessages.containedAtMostOneElementOf(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedAtMostOneElementOf(prettifier, e, right),
FailureMessages.didNotContainAtMostOneElementOf(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(colOfMap) must contain key ("one")
* ^
*
*/
infix def key(expectedKey: Any)(implicit keyMapping: KeyMapping[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { map =>
if (keyMapping.containsKey(map, expectedKey) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainKey(prettifier, map, expectedKey)
else
FailureMessages.containedKey(prettifier, map, expectedKey),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedKey(prettifier, map, expectedKey),
FailureMessages.didNotContainKey(prettifier, map, expectedKey)
)
}
}
/**
* This method enables the following syntax:
*
*
* all(colOfMap) must contain value (1)
* ^
*
*/
infix def value(expectedValue: Any)(implicit valueMapping: ValueMapping[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { map =>
if (valueMapping.containsValue(map, expectedValue) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.didNotContainValue(prettifier, map, expectedValue)
else
FailureMessages.containedValue(prettifier, map, expectedValue),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.containedValue(prettifier, map, expectedValue),
FailureMessages.didNotContainValue(prettifier, map, expectedValue)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfContainWordForCollectedAny([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfContainWordForCollectedAny(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
sealed class ResultOfBeWordForCollectedAny[T](collected: Collected, xs: scala.collection.GenTraversable[T], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
// TODO: Missing must(AMatcher) and must(AnMatcher)
/**
* This method enables the following syntax:
*
*
* all(xs) must be theSameInstanceAs anotherObject
* ^
*
*/
infix def theSameInstanceAs(right: AnyRef)(implicit toAnyRef: T <:< AnyRef): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((toAnyRef(e) eq right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.wasNotSameInstanceAs(prettifier, e, right)
else
FailureMessages.wasSameInstanceAs(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.wasSameInstanceAs(prettifier, e, right),
FailureMessages.wasNotSameInstanceAs(prettifier, e, right)
)
}
}
/**
* This method enables the following syntax, where badBook
is, for example, of type Book
and
* goodRead
refers to a BePropertyMatcher[Book]
:
*
*
* all(books) must be a (goodRead)
* ^
*
*/
infix def a[U <: T](bePropertyMatcher: BePropertyMatcher[U])(implicit ev: T <:< AnyRef): Assertion = { // TODO: Try supporting 2.10 AnyVals
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = bePropertyMatcher(e.asInstanceOf[U])
if (result.matches != mustBeTrue) {
indicateFailure(
if (mustBeTrue)
FailureMessages.wasNotA(prettifier, e, UnquotedString(result.propertyName))
else
FailureMessages.wasA(prettifier, e, UnquotedString(result.propertyName)),
None,
pos
)
}
else
indicateSuccess(
mustBeTrue,
FailureMessages.wasA(prettifier, e, UnquotedString(result.propertyName)),
FailureMessages.wasNotA(prettifier, e, UnquotedString(result.propertyName))
)
}
}
/**
* This method enables the following syntax, where badBook
is, for example, of type Book
and
* excellentRead
refers to a BePropertyMatcher[Book]
:
*
*
* all(books) must be an (excellentRead)
* ^
*
*/
infix def an[U <: T](beTrueMatcher: BePropertyMatcher[U])(implicit ev: T <:< AnyRef): Assertion = { // TODO: Try supporting 2.10 AnyVals
doCollected(collected, xs, original, prettifier, pos) { e =>
val beTrueMatchResult = beTrueMatcher(e.asInstanceOf[U])
if (beTrueMatchResult.matches != mustBeTrue) {
indicateFailure(
if (mustBeTrue)
FailureMessages.wasNotAn(prettifier, e, UnquotedString(beTrueMatchResult.propertyName))
else
FailureMessages.wasAn(prettifier, e, UnquotedString(beTrueMatchResult.propertyName)),
None,
pos
)
}
else
indicateSuccess(
mustBeTrue,
FailureMessages.wasAn(prettifier, e, UnquotedString(beTrueMatchResult.propertyName)),
FailureMessages.wasNotAn(prettifier, e, UnquotedString(beTrueMatchResult.propertyName))
)
}
}
/**
* This method enables the following syntax, where fraction
is, for example, of type PartialFunction
:
*
*
* all(xs) must be definedAt (6)
* ^
*
*/
infix def definedAt[U](right: U)(implicit ev: T <:< PartialFunction[U, _]): Assertion = {
doCollected(collected, xs, xs, prettifier, pos) { e =>
if (e.isDefinedAt(right) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.wasNotDefinedAt(prettifier, e, right)
else
FailureMessages.wasDefinedAt(prettifier, e, right),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.wasDefinedAt(prettifier, e, right),
FailureMessages.wasNotDefinedAt(prettifier, e, right)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfBeWordForCollectedAny([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfBeWordForCollectedAny(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
final class ResultOfCollectedAny[T](collected: Collected, xs: scala.collection.GenTraversable[T], original: Any, prettifier: Prettifier, pos: source.Position) {
// TODO: mustBe null works, b ut must be (null) does not when type is Any:
/*
scala> val ys = List(null, null, 1)
ys: List[Any] = List(null, null, 1)
scala> all (ys) mustBe null
:15: error: ambiguous reference to overloaded definition,
both method mustBe in class ResultOfCollectedAny of type (spread: org.scalactic.Spread[Any])Unit
and method mustBe in class ResultOfCollectedAny of type (beMatcher: org.scalatest.matchers.BeMatcher[Any])Unit
match argument types (Null)
all (ys) mustBe null
^
scala> all (ys) must be (null)
org.scalatest.exceptions.TestFailedException: org.scalatest.Matchers$ResultOfCollectedAny@18515783 was not null
at org.scalatest.MatchersHelper$.newTestFailedException(MatchersHelper.scala:163)
at org.scalatest.Matchers$MustMethodHelper$.mustMatcher(Matchers.scala:5529)
at org.scalatest.Matchers$AnyMustWrapper.must(Matchers.scala:5563)
at .(:15)
at .()
*/
/**
* This method enables syntax such as the following:
*
*
* all(xs) must be (3)
* ^
*
*/
infix def must(rightMatcher: Matcher[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = rightMatcher(e)
result match {
case equalMatchResult: EqualMatchResult =>
if (equalMatchResult.matches)
indicateSuccess(result.negatedFailureMessage(prettifier))
else {
val failureMessage = equalMatchResult.failureMessage(prettifier)
val analysis = equalMatchResult.analysis
indicateFailure(failureMessage, None, pos, analysis)
}
case _ =>
MatchFailed.unapply(result)(prettifier) match {
case Some(failureMessage) => indicateFailure(failureMessage, None, pos)
case None => indicateSuccess(result.negatedFailureMessage(prettifier))
}
}
}
}
/**
* This method enables syntax such as the following:
*
*
* all (xs) mustEqual 7
* ^
*
*/
infix def mustEqual(right: Any)(implicit equality: Equality[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!equality.areEqual(e, right)) {
val prettyPair = prettifier(e, right)
indicateFailure(Resources.formatString(Resources.rawDidNotEqual, Array(prettyPair.left, prettyPair.right)), None, pos, prettyPair.analysis)
}
else indicateSuccess(FailureMessages.equaled(prettifier, e, right))
}
}
/**
* This method enables syntax such as the following:
*
*
* result mustEqual 7.1 +- 0.2
* ^doCollected
*
*/
infix def mustEqual(spread: Spread[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!spread.isWithin(e)) {
indicateFailure(FailureMessages.didNotEqualPlusOrMinus(prettifier, e, spread.pivot, spread.tolerance), None, pos)
}
else indicateSuccess(FailureMessages.equaledPlusOrMinus(prettifier, e, spread.pivot, spread.tolerance))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe sorted
* ^
*
*/
infix def mustBe(sortedWord: SortedWord)(implicit sortable: Sortable[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!sortable.isSorted(e))
indicateFailure(FailureMessages.wasNotSorted(prettifier, e), None, pos)
else indicateSuccess(FailureMessages.wasSorted(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe readable
* ^
*
*/
infix def mustBe(readableWord: ReadableWord)(implicit readability: Readability[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!readability.isReadable(e))
indicateFailure(FailureMessages.wasNotReadable(prettifier, e), None, pos)
else indicateSuccess(FailureMessages.wasReadable(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe writable
* ^
*
*/
infix def mustBe(writableWord: WritableWord)(implicit writability: Writability[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!writability.isWritable(e))
indicateFailure(FailureMessages.wasNotWritable(prettifier, e), None, pos)
else indicateSuccess(FailureMessages.wasWritable(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe empty
* ^
*
*/
infix def mustBe(emptyWord: EmptyWord)(implicit emptiness: Emptiness[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!emptiness.isEmpty(e))
indicateFailure(FailureMessages.wasNotEmpty(prettifier, e), None, pos)
else indicateSuccess(FailureMessages.wasEmpty(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe defined
* ^
*
*/
infix def mustBe(definedWord: DefinedWord)(implicit definition: Definition[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!definition.isDefined(e))
indicateFailure(FailureMessages.wasNotDefined(prettifier, e), None, pos)
else indicateSuccess(FailureMessages.wasDefined(prettifier, e))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe a [Type]
* ^
*
*/
infix def mustBe(aType: ResultOfATypeInvocation[_]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!aType.clazz.isAssignableFrom(e.getClass))
indicateFailure(FailureMessages.wasNotAnInstanceOf(prettifier, e, UnquotedString(aType.clazz.getName), UnquotedString(e.getClass.getName)), None, pos)
else indicateSuccess(FailureMessages.wasAnInstanceOf(prettifier, e, UnquotedString(aType.clazz.getName)))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe an [Type]
* ^
*
*/
infix def mustBe(anType: ResultOfAnTypeInvocation[_]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!anType.clazz.isAssignableFrom(e.getClass))
indicateFailure(FailureMessages.wasNotAnInstanceOf(prettifier, e, UnquotedString(anType.clazz.getName), UnquotedString(e.getClass.getName)), None, pos)
else indicateSuccess(FailureMessages.wasAnInstanceOf(prettifier, e, UnquotedString(anType.clazz.getName)))
}
}
/**
* This method enables syntax such as the following:
*
*
* result mustEqual null
* ^
*
*/
infix def mustEqual(right: Null)(implicit ev: T <:< AnyRef): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (e != null) {
indicateFailure(FailureMessages.didNotEqualNull(prettifier, e), None, pos)
}
else indicateSuccess(FailureMessages.equaledNull)
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) must equal (3)
* ^
*
*/
infix def must[TYPECLASS1[_]](rightMatcherFactory1: MatcherFactory1[T, TYPECLASS1])(implicit typeClass1: TYPECLASS1[T]): Assertion = {
val rightMatcher = rightMatcherFactory1.matcher
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = rightMatcher(e)
result match {
case equalMatchResult: EqualMatchResult =>
if (equalMatchResult.matches)
indicateSuccess(result.negatedFailureMessage(prettifier))
else {
val failureMessage = equalMatchResult.failureMessage(prettifier)
val analysis = equalMatchResult.analysis
indicateFailure(failureMessage, None, pos, analysis)
}
case _ =>
MatchFailed.unapply(result)(prettifier) match {
case Some(failureMessage) => indicateFailure(failureMessage, None, pos)
case None => indicateSuccess(result.negatedFailureMessage(prettifier))
}
}
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) must (equal (expected) and have length 12)
* ^
*
*/
infix def must[TYPECLASS1[_], TYPECLASS2[_]](rightMatcherFactory2: MatcherFactory2[T, TYPECLASS1, TYPECLASS2])(implicit typeClass1: TYPECLASS1[T], typeClass2: TYPECLASS2[T]): Assertion = {
val rightMatcher = rightMatcherFactory2.matcher
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = rightMatcher(e)
result match {
case equalMatchResult: EqualMatchResult =>
if (equalMatchResult.matches)
indicateSuccess(result.negatedFailureMessage(prettifier))
else {
val failureMessage = equalMatchResult.failureMessage(prettifier)
val analysis = equalMatchResult.analysis
indicateFailure(failureMessage, None, pos, analysis)
}
case _ =>
MatchFailed.unapply(result)(prettifier) match {
case Some(failureMessage) => indicateFailure(failureMessage, None, pos)
case None => indicateSuccess(result.negatedFailureMessage(prettifier))
}
}
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) must be theSameInstanceAs anotherObject
* ^
*
*/
infix def must(beWord: BeWord): ResultOfBeWordForCollectedAny[T] =
new ResultOfBeWordForCollectedAny[T](collected, xs, original, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(xs) must not equal (3)
* ^
*
*/
infix def must(notWord: NotWord): ResultOfNotWordForCollectedAny[T] =
new ResultOfNotWordForCollectedAny(collected, xs, original, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all (results) must have length (3)
* ^
* all (results) must have size (3)
* ^
*
*/
infix def must(haveWord: HaveWord): ResultOfHaveWordForCollectedExtent[T] =
new ResultOfHaveWordForCollectedExtent(collected, xs, original, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all (xs) mustBe 7
* ^
*
*/
infix def mustBe[R](right: R)(implicit caneq: scala.CanEqual[T, R]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (e != right) {
val (eee, rightee) = Suite.getObjectsForFailureMessage(e, right)
indicateFailure(FailureMessages.wasNot(prettifier, eee, rightee), None, pos)
}
else indicateSuccess(FailureMessages.was(prettifier, e, right))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(4, 5, 6) mustBe < (7)
* ^
*
*/
infix def mustBe(comparison: ResultOfLessThanComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!comparison(e)) {
indicateFailure(
FailureMessages.wasNotLessThan(prettifier,
e,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasLessThan(prettifier, e, comparison.right))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(4, 5, 6) mustBe <= (7)
* ^
*
*/
infix def mustBe(comparison: ResultOfLessThanOrEqualToComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!comparison(e)) {
indicateFailure(
FailureMessages.wasNotLessThanOrEqualTo(prettifier,
e,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasLessThanOrEqualTo(prettifier, e, comparison.right))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(8, 9, 10) mustBe > (7)
* ^
*
*/
infix def mustBe(comparison: ResultOfGreaterThanComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!comparison(e)) {
indicateFailure(
FailureMessages.wasNotGreaterThan(prettifier,
e,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasGreaterThan(prettifier, e, comparison.right))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(8, 9, 10) mustBe >= (7)
* ^
*
*/
infix def mustBe(comparison: ResultOfGreaterThanOrEqualToComparison[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!comparison(e)) {
indicateFailure(
FailureMessages.wasNotGreaterThanOrEqualTo(prettifier,
e,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasGreaterThanOrEqualTo(prettifier, e, comparison.right))
}
}
/**
* This method enables the following syntax, where odd
refers to a BeMatcher[Int]
:
*
* testing
* all(xs) mustBe odd
* ^
*
*/
infix def mustBe(beMatcher: BeMatcher[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = beMatcher.apply(e)
if (!result.matches)
indicateFailure(result.failureMessage(prettifier), None, pos)
else indicateSuccess(result.negatedFailureMessage(prettifier))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) mustBe 7.1 +- 0.2
* ^
*
*/
infix def mustBe(spread: Spread[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!spread.isWithin(e))
indicateFailure(FailureMessages.wasNotPlusOrMinus(prettifier, e, spread.pivot, spread.tolerance), None, pos)
else indicateSuccess(FailureMessages.wasPlusOrMinus(prettifier, e, spread.pivot, spread.tolerance))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) mustBe theSameInstanceAs (anotherObject)
* ^
*
*/
infix def mustBe(resultOfSameInstanceAsApplication: ResultOfTheSameInstanceAsApplication)(implicit toAnyRef: T <:< AnyRef): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (toAnyRef(e) ne resultOfSameInstanceAsApplication.right)
indicateFailure(
FailureMessages.wasNotSameInstanceAs(prettifier,
e,
resultOfSameInstanceAsApplication.right
),
None,
pos
)
else indicateSuccess(FailureMessages.wasSameInstanceAs(prettifier, e, resultOfSameInstanceAsApplication.right))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustBe null
* ^
*
*/
infix def mustBe(o: Null)(implicit ev: T <:< AnyRef): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (e != null)
indicateFailure(FailureMessages.wasNotNull(prettifier, e), None, pos)
else indicateSuccess(FailureMessages.wasNull)
}
}
/**
* This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
*
*
* all(xs) mustBe excellentRead
* ^
*
*/
infix def mustBe[U <: T](bePropertyMatcher: BePropertyMatcher[U])(implicit ev: T <:< AnyRef): Assertion = { // TODO: Try supporting this with 2.10 AnyVals
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = bePropertyMatcher(e.asInstanceOf[U])
if (!result.matches)
indicateFailure(FailureMessages.wasNot(prettifier, e, UnquotedString(result.propertyName)), None, pos)
else indicateSuccess(FailureMessages.was(prettifier, e, UnquotedString(result.propertyName)))
}
}
/**
* This method enables the following syntax, where goodRead
refers to a BePropertyMatcher[Book]
:
*
*
* all(xs) mustBe a (goodRead)
* ^
*
*/
infix def mustBe[U <: T](resultOfAWordApplication: ResultOfAWordToBePropertyMatcherApplication[U])(implicit ev: T <:< AnyRef): Assertion = {// TODO: Try supporting this with 2.10 AnyVals
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = resultOfAWordApplication.bePropertyMatcher(e.asInstanceOf[U])
if (!result.matches)
indicateFailure(FailureMessages.wasNotA(prettifier, e, UnquotedString(result.propertyName)), None, pos)
else indicateSuccess(FailureMessages.was(prettifier, e, UnquotedString(result.propertyName)))
}
}
/**
* This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
*
*
* all(xs) mustBe an (excellentRead)
* ^
*
*/
infix def mustBe[U <: T](resultOfAnWordApplication: ResultOfAnWordToBePropertyMatcherApplication[U])(implicit ev: T <:< AnyRef): Assertion = {// TODO: Try supporting this with 2.10 AnyVals
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = resultOfAnWordApplication.bePropertyMatcher(e.asInstanceOf[U])
if (!result.matches)
indicateFailure(FailureMessages.wasNotAn(prettifier, e, UnquotedString(result.propertyName)), None, pos)
else indicateSuccess(FailureMessages.wasAn(prettifier, e, UnquotedString(result.propertyName)))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) mustNot (be (3))
* ^
*
*/
infix def mustNot[U <: T](rightMatcherX1: Matcher[U]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
try {
val result = rightMatcherX1.apply(e.asInstanceOf[U])
if (result.matches)
indicateFailure(result.negatedFailureMessage(prettifier), None, pos)
else indicateSuccess(result.failureMessage(prettifier))
}
catch {
case tfe: TestFailedException =>
indicateFailure(tfe.getMessage, tfe.cause, pos)
}
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) mustNot (equal (3))
* ^
*
*/
infix def mustNot[TYPECLASS1[_]](rightMatcherFactory1: MatcherFactory1[T, TYPECLASS1])(implicit typeClass1: TYPECLASS1[T]): Assertion = {
val rightMatcher = rightMatcherFactory1.matcher
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = rightMatcher(e)
MatchSucceeded.unapply(result)(prettifier) match {
case Some(negatedFailureMessage) =>
indicateFailure(negatedFailureMessage, None, pos)
case None => indicateSuccess(result.failureMessage(prettifier))
}
}
}
/**
* This method enables syntax such as the following:
*
*
* all (xs) must === (b)
* ^
*
*/
infix def must[U](inv: TripleEqualsInvocation[U])(implicit constraint: T CanEqual U): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((constraint.areEqual(e, inv.right)) != inv.expectingEqual)
indicateFailure(
if (inv.expectingEqual)
FailureMessages.didNotEqual(prettifier, e, inv.right)
else
FailureMessages.equaled(prettifier, e, inv.right),
None,
pos
)
else indicateSuccess(inv.expectingEqual, FailureMessages.equaled(prettifier, e, inv.right), FailureMessages.didNotEqual(prettifier, e, inv.right))
}
}
/**
* This method enables syntax such as the following:
*
*
* all (xs) must === (100 +- 1)
* ^
*
*/
infix def must(inv: TripleEqualsInvocationOnSpread[T])(implicit ev: Numeric[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if ((inv.spread.isWithin(e)) != inv.expectingEqual)
indicateFailure(
if (inv.expectingEqual)
FailureMessages.didNotEqualPlusOrMinus(prettifier, e, inv.spread.pivot, inv.spread.tolerance)
else
FailureMessages.equaledPlusOrMinus(prettifier, e, inv.spread.pivot, inv.spread.tolerance),
None,
pos
)
else indicateSuccess(inv.expectingEqual, FailureMessages.equaledPlusOrMinus(prettifier, e, inv.spread.pivot, inv.spread.tolerance), FailureMessages.didNotEqualPlusOrMinus(prettifier, e, inv.spread.pivot, inv.spread.tolerance))
}
}
/**
* This method enables the following syntax:
*
*
* all(xs) mustNot be theSameInstanceAs anotherInstance
* ^
*
*/
infix def mustNot(beWord: BeWord): ResultOfBeWordForCollectedAny[T] =
new ResultOfBeWordForCollectedAny[T](collected, xs, original, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all (xs) must contain oneOf (1, 2, 3)
* ^
*
*/
infix def must(containWord: ContainWord): ResultOfContainWordForCollectedAny[T] = {
new ResultOfContainWordForCollectedAny(collected, xs, original, true, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* all (xs) mustNot contain (oneOf (1, 2, 3))
* ^
*
*/
infix def mustNot(containWord: ContainWord): ResultOfContainWordForCollectedAny[T] = {
new ResultOfContainWordForCollectedAny(collected, xs, original, false, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) must exist
* ^
*
*/
infix def must(existWord: ExistWord)(implicit existence: Existence[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (!existence.exists(e))
indicateFailure(
FailureMessages.doesNotExist(prettifier, e),
None,
pos
)
else indicateSuccess(FailureMessages.exists(prettifier, e))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) must not (exist)
* ^
*
*/
infix def must(notExist: ResultOfNotExist)(implicit existence: Existence[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (existence.exists(e))
indicateFailure(
FailureMessages.exists(prettifier, e),
None,
pos
)
else indicateSuccess(FailureMessages.doesNotExist(prettifier, e))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(xs) mustNot exist
* ^
*
*/
infix def mustNot(existWord: ExistWord)(implicit existence: Existence[T]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
if (existence.exists(e))
indicateFailure(
FailureMessages.exists(prettifier, e),
None,
pos
)
else indicateSuccess(FailureMessages.doesNotExist(prettifier, e))
}
}
/**
* This method enables syntax such as the following:
*
*
* all(string) must startWith regex ("Hel*o")
* ^
*
*/
infix def must(startWithWord: StartWithWord)(implicit ev: T <:< String): ResultOfStartWithWordForCollectedString =
new ResultOfStartWithWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(string) must endWith regex ("wo.ld")
* ^
*
*/
infix def must(endWithWord: EndWithWord)(implicit ev: T <:< String): ResultOfEndWithWordForCollectedString =
new ResultOfEndWithWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(string) must include regex ("wo.ld")
* ^
*
*/
infix def must(includeWord: IncludeWord)(implicit ev: T <:< String): ResultOfIncludeWordForCollectedString =
new ResultOfIncludeWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(string) must fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
* ^
*
*/
infix def must(fullyMatchWord: FullyMatchWord)(implicit ev: T <:< String): ResultOfFullyMatchWordForCollectedString =
new ResultOfFullyMatchWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(string) mustNot fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
* ^
*
*/
infix def mustNot(fullyMatchWord: FullyMatchWord)(implicit ev: T <:< String): ResultOfFullyMatchWordForCollectedString =
new ResultOfFullyMatchWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(string) mustNot startWith regex ("Hel*o")
* ^
*
*/
infix def mustNot(startWithWord: StartWithWord)(implicit ev: T <:< String): ResultOfStartWithWordForCollectedString =
new ResultOfStartWithWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(string) mustNot endWith regex ("wo.ld")
* ^
*
*/
infix def mustNot(endWithWord: EndWithWord)(implicit ev: T <:< String): ResultOfEndWithWordForCollectedString =
new ResultOfEndWithWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* all(string) mustNot include regex ("wo.ld")
* ^
*
*/
infix def mustNot(includeWord: IncludeWord)(implicit ev: T <:< String): ResultOfIncludeWordForCollectedString =
new ResultOfIncludeWordForCollectedString(collected, xs.asInstanceOf[GenTraversable[String]], original, false, prettifier, pos)
/**
* Overrides to return pretty toString.
*
* @return "ResultOfCollectedAny([collected], [xs])"
*/
override def toString: String = "ResultOfCollectedAny(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
*/
final class ResultOfHaveWordForCollectedExtent[A](collected: Collected, xs: scala.collection.GenTraversable[A], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* all (xs) must have length (12)
* ^
*
*/
infix def length(expectedLength: Long)(implicit len: Length[A]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val eLength = len.lengthOf(e)
if ((eLength == expectedLength) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.hadLengthInsteadOfExpectedLength(prettifier, e, eLength, expectedLength)
else
FailureMessages.hadLength(prettifier, e, expectedLength),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.hadLength(prettifier, e, expectedLength),
FailureMessages.hadLengthInsteadOfExpectedLength(prettifier, e, eLength, expectedLength)
)
}
}
/**
* This method enables the following syntax:
*
*
* all (xs) must have size (12)
* ^
*
*/
infix def size(expectedSize: Long)(implicit sz: Size[A]): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val eSize = sz.sizeOf(e)
if ((eSize == expectedSize) != mustBeTrue)
indicateFailure(
if (mustBeTrue)
FailureMessages.hadSizeInsteadOfExpectedSize(prettifier, e, eSize, expectedSize)
else
FailureMessages.hadSize(prettifier, e, expectedSize),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
FailureMessages.hadSize(prettifier, e, expectedSize),
FailureMessages.hadSizeInsteadOfExpectedSize(prettifier, e, eSize, expectedSize)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfHaveWordForCollectedExtent([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfHaveWordForCollectedExtent(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
final class ResultOfStartWithWordForCollectedString(collected: Collected, xs: scala.collection.GenTraversable[String], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* all(string) must startWith regex ("Hel*o")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
checkRegex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* all(string) must fullMatch regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion =
checkRegex(regexWithGroups.regex, regexWithGroups.groups)
/**
* This method enables the following syntax:
*
*
* all(string) must startWith regex ("Hel*o".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion =
checkRegex(rightRegex)
private def checkRegex(rightRegex: Regex, groups: IndexedSeq[String] = IndexedSeq.empty): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = startWithRegexWithGroups(e, rightRegex, groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfStartWithWordForCollectedString([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfStartWithWordForCollectedString(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
final class ResultOfIncludeWordForCollectedString(collected: Collected, xs: scala.collection.GenTraversable[String], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* all(string) must include regex ("world")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
checkRegex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* all(string) must include regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion =
checkRegex(regexWithGroups.regex, regexWithGroups.groups)
/**
* This method enables the following syntax:
*
*
* all(string) must include regex ("wo.ld".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion =
checkRegex(rightRegex)
private def checkRegex(rightRegex: Regex, groups: IndexedSeq[String] = IndexedSeq.empty): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = includeRegexWithGroups(e, rightRegex, groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfIncludeWordForCollectedString([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfIncludeWordForCollectedString(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
final class ResultOfEndWithWordForCollectedString(collected: Collected, xs: scala.collection.GenTraversable[String], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* all(string) must endWith regex ("wor.d")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
checkRegex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* all(string) must endWith regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion =
checkRegex(regexWithGroups.regex, regexWithGroups.groups)
/**
* This method enables the following syntax:
*
*
* all(string) must endWith regex ("wor.d".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion =
checkRegex(rightRegex)
private def checkRegex(rightRegex: Regex, groups: IndexedSeq[String] = IndexedSeq.empty): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = endWithRegexWithGroups(e, rightRegex, groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfEndWithWordForCollectedString([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfEndWithWordForCollectedString(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for InspectorsMatchers
for an overview of
* the matchers DSL.
*
* @author Bill Venners
* @author Chee Seng
*/
final class ResultOfFullyMatchWordForCollectedString(collected: Collected, xs: scala.collection.GenTraversable[String], original: Any, mustBeTrue: Boolean, prettifier: Prettifier, pos: source.Position) {
/**
* This method enables the following syntax:
*
*
* all(string) must fullMatch regex ("Hel*o world")
* ^
*
*/
infix def regex(rightRegexString: String): Assertion =
checkRegex(rightRegexString.r)
/**
* This method enables the following syntax:
*
*
* all(string) must fullMatch regex ("a(b*)c" withGroup "bb")
* ^
*
*/
infix def regex(regexWithGroups: RegexWithGroups): Assertion =
checkRegex(regexWithGroups.regex, regexWithGroups.groups)
/**
* This method enables the following syntax:
*
*
* all(string) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
infix def regex(rightRegex: Regex): Assertion =
checkRegex(rightRegex)
private def checkRegex(rightRegex: Regex, groups: IndexedSeq[String] = IndexedSeq.empty): Assertion = {
doCollected(collected, xs, original, prettifier, pos) { e =>
val result = fullyMatchRegexWithGroups(e, rightRegex, groups)
if (result.matches != mustBeTrue)
indicateFailure(
if (mustBeTrue)
result.failureMessage(prettifier)
else
result.negatedFailureMessage(prettifier),
None,
pos
)
else
indicateSuccess(
mustBeTrue,
result.negatedFailureMessage(prettifier),
result.failureMessage(prettifier)
)
}
}
/**
* Overrides to return pretty toString.
*
* @return "ResultOfFullyMatchWordForCollectedString([collected], [xs], [mustBeTrue])"
*/
override def toString: String = "ResultOfFullyMatchWordForCollectedString(" + Prettifier.default(collected) + ", " + Prettifier.default(xs) + ", " + Prettifier.default(mustBeTrue) + ")"
}
/**
* This method enables the following syntax:
*
*
* all(xs) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def all[E, C[_]](xs: C[E])(implicit collecting: Collecting[E, C[E]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[E] =
new ResultOfCollectedAny(AllCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for scala.collection.GenMap
:
*
*
* all(map) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def all[K, V, MAP[k, v] <: scala.collection.GenMap[k, v]](xs: MAP[K, V])(implicit collecting: Collecting[(K, V), scala.collection.GenTraversable[(K, V)]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[(K, V)] =
new ResultOfCollectedAny(AllCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for java.util.Map
:
*
*
* all(jmap) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def all[K, V, JMAP[k, v] <: java.util.Map[k, v]](xs: JMAP[K, V])(implicit collecting: Collecting[org.scalatest.Entry[K, V], JMAP[K, V]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[org.scalatest.Entry[K, V]] =
new ResultOfCollectedAny(AllCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for String
:
*
*
* all(str) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def all(xs: String)(implicit collecting: Collecting[Char, String], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[Char] =
new ResultOfCollectedAny(AllCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax:
*
*
* atLeast(1, xs) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atLeast[E, C[_]](num: Int, xs: C[E])(implicit collecting: Collecting[E, C[E]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[E] =
new ResultOfCollectedAny(AtLeastCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for scala.collection.GenMap
:
*
*
* atLeast(1, map) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atLeast[K, V, MAP[k, v] <: scala.collection.GenMap[k, v]](num: Int, xs: MAP[K, V])(implicit collecting: Collecting[(K, V), scala.collection.GenTraversable[(K, V)]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[(K, V)] =
new ResultOfCollectedAny(AtLeastCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for java.util.Map
:
*
*
* atLeast(1, jmap) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atLeast[K, V, JMAP[k, v] <: java.util.Map[k, v]](num: Int, xs: JMAP[K, V])(implicit collecting: Collecting[org.scalatest.Entry[K, V], JMAP[K, V]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[org.scalatest.Entry[K, V]] =
new ResultOfCollectedAny(AtLeastCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for String
:
*
*
* atLeast(1, str) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atLeast(num: Int, xs: String)(implicit collecting: Collecting[Char, String], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[Char] =
new ResultOfCollectedAny(AtLeastCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax:
*
*
* every(xs) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def every[E, C[_]](xs: C[E])(implicit collecting: Collecting[E, C[E]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[E] =
new ResultOfCollectedAny(EveryCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for scala.collection.GenMap
:
*
*
* every(map) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def every[K, V, MAP[k, v] <: scala.collection.Map[k, v]](xs: MAP[K, V])(implicit collecting: Collecting[(K, V), scala.collection.GenTraversable[(K, V)]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[(K, V)] =
new ResultOfCollectedAny(EveryCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for java.util.Map
:
*
*
* every(jmap) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def every[K, V, JMAP[k, v] <: java.util.Map[k, v]](xs: JMAP[K, V])(implicit collecting: Collecting[org.scalatest.Entry[K, V], JMAP[K, V]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[org.scalatest.Entry[K, V]] =
new ResultOfCollectedAny(EveryCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for String
:
*
*
* every(str) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def every(xs: String)(implicit collecting: Collecting[Char, String], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[Char] =
new ResultOfCollectedAny(EveryCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax:
*
*
* exactly(xs) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def exactly[E, C[_]](num: Int, xs: C[E])(implicit collecting: Collecting[E, C[E]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[E] =
new ResultOfCollectedAny(ExactlyCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for scala.collection.GenMap
:
*
*
* exactly(map) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def exactly[K, V, MAP[k, v] <: scala.collection.GenMap[k, v]](num: Int, xs: MAP[K, V])(implicit collecting: Collecting[(K, V), scala.collection.GenTraversable[(K, V)]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[(K, V)] =
new ResultOfCollectedAny(ExactlyCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for java.util.Map
:
*
*
* exactly(jmap) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def exactly[K, V, JMAP[k, v] <: java.util.Map[k, v]](num: Int, xs: JMAP[K, V])(implicit collecting: Collecting[org.scalatest.Entry[K, V], JMAP[K, V]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[org.scalatest.Entry[K, V]] =
new ResultOfCollectedAny(ExactlyCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for String
:
*
*
* exactly(str) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def exactly(num: Int, xs: String)(implicit collecting: Collecting[Char, String], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[Char] =
new ResultOfCollectedAny(ExactlyCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax:
*
*
* no(xs) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def no[E, C[_]](xs: C[E])(implicit collecting: Collecting[E, C[E]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[E] =
new ResultOfCollectedAny(NoCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for java.util.Map
:
*
*
* no(jmap) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def no[K, V, JMAP[k, v] <: java.util.Map[k, v]](xs: JMAP[K, V])(implicit collecting: Collecting[org.scalatest.Entry[K, V], JMAP[K, V]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[org.scalatest.Entry[K, V]] =
new ResultOfCollectedAny(NoCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for String
:
*
*
* no(str) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def no(xs: String)(implicit collecting: Collecting[Char, String], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[Char] =
new ResultOfCollectedAny(NoCollected, collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax:
*
*
* between(1, 3, xs) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def between[E, C[_]](from: Int, upTo:Int, xs: C[E])(implicit collecting: Collecting[E, C[E]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[E] =
new ResultOfCollectedAny(BetweenCollected(from, upTo), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for java.util.Map
:
*
*
* between(1, 3, jmap) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def between[K, V, JMAP[k, v] <: java.util.Map[k, v]](from: Int, upTo:Int, xs: JMAP[K, V])(implicit collecting: Collecting[org.scalatest.Entry[K, V], JMAP[K, V]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[org.scalatest.Entry[K, V]] =
new ResultOfCollectedAny(BetweenCollected(from, upTo), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for String
:
*
*
* between(1, 3, str) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def between(from: Int, upTo:Int, xs: String)(implicit collecting: Collecting[Char, String], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[Char] =
new ResultOfCollectedAny(BetweenCollected(from, upTo), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax:
*
*
* atMost(3, xs) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atMost[E, C[_]](num: Int, xs: C[E])(implicit collecting: Collecting[E, C[E]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[E] =
new ResultOfCollectedAny(AtMostCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for scala.collection.GenMap
:
*
*
* atMost(3, map) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atMost[K, V, MAP[k, v] <: scala.collection.GenMap[k, v]](num: Int, xs: MAP[K, V])(implicit collecting: Collecting[(K, V), scala.collection.GenTraversable[(K, V)]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[(K, V)] =
new ResultOfCollectedAny(AtMostCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for java.util.Map
:
*
*
* atMost(3, jmap) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atMost[K, V, JMAP[k, v] <: java.util.Map[k, v]](num: Int, xs: JMAP[K, V])(implicit collecting: Collecting[org.scalatest.Entry[K, V], JMAP[K, V]], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[org.scalatest.Entry[K, V]] =
new ResultOfCollectedAny(AtMostCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax for String
:
*
*
* atMost(3, str) must fullymatch regex ("Hel*o world".r)
* ^
*
*/
def atMost(num: Int, xs: String)(implicit collecting: Collecting[Char, String], prettifier: Prettifier, pos: source.Position): ResultOfCollectedAny[Char] =
new ResultOfCollectedAny(AtMostCollected(num), collecting.genTraversableFrom(xs), xs, prettifier, pos)
/**
* This method enables the following syntax:
*
*
* a [RuntimeException] must be thrownBy { ... }
* ^
*
*/
def a[T: ClassTag]: ResultOfATypeInvocation[T] =
new ResultOfATypeInvocation(classTag)
/**
* This method enables the following syntax:
*
*
* an [Exception] must be thrownBy { ... }
* ^
*
*/
def an[T : ClassTag]: ResultOfAnTypeInvocation[T] =
new ResultOfAnTypeInvocation(classTag)
/**
* This method enables the following syntax:
*
*
* the [FileNotFoundException] must be thrownBy { ... }
* ^
*
*/
def the[T : ClassTag](implicit pos: source.Position): ResultOfTheTypeInvocation[T] =
new ResultOfTheTypeInvocation(classTag, pos)
// This is where ShouldMatchers.scala started
// 13 Feb 2019: Current dotty does not seems to like inner object, this is a work around until the problem is fixed.
private class MustMethodHelperClass {
def mustMatcher[T](left: T, rightMatcher: Matcher[T], prettifier: Prettifier, pos: source.Position): Assertion = {
val result = rightMatcher(left)
result match {
case equalMatchResult: EqualMatchResult =>
if (equalMatchResult.matches)
indicateSuccess(result.negatedFailureMessage(prettifier))
else {
val failureMessage = equalMatchResult.failureMessage(prettifier)
val analysis = equalMatchResult.analysis
indicateFailure(failureMessage, None, pos, analysis)
}
case _ =>
MatchFailed.unapply(result)(prettifier) match {
case Some(failureMessage) => indicateFailure(failureMessage, None, pos)
case None => indicateSuccess(result.negatedFailureMessage(prettifier))
}
}
}
def mustNotMatcher[T](left: T, rightMatcher: Matcher[T], prettifier: Prettifier, pos: source.Position): Assertion = {
val result = rightMatcher(left)
MatchSucceeded.unapply(result)(prettifier) match {
case Some(negatedFailureMessage) => indicateFailure(negatedFailureMessage, None, pos)
case None => indicateSuccess(result.failureMessage(prettifier))
}
}
}
private val MustMethodHelper = new MustMethodHelperClass
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
*
* This class is used in conjunction with an implicit conversion to enable must
methods to
* be invoked on objects of type Any
.
*
*
* @author Bill Venners
*/
sealed class AnyMustWrapper[T](val leftSideValue: T, val pos: source.Position, val prettifier: Prettifier) {
} // We need an empty AnyMustWrapper for now.
/**
* This method enables syntax such as the following:
*
*
* result must be (3)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(rightMatcherX1: Matcher[T]): Assertion = {
MustMethodHelper.mustMatcher(leftSideValue, rightMatcherX1, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* result must equal (3)
* ^
*
*/
extension [T, TYPECLASS1[_]](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(rightMatcherFactory1: MatcherFactory1[T, TYPECLASS1])(implicit typeClass1: TYPECLASS1[T]): Assertion = {
MustMethodHelper.mustMatcher(leftSideValue, rightMatcherFactory1.matcher, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* result must (equal (expected) and have length 3)
* ^
*
*/
extension [T, TYPECLASS1[_], TYPECLASS2[_]](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(rightMatcherFactory2: MatcherFactory2[T, TYPECLASS1, TYPECLASS2])(implicit typeClass1: TYPECLASS1[T], typeClass2: TYPECLASS2[T]): Assertion = {
MustMethodHelper.mustMatcher(leftSideValue, rightMatcherFactory2.matcher, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* a mustEqual b
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustEqual(right: Any)(implicit equality: Equality[T]): Assertion = {
if (!equality.areEqual(leftSideValue, right)) {
val prettyPair = prettifier(leftSideValue, right)
indicateFailure(Resources.formatString(Resources.rawDidNotEqual, Array(prettyPair.left, prettyPair.right)), None, pos, prettyPair.analysis)
}
else indicateSuccess(FailureMessages.equaled(prettifier, leftSideValue, right))
}
/**
* This method enables syntax such as the following:
*
*
* result mustEqual 7.1 +- 0.2
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustEqual(spread: Spread[T]): Assertion = {
if (!spread.isWithin(leftSideValue)) {
indicateFailure(FailureMessages.didNotEqualPlusOrMinus(prettifier, leftSideValue, spread.pivot, spread.tolerance), None, pos)
}
else indicateSuccess(FailureMessages.equaledPlusOrMinus(prettifier, leftSideValue, spread.pivot, spread.tolerance))
}
/**
* This method enables syntax such as the following:
*
*
* result mustEqual null
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustEqual(right: Null)(implicit ev: T <:< AnyRef): Assertion = {
if (leftSideValue != null) {
indicateFailure(FailureMessages.didNotEqualNull(prettifier, leftSideValue), None, pos)
}
else indicateSuccess(FailureMessages.equaledNull)
}
/**
* This method enables syntax such as the following:
*
*
* result must not equal (3)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(notWord: NotWord): ResultOfNotWordForAny[T] =
new ResultOfNotWordForAny[T](leftSideValue, false, prettifier, pos)
// In 2.10, will work with AnyVals. TODO: Also, Need to ensure Char works
/**
* This method enables syntax such as the following:
*
*
* a must === (b)
* ^
*
*/
extension [T, U](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(inv: TripleEqualsInvocation[U])(implicit constraint: T CanEqual U): Assertion = {
if ((constraint.areEqual(leftSideValue, inv.right)) != inv.expectingEqual)
indicateFailure(
if (inv.expectingEqual)
FailureMessages.didNotEqual(prettifier, leftSideValue, inv.right)
else
FailureMessages.equaled(prettifier, leftSideValue, inv.right),
None,
pos
)
else
indicateSuccess(
inv.expectingEqual,
FailureMessages.equaled(prettifier, leftSideValue, inv.right),
FailureMessages.didNotEqual(prettifier, leftSideValue, inv.right)
)
}
/**
* This method enables syntax such as the following:
*
*
* result must === (100 +- 1)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(inv: TripleEqualsInvocationOnSpread[T])(implicit ev: Numeric[T]): Assertion = {
if ((inv.spread.isWithin(leftSideValue)) != inv.expectingEqual)
indicateFailure(
if (inv.expectingEqual)
FailureMessages.didNotEqualPlusOrMinus(prettifier, leftSideValue, inv.spread.pivot, inv.spread.tolerance)
else
FailureMessages.equaledPlusOrMinus(prettifier, leftSideValue, inv.spread.pivot, inv.spread.tolerance),
None,
pos
)
else
indicateSuccess(
inv.expectingEqual,
FailureMessages.equaledPlusOrMinus(prettifier, leftSideValue, inv.spread.pivot, inv.spread.tolerance),
FailureMessages.didNotEqualPlusOrMinus(prettifier, leftSideValue, inv.spread.pivot, inv.spread.tolerance)
)
}
// TODO: Need to make sure this works in inspector shorthands. I moved this
// up here from NumericMustWrapper.
/**
* This method enables syntax such as the following:
*
*
* result must be a aMatcher
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(beWord: BeWord): ResultOfBeWordForAny[T] =
new ResultOfBeWordForAny(leftSideValue, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* aDouble mustBe 8.8
* ^
*
*/
extension [T, R](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(right: R)(implicit caneq: scala.CanEqual[T, R]): Assertion = {
if (!areEqualComparingArraysStructurally(leftSideValue, right)) {
val (leftee, rightee) = Suite.getObjectsForFailureMessage(leftSideValue, right)
val localPrettifier = prettifier // Grabbing a local copy so we don't attempt to serialize AnyMustWrapper (since first param to indicateFailure is a by-name)
indicateFailure(FailureMessages.wasNotEqualTo(localPrettifier, leftee, rightee), None, pos)
}
else indicateSuccess(FailureMessages.wasEqualTo(prettifier, leftSideValue, right))
}
/**
* This method enables syntax such as the following:
*
*
* 5 mustBe < (7)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(comparison: ResultOfLessThanComparison[T]): Assertion = {
if (!comparison(leftSideValue)) {
indicateFailure(
FailureMessages.wasNotLessThan(prettifier,
leftSideValue,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasLessThan(prettifier, leftSideValue, comparison.right))
}
/**
* This method enables syntax such as the following:
*
*
* 8 mustBe > (7)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(comparison: ResultOfGreaterThanComparison[T]): Assertion = {
if (!comparison(leftSideValue)) {
indicateFailure(
FailureMessages.wasNotGreaterThan(prettifier,
leftSideValue,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasGreaterThan(prettifier, leftSideValue, comparison.right))
}
/**
* This method enables syntax such as the following:
*
*
* 5 mustBe <= (7)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(comparison: ResultOfLessThanOrEqualToComparison[T]): Assertion = {
if (!comparison(leftSideValue)) {
indicateFailure(
FailureMessages.wasNotLessThanOrEqualTo(prettifier,
leftSideValue,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasLessThanOrEqualTo(prettifier, leftSideValue, comparison.right))
}
/**
* This method enables syntax such as the following:
*
*
* 8 mustBe >= (7)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(comparison: ResultOfGreaterThanOrEqualToComparison[T]): Assertion = {
if (!comparison(leftSideValue)) {
indicateFailure(
FailureMessages.wasNotGreaterThanOrEqualTo(prettifier,
leftSideValue,
comparison.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasGreaterThanOrEqualTo(prettifier, leftSideValue, comparison.right))
}
/**
* This method enables the following syntax, where odd
refers to a BeMatcher[Int]
:
*
* testing
* 1 mustBe odd
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(beMatcher: BeMatcher[T]): Assertion = {
val result = beMatcher.apply(leftSideValue)
if (!result.matches)
indicateFailure(result.failureMessage(prettifier), None, pos)
else indicateSuccess(result.negatedFailureMessage(prettifier))
}
/**
* This method enables syntax such as the following:
*
*
* result mustBe 7.1 +- 0.2
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(spread: Spread[T]): Assertion = {
if (!spread.isWithin(leftSideValue)) {
indicateFailure(FailureMessages.wasNotPlusOrMinus(prettifier, leftSideValue, spread.pivot, spread.tolerance), None, pos)
}
else indicateSuccess(FailureMessages.wasPlusOrMinus(prettifier, leftSideValue, spread.pivot, spread.tolerance))
}
/**
* This method enables syntax such as the following:
*
*
* result mustBe sorted
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(right: SortedWord)(implicit sortable: Sortable[T]): Assertion = {
if (!sortable.isSorted(leftSideValue))
indicateFailure(FailureMessages.wasNotSorted(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.wasSorted(prettifier, leftSideValue))
}
/**
* This method enables syntax such as the following:
*
*
* aDouble mustBe a [Book]
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix inline def mustBe(aType: ResultOfATypeInvocation[_]): Assertion = ${ org.scalatest.matchers.must.TypeMatcherMacro.mustBeATypeImpl('{leftSideValue}, '{aType}, '{pos}, '{prettifier}) }
/**
* This method enables syntax such as the following:
*
*
* aDouble mustBe an [Book]
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix inline def mustBe(anType: ResultOfAnTypeInvocation[_]): Assertion = ${ org.scalatest.matchers.must.TypeMatcherMacro.mustBeAnTypeImpl('{leftSideValue}, '{anType}, '{pos}, '{prettifier}) }
/**
* This method enables syntax such as the following:
*
*
* result mustBe readable
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(right: ReadableWord)(implicit readability: Readability[T]): Assertion = {
if (!readability.isReadable(leftSideValue))
indicateFailure(FailureMessages.wasNotReadable(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.wasReadable(prettifier, leftSideValue))
}
/**
* This method enables syntax such as the following:
*
*
* result mustBe writable
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(right: WritableWord)(implicit writability: Writability[T]): Assertion = {
if (!writability.isWritable(leftSideValue))
indicateFailure(FailureMessages.wasNotWritable(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.wasWritable(prettifier, leftSideValue))
}
/**
* This method enables syntax such as the following:
*
*
* result mustBe empty
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(right: EmptyWord)(implicit emptiness: Emptiness[T]): Assertion = {
if (!emptiness.isEmpty(leftSideValue))
indicateFailure(FailureMessages.wasNotEmpty(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.wasEmpty(prettifier, leftSideValue))
}
/**
* This method enables syntax such as the following:
*
*
* result mustBe defined
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(right: DefinedWord)(implicit definition: Definition[T]): Assertion = {
if (!definition.isDefined(leftSideValue))
indicateFailure(FailureMessages.wasNotDefined(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.wasDefined(prettifier, leftSideValue))
}
/**
* This method enables syntax such as the following:
*
*
* result mustNot be (3)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(beWord: BeWord): ResultOfBeWordForAny[T] =
new ResultOfBeWordForAny(leftSideValue, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* result mustNot (be (3))
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(rightMatcherX1: Matcher[T]): Assertion = {
MustMethodHelper.mustNotMatcher(leftSideValue, rightMatcherX1, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* result mustNot (be readable)
* ^
*
*/
extension [T, TYPECLASS1[_]](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(rightMatcherFactory1: MatcherFactory1[T, TYPECLASS1])(implicit typeClass1: TYPECLASS1[T]): Assertion = {
MustMethodHelper.mustNotMatcher(leftSideValue, rightMatcherFactory1.matcher, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* result mustNot have length (3)
* ^
* result mustNot have size (3)
* ^
* exception mustNot have message ("file not found")
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(haveWord: HaveWord): ResultOfHaveWordForExtent[T] =
new ResultOfHaveWordForExtent(leftSideValue, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* result must have length (3)
* ^
* result must have size (3)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(haveWord: HaveWord): ResultOfHaveWordForExtent[T] =
new ResultOfHaveWordForExtent(leftSideValue, true, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* result mustBe null
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(right: Null)(implicit ev: T <:< AnyRef): Assertion = {
if (leftSideValue != null) {
indicateFailure(FailureMessages.wasNotNull(prettifier, leftSideValue), None, pos)
}
else indicateSuccess(FailureMessages.wasNull)
}
/**
* This method enables syntax such as the following:
*
*
* result mustBe theSameInstanceAs (anotherObject)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(resultOfSameInstanceAsApplication: ResultOfTheSameInstanceAsApplication)(implicit toAnyRef: T <:< AnyRef): Assertion = {
if (resultOfSameInstanceAsApplication.right ne toAnyRef(leftSideValue)) {
indicateFailure(
FailureMessages.wasNotSameInstanceAs(prettifier,
leftSideValue,
resultOfSameInstanceAsApplication.right
),
None,
pos
)
}
else indicateSuccess(FailureMessages.wasSameInstanceAs(prettifier, leftSideValue, resultOfSameInstanceAsApplication.right))
}
/**
* This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
*
*
* programmingInScala mustBe excellentRead
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(bePropertyMatcher: BePropertyMatcher[T])(implicit ev: T <:< AnyRef): Assertion = {
val result = bePropertyMatcher(leftSideValue)
if (!result.matches)
indicateFailure(FailureMessages.wasNot(prettifier, leftSideValue, UnquotedString(result.propertyName)), None, pos)
else indicateSuccess(FailureMessages.was(prettifier, leftSideValue, UnquotedString(result.propertyName)))
}
/**
* This method enables the following syntax, where goodRead
refers to a BePropertyMatcher[Book]
:
*
*
* programmingInScala mustBe a (goodRead)
* ^
*
*/
extension [T, U >: T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(resultOfAWordApplication: ResultOfAWordToBePropertyMatcherApplication[U])(implicit ev: T <:< AnyRef): Assertion = {
val result = resultOfAWordApplication.bePropertyMatcher(leftSideValue)
if (!result.matches) {
indicateFailure(FailureMessages.wasNotA(prettifier, leftSideValue, UnquotedString(result.propertyName)), None, pos)
}
else indicateSuccess(FailureMessages.wasA(prettifier, leftSideValue, UnquotedString(result.propertyName)))
}
/**
* This method enables the following syntax, where excellentRead
refers to a BePropertyMatcher[Book]
:
*
*
* programmingInScala mustBe an (excellentRead)
* ^
*
*/
extension [T, U >: T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustBe(resultOfAnWordApplication: ResultOfAnWordToBePropertyMatcherApplication[U])(implicit ev: T <:< AnyRef): Assertion = {
val result = resultOfAnWordApplication.bePropertyMatcher(leftSideValue)
if (!result.matches) {
indicateFailure(FailureMessages.wasNotAn(prettifier, leftSideValue, UnquotedString(result.propertyName)), None, pos)
}
else indicateSuccess(FailureMessages.wasAn(prettifier, leftSideValue, UnquotedString(result.propertyName)))
}
/*
def mustBe[U](right: AType[U]) {
if (!right.isAssignableFromClassOf(leftSideValue)) {
throw newTestFailedException(FailureMessages.wasNotAnInstanceOf(prettifier, leftSideValue, UnquotedString(right.className), UnquotedString(leftSideValue.getClass.getName)))
}
}
*/
/**
* This method enables syntax such as the following:
*
*
* xs must contain oneOf (1, 2, 3)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(containWord: ContainWord): ResultOfContainWord[T] = {
new ResultOfContainWord(leftSideValue, true, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* xs mustNot contain (oneOf (1, 2, 3))
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(contain: ContainWord): ResultOfContainWord[T] =
new ResultOfContainWord(leftSideValue, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* file must exist
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(existWord: ExistWord)(implicit existence: Existence[T]): Assertion = {
if (!existence.exists(leftSideValue))
indicateFailure(FailureMessages.doesNotExist(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.exists(prettifier, leftSideValue))
}
/**
* This method enables syntax such as the following:
*
*
* file must not (exist)
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(notExist: ResultOfNotExist)(implicit existence: Existence[T]): Assertion = {
if (existence.exists(leftSideValue))
indicateFailure(FailureMessages.exists(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.doesNotExist(prettifier, leftSideValue))
}
/**
* This method enables syntax such as the following:
*
*
* file mustNot exist
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(existWord: ExistWord)(implicit existence: Existence[T]): Assertion = {
if (existence.exists(leftSideValue))
indicateFailure(FailureMessages.exists(prettifier, leftSideValue), None, pos)
else indicateSuccess(FailureMessages.doesNotExist(prettifier, leftSideValue))
}
// From StringMustWrapper
/**
* This method enables syntax such as the following:
*
*
* string must include regex ("hi")
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(includeWord: IncludeWord)(implicit ev: T <:< String): ResultOfIncludeWordForString = {
new ResultOfIncludeWordForString(leftSideValue, true, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* string must startWith regex ("hello")
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(startWithWord: StartWithWord)(implicit ev: T <:< String): ResultOfStartWithWordForString = {
new ResultOfStartWithWordForString(leftSideValue, true, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* string must endWith regex ("world")
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def must(endWithWord: EndWithWord)(implicit ev: T <:< String): ResultOfEndWithWordForString = {
new ResultOfEndWithWordForString(leftSideValue, true, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* string mustNot startWith regex ("hello")
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(startWithWord: StartWithWord)(implicit ev: T <:< String): ResultOfStartWithWordForString =
new ResultOfStartWithWordForString(leftSideValue, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* string mustNot endWith regex ("world")
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(endWithWord: EndWithWord)(implicit ev: T <:< String): ResultOfEndWithWordForString =
new ResultOfEndWithWordForString(leftSideValue, false, prettifier, pos)
/**
* This method enables syntax such as the following:
*
*
* string mustNot include regex ("hi")
* ^
*
*/
extension [T](leftSideValue: T)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(includeWord: IncludeWord)(implicit ev: T <:< String): ResultOfIncludeWordForString =
new ResultOfIncludeWordForString(leftSideValue, false, prettifier, pos)
/**
* This class is part of the ScalaTest matchers DSL. Please see the documentation for Matchers
for an overview of
* the matchers DSL.
*
*
* This class is used in conjunction with an implicit conversion to enable must
methods to
* be invoked on String
s.
*
*
* @author Bill Venners
*/
/**
* This method enables syntax such as the following:
*
*
* string must fullyMatch regex ("a(b*)c" withGroup "bb")
* ^
*
*/
extension (leftSideString: String)(using pos: source.Position, prettifier: Prettifier) infix def withGroup(group: String): RegexWithGroups =
new RegexWithGroups(leftSideString.r, IndexedSeq(group))
/**
* This method enables syntax such as the following:
*
*
* string must fullyMatch regex ("a(b*)(c*)" withGroups ("bb", "cc"))
* ^
*
*/
extension (leftSideString: String)(using pos: source.Position, prettifier: Prettifier) infix def withGroups(groups: String*): RegexWithGroups =
new RegexWithGroups(leftSideString.r, IndexedSeq(groups: _*))
/**
* This method enables syntax such as the following:
*
*
* string must fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
* ^
*
*/
extension (leftSideString: String)(using pos: source.Position, prettifier: Prettifier) infix def must(fullyMatchWord: FullyMatchWord): ResultOfFullyMatchWordForString = {
new ResultOfFullyMatchWordForString(leftSideString, true, prettifier, pos)
}
/**
* This method enables syntax such as the following:
*
*
* string mustNot fullyMatch regex ("""(-)?(\d+)(\.\d*)?""")
* ^
*
*/
extension (leftSideString: String)(using pos: source.Position, prettifier: Prettifier) infix def mustNot(fullyMatchWord: FullyMatchWord): ResultOfFullyMatchWordForString =
new ResultOfFullyMatchWordForString(leftSideString, false, prettifier, pos)
import scala.compiletime.testing.{typeChecks,typeCheckErrors}
/**
* This method enables syntax such as the following:
*
*
* string must compile
* ^
*
*/
extension (inline leftSideString: String)(using pos: source.Position, prettifier: Prettifier) infix transparent inline def must(compileWord: CompileWord): Assertion = ${ org.scalatest.matchers.must.CompileMacro.mustCompileImpl('{leftSideString}, '{typeCheckErrors(leftSideString)}, '{compileWord})('{pos}) }
/**
* This method enables syntax such as the following:
*
*
* string mustNot compile
* ^
*
*/
extension (inline leftSideString: String)(using pos: source.Position, prettifier: Prettifier) infix transparent inline def mustNot(compileWord: CompileWord): Assertion = ${ org.scalatest.matchers.must.CompileMacro.mustNotCompileImpl('{leftSideString}, '{typeChecks(leftSideString)}, '{compileWord})('{pos}) }
/**
* This method enables syntax such as the following:
*
*
* string mustNot typeCheck
* ^
*
*/
extension (inline leftSideString: String)(using pos: source.Position, prettifier: Prettifier) infix transparent inline def mustNot(typeCheckWord: TypeCheckWord): Assertion = ${ org.scalatest.matchers.must.CompileMacro.mustNotTypeCheckImpl('{leftSideString}, '{typeCheckErrors(leftSideString)}, '{typeCheckWord})('{pos}) }
/**
* This method enables syntax such as the following:
*
*
* regex must fullyMatch regex ("a(b*)c" withGroup "bb")
* ^
*
*/
extension (regex: Regex) infix def withGroup(group: String): RegexWithGroups =
new RegexWithGroups(regex, IndexedSeq(group))
/**
* This method enables syntax such as the following:
*
*
* regex must fullyMatch regex ("a(b*)(c*)" withGroups ("bb", "cc"))
* ^
*
*/
extension (regex: Regex) infix def withGroups(groups: String*): RegexWithGroups =
new RegexWithGroups(regex, IndexedSeq(groups: _*))
/**
* This method enables syntax such as the following:
*
*
* book must have (message ("A TALE OF TWO CITIES") (of [Book]), title ("A Tale of Two Cities"))
* ^
*
*/
def of[T](implicit ev: ClassTag[T]): ResultOfOfTypeInvocation[T] =
new ResultOfOfTypeInvocation[T]
}
/**
* Companion object that facilitates the importing of Matchers
members as
* an alternative to mixing it the trait. One use case is to import Matchers
members so you can use
* them in the Scala interpreter.
*
* @author Bill Venners
*/
object Matchers extends Matchers