pekko/akka-docs/src/test/scala/docs/stream/RateTransformationDocSpec.scala

123 lines
3.5 KiB
Scala
Raw Normal View History

/*
* Copyright (C) 2015-2020 Lightbend Inc. <https://www.lightbend.com>
2015-07-17 17:03:48 +03:00
*/
2015-07-17 17:03:48 +03:00
package docs.stream
import akka.stream.scaladsl._
import akka.stream.testkit.scaladsl._
2015-07-17 17:03:48 +03:00
import scala.util.Random
import scala.math._
import scala.concurrent.duration._
import scala.collection.immutable
import akka.testkit.{ AkkaSpec, TestLatch }
2015-07-17 17:03:48 +03:00
import scala.concurrent.Await
2015-07-17 17:03:48 +03:00
class RateTransformationDocSpec extends AkkaSpec {
"conflate should summarize" in {
//#conflate-summarize
2019-03-11 10:38:24 +01:00
val statsFlow = Flow[Double].conflateWithSeed(immutable.Seq(_))(_ :+ _).map { s =>
val μ = s.sum / s.size
val se = s.map(x => pow(x - μ, 2))
val σ = sqrt(se.sum / se.size)
(σ, μ, s.size)
}
2015-07-17 17:03:48 +03:00
//#conflate-summarize
2019-03-11 10:38:24 +01:00
val fut =
Source.fromIterator(() => Iterator.continually(Random.nextGaussian)).via(statsFlow).grouped(10).runWith(Sink.head)
2015-07-17 17:03:48 +03:00
fut.futureValue
2015-07-17 17:03:48 +03:00
}
"conflate should sample" in {
//#conflate-sample
val p = 0.01
val sampleFlow = Flow[Double]
.conflateWithSeed(immutable.Seq(_)) {
case (acc, elem) if Random.nextDouble < p => acc :+ elem
case (acc, _) => acc
2015-07-17 17:03:48 +03:00
}
.mapConcat(identity)
//#conflate-sample
2019-03-11 10:38:24 +01:00
val fut = Source(1 to 1000).map(_.toDouble).via(sampleFlow).runWith(Sink.fold(Seq.empty[Double])(_ :+ _))
2015-07-17 17:03:48 +03:00
fut.futureValue
2015-07-17 17:03:48 +03:00
}
"extrapolate should repeat last" in {
//#extrapolate-last
2019-03-11 10:38:24 +01:00
val lastFlow = Flow[Double].extrapolate(Iterator.continually(_))
//#extrapolate-last
2015-07-17 17:03:48 +03:00
2019-03-11 10:38:24 +01:00
val (probe, fut) = TestSource.probe[Double].via(lastFlow).grouped(10).toMat(Sink.head)(Keep.both).run()
2015-07-17 17:03:48 +03:00
probe.sendNext(1.0)
val extrapolated = fut.futureValue
extrapolated.size shouldBe 10
extrapolated.sum shouldBe 10
}
"extrapolate should send seed first" in {
//#extrapolate-seed
val initial = 2.0
2019-03-11 10:38:24 +01:00
val seedFlow = Flow[Double].extrapolate(Iterator.continually(_), Some(initial))
//#extrapolate-seed
2019-03-11 10:38:24 +01:00
val fut = TestSource.probe[Double].via(seedFlow).grouped(10).runWith(Sink.head)
val extrapolated = fut.futureValue
extrapolated.size shouldBe 10
extrapolated.sum shouldBe 10 * initial
}
"extrapolate should track drift" in {
//#extrapolate-drift
2019-03-11 10:38:24 +01:00
val driftFlow = Flow[Double].map(_ -> 0).extrapolate[(Double, Int)] { case (i, _) => Iterator.from(1).map(i -> _) }
//#extrapolate-drift
val latch = TestLatch(2)
2019-03-11 10:38:24 +01:00
val realDriftFlow = Flow[Double].map(d => { latch.countDown(); d -> 0; }).extrapolate[(Double, Int)] {
case (d, _) => latch.countDown(); Iterator.from(1).map(d -> _)
}
2019-03-11 10:38:24 +01:00
val (pub, sub) = TestSource.probe[Double].via(realDriftFlow).toMat(TestSink.probe[(Double, Int)])(Keep.both).run()
sub.request(1)
pub.sendNext(1.0)
sub.expectNext((1.0, 0))
sub.requestNext((1.0, 1))
sub.requestNext((1.0, 2))
pub.sendNext(2.0)
Await.ready(latch, 1.second)
sub.requestNext((2.0, 0))
2015-07-17 17:03:48 +03:00
}
"expand should track drift" in {
//#expand-drift
2019-03-11 10:38:24 +01:00
val driftFlow = Flow[Double].expand(i => Iterator.from(0).map(i -> _))
2015-07-17 17:03:48 +03:00
//#expand-drift
val latch = TestLatch(2)
2019-03-11 10:38:24 +01:00
val realDriftFlow = Flow[Double].expand(d => { latch.countDown(); Iterator.from(0).map(d -> _) })
2015-07-17 17:03:48 +03:00
2019-03-11 10:38:24 +01:00
val (pub, sub) = TestSource.probe[Double].via(realDriftFlow).toMat(TestSink.probe[(Double, Int)])(Keep.both).run()
2015-07-17 17:03:48 +03:00
sub.request(1)
pub.sendNext(1.0)
sub.expectNext((1.0, 0))
sub.requestNext((1.0, 1))
sub.requestNext((1.0, 2))
pub.sendNext(2.0)
Await.ready(latch, 1.second)
2015-07-17 17:03:48 +03:00
sub.requestNext((2.0, 0))
}
}