Object

zio.test.environment

TestClock

Related Doc: package environment

Permalink

object TestClock extends Serializable

TestClock makes it easy to deterministically and efficiently test effects involving the passage of time.

Instead of waiting for actual time to pass, sleep and methods implemented in terms of it schedule effects to take place at a given wall clock time. Users can adjust the wall clock time using the adjust and setTime methods, and all effects scheduled to take place on or before that wall clock time will automically be run.

For example, here is how we can test ZIO#timeout using TestClock:

import zio.ZIO
import zio.duration._
import zio.test.environment.TestClock

for {
  fiber  <- ZIO.sleep(5.minutes).timeout(1.minute).fork
  _      <- TestClock.adjust(1.minute)
  result <- fiber.join
} yield result == None

Note how we forked the fiber that sleep was invoked on. Calls to sleep and methods derived from it will semantically block until the wall clock time is set to on or after the time they are scheduled to run. If we didn't fork the fiber on which we called sleep we would never get to set the the wall clock time on the line below. Thus, a useful pattern when using TestClock is to fork the effect being tested, then adjust the wall clock time, and finally verify that the expected effects have been performed.

Sleep and related combinators schedule events to occur at a specified duration in the future relative to the current fiber time (e.g. 10 seconds from the current fiber time). The fiber time is backed by a FiberRef and is incremented for the duration each fiber is sleeping. Child fibers inherit the fiber time of their parent so methods that rely on repeated sleep calls work as you would expect.

For example, here is how we can test an effect that recurs with a fixed delay:

import zio.Queue
import zio.duration._
import zio.test.environment.TestClock

for {
  q <- Queue.unbounded[Unit]
  _ <- (q.offer(()).delay(60.minutes)).forever.fork
  a <- q.poll.map(_.isEmpty)
  _ <- TestClock.adjust(60.minutes)
  b <- q.take.as(true)
  c <- q.poll.map(_.isEmpty)
  _ <- TestClock.adjust(60.minutes)
  d <- q.take.as(true)
  e <- q.poll.map(_.isEmpty)
} yield a && b && c && d && e

Here we verify that no effect is performed before the recurrence period, that an effect is performed after the recurrence period, and that the effect is performed exactly once. The key thing to note here is that after each recurrence the next recurrence is scheduled to occur at the appropriate time in the future, so when we adjust the wall clock time by 60 minutes exactly one value is placed in the queue, and when we adjust the wall clock time by another 60 minutes exactly one more value is placed in the queue.

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TestClock
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Data(duration: Duration, sleeps: List[(Duration, Promise[Nothing, Unit])]) extends Product with Serializable

    Permalink

    The state of the TestClock.

  2. final case class FiberData(duration: Duration, timeZone: ZoneId) extends Product with Serializable

    Permalink
  3. trait Service extends Restorable

    Permalink
  4. final case class Test(clockState: Ref[Data], fiberState: FiberRef[FiberData], live: Live.Service, warningState: RefM[WarningData]) extends clock.Clock.Service with Service with Product with Serializable

    Permalink
  5. sealed trait WarningData extends AnyRef

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object FiberData extends Serializable

    Permalink
  5. object WarningData

    Permalink
  6. def adjust(duration: ⇒ Duration): ZIO[TestClock, Nothing, Unit]

    Permalink

    Accesses a TestClock instance in the environment and increments the wall clock time by the specified duration, running any actions scheduled for on or before the new time.

  7. val any: ZLayer[Clock with TestClock, Nothing, Clock with TestClock]

    Permalink
  8. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. val default: ZLayer[Live, Nothing, Clock with TestClock]

    Permalink
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. val fiberTime: ZIO[TestClock, Nothing, Duration]

    Permalink

    Accesses a TestClock instance in the environment and returns the current fiber time for this fiber.

  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  16. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def live(data: Data): ZLayer[Live, Nothing, Clock with TestClock]

    Permalink

    Constructs a new Test object that implements the TestClock interface.

    Constructs a new Test object that implements the TestClock interface. This can be useful for mixing in with implementations of other interfaces.

  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  22. val runAll: ZIO[TestClock, Nothing, Unit]

    Permalink

    Accesses a TestClock instance in the environment and runs all scheduled effects.

    Accesses a TestClock instance in the environment and runs all scheduled effects. After this any scheduled effects will be run immediately.

  23. val save: ZIO[TestClock, Nothing, UIO[Unit]]

    Permalink

    Accesses a TestClock instance in the environment and saves the clock state in an effect which, when run, will restore the TestClock to the saved state

  24. def setDateTime(dateTime: ⇒ OffsetDateTime): ZIO[TestClock, Nothing, Unit]

    Permalink

    Accesses a TestClock instance in the environment and sets the wall clock time to the specified OffsetDateTime, running any actions scheduled for on or before the new time.

  25. def setTime(duration: ⇒ Duration): ZIO[TestClock, Nothing, Unit]

    Permalink

    Accesses a TestClock instance in the environment and sets the wall clock time to the specified time in terms of duration since the epoch, running any actions scheduled for on or before the new time.

  26. def setTimeZone(zone: ⇒ ZoneId): ZIO[TestClock, Nothing, Unit]

    Permalink

    Accesses a TestClock instance in the environment, setting the time zone to the specified time zone.

    Accesses a TestClock instance in the environment, setting the time zone to the specified time zone. The wall clock time in terms of nanoseconds since the epoch will not be altered and no scheduled actions will be run as a result of this effect.

  27. val sleeps: ZIO[TestClock, Nothing, List[Duration]]

    Permalink

    Accesses a TestClock instance in the environment and returns a list of wall clock times that effects are scheduled to run.

  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. val timeZone: ZIO[TestClock, Nothing, ZoneId]

    Permalink

    Accesses a TestClock instance in the environment and returns the current time zone.

  30. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped