Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2019-2024 John A. De Goes and the ZIO Contributors
*
* 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 zio.test
import zio.Clock.ClockLive
import zio._
import zio.test.ReporterEventRenderer.ConsoleEventRenderer
import java.util.concurrent.TimeUnit
/**
* A `TestRunner[R, E]` encapsulates all the logic necessary to run specs that
* require an environment `R` and may fail with an error `E`. Test runners
* require a test executor, a runtime configuration, and a reporter.
*/
final case class TestRunner[R, E](executor: TestExecutor[R, E]) { self =>
val runtime: Runtime[Any] = Runtime.default
/**
* Runs the spec, producing the execution results.
*/
def run(fullyQualifiedName: String, spec: Spec[R, E], defExec: ExecutionStrategy = ExecutionStrategy.ParallelN(4))(
implicit trace: Trace
): UIO[Summary] =
for {
start <- ClockLive.instant
summary <- executor.run(fullyQualifiedName, spec, defExec)
end <- ClockLive.instant
} yield summary.timed(start, end)
trait UnsafeAPI {
def run(spec: Spec[R, E])(implicit trace: Trace, unsafe: Unsafe): Unit
def runAsync(spec: Spec[R, E])(k: => Unit)(implicit trace: Trace, unsafe: Unsafe): Unit
def runSync(spec: Spec[R, E])(implicit trace: Trace, unsafe: Unsafe): Exit[Nothing, Unit]
}
val unsafe: UnsafeAPI =
new UnsafeAPI {
/**
* An unsafe, synchronous run of the specified spec.
*/
def run(spec: Spec[R, E])(implicit trace: Trace, unsafe: Unsafe): Unit =
runtime.unsafe
.run(self.run("Test Task name unavailable in this context.", spec))
.getOrThrowFiberFailure()
/**
* An unsafe, asynchronous run of the specified spec.
*/
def runAsync(spec: Spec[R, E])(k: => Unit)(implicit trace: Trace, unsafe: Unsafe): Unit = {
val fiber =
runtime.unsafe.fork(self.run("Test Task name unavailable in this context.", spec))
fiber.unsafe.addObserver {
case Exit.Success(_) => k
case Exit.Failure(c) => throw FiberFailure(c)
}
}
/**
* An unsafe, synchronous run of the specified spec.
*/
def runSync(spec: Spec[R, E])(implicit trace: Trace, unsafe: Unsafe): Exit[Nothing, Unit] =
runtime.unsafe.run(self.run("Test Task name unavailable in this context.", spec).unit)
}
}