cats.effect.testing.specs2.CatsResource.scala Maven / Gradle / Ivy
/*
* Copyright 2020-2021 Daniel Spiewak
*
* 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 cats.effect.testing
package specs2
import cats.effect.{Async, Deferred, Resource, Sync}
import cats.syntax.all._
import cats.effect.syntax.all._
import org.specs2.specification.BeforeAfterAll
import scala.concurrent.Await
import scala.concurrent.duration._
abstract class CatsResource[F[_]: Async: UnsafeRun, A] extends BeforeAfterAll with CatsEffect {
val resource: Resource[F, A]
protected val ResourceTimeout: Duration = 10.seconds
// we use the gate to prevent further step execution
// this isn't *ideal* because we'd really like to block the specs from even starting
// but it does work on scalajs
@volatile
private var gate: Option[Deferred[F, Unit]] = None
private var value: Option[A] = None
private var shutdown: F[Unit] = ().pure[F]
override def beforeAll(): Unit = {
val toRun = for {
d <- Deferred[F, Unit]
_ <- Sync[F] delay {
gate = Some(d)
}
pair <- resource.allocated
(a, shutdownAction) = pair
_ <- Sync[F] delay {
value = Some(a)
shutdown = shutdownAction
}
_ <- d.complete(())
} yield ()
val guarded = ResourceTimeout match {
case fd: FiniteDuration => toRun.timeout(fd)
case _ => toRun
}
UnsafeRun[F].unsafeToFuture(guarded)
()
}
override def afterAll(): Unit = {
Await.result(UnsafeRun[F].unsafeToFuture(shutdown), ResourceTimeout)
gate = None
value = None
shutdown = ().pure[F]
}
def withResource[R](f: A => F[R]): F[R] =
gate match {
case Some(g) =>
g.get *> Sync[F].delay(value.get).flatMap(f)
// specs2's runtime should prevent this case
case None =>
new AssertionError("Resource uninitialized").raiseError[F, R]
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy