Skip to content

Commit 81621c7

Browse files
authored
Merge pull request #118 from armanbilge/pr/test-control-reproducible
Reproducible test control via ScalaCheck seed
2 parents 618c64a + da4a9f5 commit 81621c7

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

frp/src/test/scala/calico/frp/SignalSuite.scala

+8-1
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,17 @@ import munit.DisciplineSuite
3232
import org.scalacheck.Arbitrary
3333
import org.scalacheck.Arbitrary.arbitrary
3434
import org.scalacheck.Gen
35+
import org.scalacheck.rng.Seed
3536

37+
import java.util.Base64
3638
import scala.concurrent.duration.*
3739

3840
class SignalSuite extends DisciplineSuite, TestInstances:
3941

42+
def testControlSeed =
43+
val bytes = Seed.fromBase64(scalaCheckInitialSeed).get.long._1.toString.getBytes()
44+
new String(Base64.getEncoder().encode(bytes))
45+
4046
override def scalaCheckTestParameters =
4147
if sys.props("java.vm.name").contains("Scala.js") then
4248
super.scalaCheckTestParameters.withMinSuccessfulTests(10).withMaxSize(10)
@@ -81,7 +87,8 @@ class SignalSuite extends DisciplineSuite, TestInstances:
8187
.evalMap(x => ref.update(x :: _))
8288
.compile
8389
.drain
84-
.timeoutTo(Long.MaxValue.nanos, IO.unit)
90+
.timeoutTo(Long.MaxValue.nanos, IO.unit),
91+
seed = Some(testControlSeed)
8592
) *> ref.get.map(_.distinctBy(_._2))
8693
}
8794
}

0 commit comments

Comments
 (0)