Package

zio.test

laws

Permalink

package laws

The laws package provides functionality for describing laws as values. The fundamental abstraction is a set of ZLaws[Caps, R]. These laws model the laws that instances having a capability of type Caps are expected to satisfy. A capability Caps[_] is an abstraction describing some functionality that is common across different data types and obeys certain laws. For example, we can model the capability of two values of a type being compared for equality as follows:

trait Equal[-A] {
  def equal(a1: A, a2: A): Boolean
}

Definitions of equality are expected to obey certain laws:

  1. Reflexivity - a1 === a1 2. Symmetry - a1 === a2 ==> a2 === a1 3. Transitivity - (a1 === a2) && (a2 === a3) ==> (a1 === a3)

These laws define what the capabilities mean and ensure that it is safe to abstract across different instances with the same capability.

Using ZIO Test, we can represent these laws as values. To do so, we define each law using one of the ZLaws constructors. For example:

val transitivityLaw = ZLaws.Laws3[Equal]("transitivityLaw") {
  def apply[A: Equal](a1: A, a2: A, a3: A): TestResult =
    ???
}

We can then combine laws using the + operator:

val reflexivityLaw: = ???
val symmetryLaw:    = ???

val equalLaws = reflexivityLaw + symmetryLaw + transitivityLaw

Laws have a run method that takes a generator of values of type A and checks that those values satisfy the laws. In addition, objects can extend ZLawful to provide an even more convenient syntax for users to check that instances satisfy certain laws.

object Equal extends Lawful[Equal]

object Hash extends Lawful[Hash]

object Ord extends Lawful[Ord]

checkAllLaws(Equal + Hash + Ord)(Gen.anyInt)

Note that capabilities compose seamlessly because of contravariance. We can combine laws describing different capabilities to construct a set of laws requiring that instances having all of the capabilities satisfy each of the laws.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. laws
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. trait GenF[-R, F[_]] extends AnyRef

    Permalink

    A GenF knows how to construct a generator of F[A] values given a generator of A values for any A.

    A GenF knows how to construct a generator of F[A] values given a generator of A values for any A. For example, a GenF of List values knows how to generate lists with elements given a generator of elements of that type. You can think of GenF as a "recipe" for building generators for parameterized types.

  2. type Lawful[-Caps[_]] = ZLawful[Caps, Any]

    Permalink
  3. type Lawful2[-CapsBoth[_, _], -CapsLeft[_], -CapsRight[_]] = ZLawful2[CapsBoth, CapsLeft, CapsRight, Any]

    Permalink
  4. type Laws[-Caps[_]] = ZLaws[Caps, Any]

    Permalink
  5. type Laws2[-CapsBoth[_, _], -CapsLeft[_], -CapsRight[_]] = ZLaws2[CapsBoth, CapsLeft, CapsRight, Any]

    Permalink
  6. trait ZLawful[-Caps[_], -R] extends AnyRef

    Permalink

    ZLawful[Caps, R] describes a capability that is expected to satisfy a set of laws.

    ZLawful[Caps, R] describes a capability that is expected to satisfy a set of laws. Lawful instances can be combined using + to describe a set of capabilities and all of the laws that those capabilities are expected to satisfy.

    trait Equal[-A] {
      def equal(a1: A, a2: A): Boolean
    }
    
    object Equal extends Lawful[Equal] {
      val laws = ???
    }
  7. trait ZLawful2[-CapsBoth[_, _], -CapsLeft[_], -CapsRight[_], -R] extends AnyRef

    Permalink
  8. trait ZLaws[-Caps[_], -R] extends AnyRef

    Permalink

    ZLaws[Caps, R] represents a set of laws that values with capabilities Caps are expected to satisfy.

    ZLaws[Caps, R] represents a set of laws that values with capabilities Caps are expected to satisfy. Laws can be run by providing a generator of values of a type A with the required capabilities to return a test result. Laws can be combined using + to produce a set of laws that require both sets of laws to be satisfied.

  9. trait ZLaws2[-CapsBoth[_, _], -CapsLeft[_], -CapsRight[_], -R] extends AnyRef

    Permalink

Value Members

  1. object GenF

    Permalink
  2. object LawfulF

    Permalink
  3. object Laws

    Permalink
  4. object Laws2

    Permalink
  5. object LawsF

    Permalink
  6. object ZLawfulF

    Permalink

    ZLawful[CapsF, Caps, R] describes a set of laws that a parameterized type F[A] with capabilities CapsF is expected to satisfy with respect to all types A that have capabilities Caps.

    ZLawful[CapsF, Caps, R] describes a set of laws that a parameterized type F[A] with capabilities CapsF is expected to satisfy with respect to all types A that have capabilities Caps. Lawful instances can be combined using + to describe a set of capabilities and all of the laws that those capabilities are expected to satisfy.

  7. object ZLaws

    Permalink
  8. object ZLaws2

    Permalink
  9. object ZLawsF

    Permalink

    ZLaws[CapsF, Caps, R] describes a set of laws that a parameterized type F[A] with capabilities CapsF is expected to satisfy with respect to all types A that have capabilities Caps.

    ZLaws[CapsF, Caps, R] describes a set of laws that a parameterized type F[A] with capabilities CapsF is expected to satisfy with respect to all types A that have capabilities Caps. Laws can be run by providing a GenF that is capable of generating F[A] values given a generator of A values and a generatoro of values of some type A. Laws can be combined using + to produce a set of laws that require both sets of laws to be satisfied.

  10. def checkAllLaws[CapsF[_[_]], Caps[_], R, R1 <: R, F[_], A](lawful: Invariant[CapsF, Caps, R])(genF: GenF[R1, F], gen: Gen[R1, A])(implicit arg0: CapsF[F], arg1: Caps[A]): ZIO[R1, Nothing, TestResult]

    Permalink

    Checks that all values generated by a the specified generator satisfy the expected behavior of the lawful instance.

  11. def checkAllLaws[CapsF[_[-_]], Caps[_], R, R1 <: R, F[-_], A](lawful: Contravariant[CapsF, Caps, R])(genF: GenF[R1, F], gen: Gen[R1, A])(implicit arg0: CapsF[F], arg1: Caps[A]): ZIO[R1, Nothing, TestResult]

    Permalink

    Checks that all values generated by a the specified generator satisfy the expected behavior of the lawful instance.

  12. def checkAllLaws[CapsF[_[+_]], Caps[_], R, R1 <: R, F[+_], A](lawful: Covariant[CapsF, Caps, R])(genF: GenF[R1, F], gen: Gen[R1, A])(implicit arg0: CapsF[F], arg1: Caps[A]): ZIO[R1, Nothing, TestResult]

    Permalink
  13. def checkAllLaws[CapsBoth[_, _], CapsLeft[_], CapsRight[_], R, R1 <: R, A, B](lawful: ZLawful2[CapsBoth, CapsLeft, CapsRight, R])(a: Gen[R1, A], b: Gen[R1, B])(implicit arg0: CapsLeft[A], arg1: CapsRight[B], CapsBoth: CapsBoth[A, B]): ZIO[R1, Nothing, TestResult]

    Permalink

    Checks that all values generated by a the specified generator satisfy the expected behavior of the lawful instance.

  14. def checkAllLaws[Caps[_], R, R1 <: R, A](lawful: ZLawful[Caps, R])(gen: Gen[R1, A])(implicit arg0: Caps[A]): ZIO[R1, Nothing, TestResult]

    Permalink

    Checks that all values generated by a the specified generator satisfy the expected behavior of the lawful instance.

Inherited from AnyRef

Inherited from Any

Ungrouped