Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add util method to check that StackOverflowError is reproducible #1923

Merged
87 changes: 87 additions & 0 deletions tests/jvm/src/test/scala/cats/effect/ResourceJVMSpec.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
/*
* Copyright 2020-2021 Typelevel
*
* 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

import cats.arrow.FunctionK
import cats.syntax.eq._
import org.specs2.mutable.Specification

class ResourceJVMSpec extends Specification with Runners {

"platform" should {

/**
* Recursively calls itself until a [[StackOverflowError]] is encountered,
* at which point, the current depth is returned.
*
* @return the stack depth at which [[StackOverflowError]] occurs
*/
def verifyThatSoeIsReproducibleWithStackDepth(): Int = {
var depth = 0

def triggerStackOverflowError(n: Int): Int = {
depth = n
n + triggerStackOverflowError(n + 1)
}

try triggerStackOverflowError(0)
catch {
case _: StackOverflowError => depth
}
}

"verify use is stack-safe over binds" in ticked { implicit ticker =>
val stackDepth = verifyThatSoeIsReproducibleWithStackDepth()
val r = (1 to stackDepth)
.foldLeft(Resource.eval(IO.unit)) {
case (r, _) =>
r.flatMap(_ => Resource.eval(IO.unit))
}
.use_
r eqv IO.unit
}

"verify use is stack-safe over binds - 2" in real {
val stackDepth = verifyThatSoeIsReproducibleWithStackDepth()
def p(i: Int): Resource[IO, Int] =
Resource
.pure {
if (i < stackDepth) Left(i + 1)
else Right(i)
}
.flatMap {
case Left(a) => p(a)
case Right(b) => Resource.pure(b)
}

p(0).use(IO.pure).mustEqual(stackDepth)
}

"verify mapK is stack-safe over binds" in ticked { implicit ticker =>
val stackDepth = verifyThatSoeIsReproducibleWithStackDepth()
val r = (1 to stackDepth)
.foldLeft(Resource.eval(IO.unit)) {
case (r, _) =>
r.flatMap(_ => Resource.eval(IO.unit))
}
.mapK(FunctionK.id)
.use_

r eqv IO.unit
}
}
}