2014-09-11 10:32:35 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (C) 2014 Typesafe Inc. <http://www.typesafe.com>
|
|
|
|
|
*/
|
2014-10-27 14:35:41 +01:00
|
|
|
package akka.stream.scaladsl
|
|
|
|
|
|
|
|
|
|
import java.util.concurrent.atomic.AtomicLong
|
|
|
|
|
|
|
|
|
|
import scala.collection.immutable
|
|
|
|
|
import scala.concurrent.duration._
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
import akka.actor.{ Props, ActorRefFactory, ActorRef }
|
2014-10-27 14:35:41 +01:00
|
|
|
import akka.stream.{ TransformerLike, MaterializerSettings }
|
|
|
|
|
import akka.stream.FlowMaterializer
|
|
|
|
|
import akka.stream.impl.{ ActorProcessorFactory, StreamSupervisor, ActorBasedFlowMaterializer }
|
|
|
|
|
import akka.stream.impl.Ast.{ Transform, AstNode }
|
2014-09-11 10:32:35 +02:00
|
|
|
import akka.stream.impl.TransformProcessorImpl
|
|
|
|
|
import akka.stream.testkit.{ StreamTestKit, AkkaSpec }
|
2014-10-27 14:35:41 +01:00
|
|
|
import akka.stream.testkit.ChainSetup
|
2014-09-11 10:32:35 +02:00
|
|
|
import akka.testkit._
|
2014-10-27 14:35:41 +01:00
|
|
|
import akka.testkit.TestEvent.{ UnMute, Mute }
|
2014-09-11 10:32:35 +02:00
|
|
|
import com.typesafe.config.ConfigFactory
|
|
|
|
|
import org.reactivestreams.{ Processor, Subscriber, Publisher }
|
|
|
|
|
|
|
|
|
|
object FlowSpec {
|
|
|
|
|
class Fruit
|
|
|
|
|
class Apple extends Fruit
|
|
|
|
|
|
|
|
|
|
val flowNameCounter = new AtomicLong(0)
|
|
|
|
|
|
|
|
|
|
case class BrokenMessage(msg: String)
|
|
|
|
|
|
|
|
|
|
class BrokenTransformProcessorImpl(
|
|
|
|
|
_settings: MaterializerSettings,
|
|
|
|
|
transformer: TransformerLike[Any, Any],
|
|
|
|
|
brokenMessage: Any) extends TransformProcessorImpl(_settings, transformer) {
|
|
|
|
|
|
|
|
|
|
import akka.stream.actor.ActorSubscriberMessage._
|
|
|
|
|
|
|
|
|
|
override protected[akka] def aroundReceive(receive: Receive, msg: Any) = {
|
|
|
|
|
msg match {
|
|
|
|
|
case OnNext(m) if m == brokenMessage ⇒
|
|
|
|
|
throw new NullPointerException(s"I'm so broken [$m]")
|
|
|
|
|
case _ ⇒ super.aroundReceive(receive, msg)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class BrokenFlowMaterializer(
|
|
|
|
|
settings: MaterializerSettings,
|
|
|
|
|
supervisor: ActorRef,
|
|
|
|
|
flowNameCounter: AtomicLong,
|
|
|
|
|
namePrefix: String,
|
|
|
|
|
brokenMessage: Any) extends ActorBasedFlowMaterializer(settings, supervisor, flowNameCounter, namePrefix) {
|
|
|
|
|
|
2014-10-06 14:04:05 +02:00
|
|
|
override def processorForNode(op: AstNode, flowName: String, n: Int): Processor[Any, Any] = {
|
2014-09-11 10:32:35 +02:00
|
|
|
val props = op match {
|
|
|
|
|
case t: Transform ⇒ Props(new BrokenTransformProcessorImpl(settings, t.mkTransformer(), brokenMessage))
|
|
|
|
|
case o ⇒ ActorProcessorFactory.props(this, o)
|
|
|
|
|
}
|
|
|
|
|
val impl = actorOf(props, s"$flowName-$n-${op.name}")
|
|
|
|
|
ActorProcessorFactory(impl)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def createBrokenFlowMaterializer(settings: MaterializerSettings, brokenMessage: Any)(implicit context: ActorRefFactory): BrokenFlowMaterializer = {
|
|
|
|
|
new BrokenFlowMaterializer(settings,
|
|
|
|
|
context.actorOf(StreamSupervisor.props(settings).withDispatcher(settings.dispatcher)),
|
|
|
|
|
flowNameCounter,
|
|
|
|
|
"brokenflow",
|
|
|
|
|
brokenMessage)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@org.junit.runner.RunWith(classOf[org.scalatest.junit.JUnitRunner])
|
|
|
|
|
class FlowSpec extends AkkaSpec(ConfigFactory.parseString("akka.actor.debug.receive=off\nakka.loglevel=INFO")) {
|
|
|
|
|
import FlowSpec._
|
|
|
|
|
|
|
|
|
|
val settings = MaterializerSettings(system)
|
|
|
|
|
.withInputBuffer(initialSize = 2, maxSize = 16)
|
|
|
|
|
.withFanOutBuffer(initialSize = 1, maxSize = 16)
|
|
|
|
|
|
|
|
|
|
implicit val mat = FlowMaterializer(settings)
|
|
|
|
|
|
2014-10-02 17:32:08 +02:00
|
|
|
val identity: Flow[Any, Any] ⇒ Flow[Any, Any] = in ⇒ in.map(e ⇒ e)
|
|
|
|
|
val identity2: Flow[Any, Any] ⇒ Flow[Any, Any] = in ⇒ identity(in)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
2014-10-02 17:32:08 +02:00
|
|
|
val toPublisher: (Source[Any], FlowMaterializer) ⇒ Publisher[Any] =
|
2014-10-17 14:05:50 +02:00
|
|
|
(f, m) ⇒ f.runWith(Sink.publisher)(m)
|
2014-10-02 17:32:08 +02:00
|
|
|
def toFanoutPublisher[In, Out](initialBufferSize: Int, maximumBufferSize: Int): (Source[Out], FlowMaterializer) ⇒ Publisher[Out] =
|
2014-10-17 14:05:50 +02:00
|
|
|
(f, m) ⇒ f.runWith(Sink.fanoutPublisher(initialBufferSize, maximumBufferSize))(m)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
2014-10-02 17:32:08 +02:00
|
|
|
def materializeIntoSubscriberAndPublisher[In, Out](flow: Flow[In, Out]): (Subscriber[In], Publisher[Out]) = {
|
2014-10-17 14:05:50 +02:00
|
|
|
val source = Source.subscriber[In]
|
|
|
|
|
val sink = Sink.publisher[Out]
|
|
|
|
|
flow.runWith(source, sink)
|
2014-09-11 10:32:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"A Flow" must {
|
|
|
|
|
|
|
|
|
|
for ((name, op) ← List("identity" -> identity, "identity2" -> identity2); n ← List(1, 2, 4)) {
|
|
|
|
|
s"request initial elements from upstream ($name, $n)" in {
|
|
|
|
|
new ChainSetup(op, settings.withInputBuffer(initialSize = n, maxSize = settings.maxInputBufferSize), toPublisher) {
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, settings.initialInputBufferSize)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"request more elements from upstream when downstream requests more elements" in {
|
|
|
|
|
new ChainSetup(identity, settings, toPublisher) {
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, settings.initialInputBufferSize)
|
|
|
|
|
downstreamSubscription.request(1)
|
|
|
|
|
upstream.expectNoMsg(100.millis)
|
|
|
|
|
downstreamSubscription.request(2)
|
|
|
|
|
upstream.expectNoMsg(100.millis)
|
|
|
|
|
upstreamSubscription.sendNext("a")
|
|
|
|
|
downstream.expectNext("a")
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstream.expectNoMsg(100.millis)
|
|
|
|
|
upstreamSubscription.sendNext("b")
|
|
|
|
|
upstreamSubscription.sendNext("c")
|
|
|
|
|
upstreamSubscription.sendNext("d")
|
|
|
|
|
downstream.expectNext("b")
|
|
|
|
|
downstream.expectNext("c")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"deliver events when publisher sends elements and then completes" in {
|
|
|
|
|
new ChainSetup(identity, settings, toPublisher) {
|
|
|
|
|
downstreamSubscription.request(1)
|
|
|
|
|
upstreamSubscription.sendNext("test")
|
|
|
|
|
upstreamSubscription.sendComplete()
|
|
|
|
|
downstream.expectNext("test")
|
|
|
|
|
downstream.expectComplete()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"deliver complete signal when publisher immediately completes" in {
|
|
|
|
|
new ChainSetup(identity, settings, toPublisher) {
|
|
|
|
|
upstreamSubscription.sendComplete()
|
|
|
|
|
downstream.expectComplete()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"deliver error signal when publisher immediately fails" in {
|
|
|
|
|
new ChainSetup(identity, settings, toPublisher) {
|
|
|
|
|
object WeirdError extends RuntimeException("weird test exception")
|
|
|
|
|
EventFilter[WeirdError.type](occurrences = 1) intercept {
|
|
|
|
|
upstreamSubscription.sendError(WeirdError)
|
|
|
|
|
downstream.expectError(WeirdError)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"cancel upstream when single subscriber cancels subscription while receiving data" in {
|
|
|
|
|
new ChainSetup(identity, settings.withInputBuffer(initialSize = 1, maxSize = settings.maxInputBufferSize), toPublisher) {
|
|
|
|
|
downstreamSubscription.request(5)
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("test")
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("test2")
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
downstream.expectNext("test")
|
|
|
|
|
downstream.expectNext("test2")
|
|
|
|
|
downstreamSubscription.cancel()
|
|
|
|
|
|
|
|
|
|
// because of the "must cancel its upstream Subscription if its last downstream Subscription has been cancelled" rule
|
|
|
|
|
upstreamSubscription.expectCancellation()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"materialize into Publisher/Subscriber" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val flow = Flow[String]
|
|
|
|
|
val (flowIn: Subscriber[String], flowOut: Publisher[String]) = materializeIntoSubscriberAndPublisher(flow)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
val c1 = StreamTestKit.SubscriberProbe[String]()
|
|
|
|
|
flowOut.subscribe(c1)
|
|
|
|
|
|
2014-10-17 14:05:50 +02:00
|
|
|
val source: Publisher[String] = Source(List("1", "2", "3")).runWith(Sink.publisher)
|
|
|
|
|
source.subscribe(flowIn)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
val sub1 = c1.expectSubscription
|
|
|
|
|
sub1.request(3)
|
|
|
|
|
c1.expectNext("1")
|
|
|
|
|
c1.expectNext("2")
|
|
|
|
|
c1.expectNext("3")
|
|
|
|
|
c1.expectComplete
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"materialize into Publisher/Subscriber and transformation processor" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val flow = Flow[Int].map((i: Int) ⇒ i.toString)
|
|
|
|
|
val (flowIn: Subscriber[Int], flowOut: Publisher[String]) = materializeIntoSubscriberAndPublisher(flow)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
val c1 = StreamTestKit.SubscriberProbe[String]()
|
|
|
|
|
flowOut.subscribe(c1)
|
|
|
|
|
val sub1 = c1.expectSubscription
|
|
|
|
|
sub1.request(3)
|
|
|
|
|
c1.expectNoMsg(200.millis)
|
|
|
|
|
|
2014-10-17 14:05:50 +02:00
|
|
|
val source: Publisher[Int] = Source(List(1, 2, 3)).runWith(Sink.publisher)
|
|
|
|
|
source.subscribe(flowIn)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
c1.expectNext("1")
|
|
|
|
|
c1.expectNext("2")
|
|
|
|
|
c1.expectNext("3")
|
|
|
|
|
c1.expectComplete
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"materialize into Publisher/Subscriber and multiple transformation processors" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val flow = Flow[Int].map(_.toString).map("elem-" + _)
|
|
|
|
|
val (flowIn, flowOut) = materializeIntoSubscriberAndPublisher(flow)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
val c1 = StreamTestKit.SubscriberProbe[String]()
|
|
|
|
|
flowOut.subscribe(c1)
|
|
|
|
|
val sub1 = c1.expectSubscription
|
|
|
|
|
sub1.request(3)
|
|
|
|
|
c1.expectNoMsg(200.millis)
|
|
|
|
|
|
2014-10-17 14:05:50 +02:00
|
|
|
val source: Publisher[Int] = Source(List(1, 2, 3)).runWith(Sink.publisher)
|
|
|
|
|
source.subscribe(flowIn)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
c1.expectNext("elem-1")
|
|
|
|
|
c1.expectNext("elem-2")
|
|
|
|
|
c1.expectNext("elem-3")
|
|
|
|
|
c1.expectComplete
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"subscribe Subscriber" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val flow: Flow[String, String] = Flow[String]
|
2014-09-11 10:32:35 +02:00
|
|
|
val c1 = StreamTestKit.SubscriberProbe[String]()
|
2014-10-31 10:43:42 +02:00
|
|
|
val sink: Sink[String] = flow.to(Sink(c1))
|
2014-10-17 14:05:50 +02:00
|
|
|
val publisher: Publisher[String] = Source(List("1", "2", "3")).runWith(Sink.publisher)
|
2014-10-31 10:43:42 +02:00
|
|
|
Source(publisher).to(sink).run()
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
val sub1 = c1.expectSubscription
|
|
|
|
|
sub1.request(3)
|
|
|
|
|
c1.expectNext("1")
|
|
|
|
|
c1.expectNext("2")
|
|
|
|
|
c1.expectNext("3")
|
|
|
|
|
c1.expectComplete
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"perform transformation operation" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val flow = Flow[Int].map(i ⇒ { testActor ! i.toString; i.toString })
|
2014-09-11 10:32:35 +02:00
|
|
|
|
2014-10-17 14:05:50 +02:00
|
|
|
val publisher = Source(List(1, 2, 3)).runWith(Sink.publisher)
|
2014-10-31 10:43:42 +02:00
|
|
|
Source(publisher).via(flow).to(Sink.ignore).run()
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
expectMsg("1")
|
|
|
|
|
expectMsg("2")
|
|
|
|
|
expectMsg("3")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"perform transformation operation and subscribe Subscriber" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val flow = Flow[Int].map(_.toString)
|
2014-09-11 10:32:35 +02:00
|
|
|
val c1 = StreamTestKit.SubscriberProbe[String]()
|
2014-10-31 10:43:42 +02:00
|
|
|
val sink: Sink[Int] = flow.to(Sink(c1))
|
2014-10-17 14:05:50 +02:00
|
|
|
val publisher: Publisher[Int] = Source(List(1, 2, 3)).runWith(Sink.publisher)
|
2014-10-31 10:43:42 +02:00
|
|
|
Source(publisher).to(sink).run()
|
2014-09-11 10:32:35 +02:00
|
|
|
|
|
|
|
|
val sub1 = c1.expectSubscription
|
|
|
|
|
sub1.request(3)
|
|
|
|
|
c1.expectNext("1")
|
|
|
|
|
c1.expectNext("2")
|
|
|
|
|
c1.expectNext("3")
|
|
|
|
|
c1.expectComplete
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-29 16:01:17 +02:00
|
|
|
"be materializable several times with fanout publisher" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val flow = Source(List(1, 2, 3)).map(_.toString)
|
2014-10-17 14:05:50 +02:00
|
|
|
val p1 = flow.runWith(Sink.fanoutPublisher(2, 2))
|
|
|
|
|
val p2 = flow.runWith(Sink.fanoutPublisher(2, 2))
|
2014-09-29 16:01:17 +02:00
|
|
|
val s1 = StreamTestKit.SubscriberProbe[String]()
|
|
|
|
|
val s2 = StreamTestKit.SubscriberProbe[String]()
|
|
|
|
|
val s3 = StreamTestKit.SubscriberProbe[String]()
|
|
|
|
|
p1.subscribe(s1)
|
|
|
|
|
p2.subscribe(s2)
|
|
|
|
|
p2.subscribe(s3)
|
|
|
|
|
|
|
|
|
|
val sub1 = s1.expectSubscription
|
|
|
|
|
val sub2 = s2.expectSubscription
|
|
|
|
|
val sub3 = s3.expectSubscription
|
|
|
|
|
|
|
|
|
|
sub1.request(3)
|
|
|
|
|
s1.expectNext("1")
|
|
|
|
|
s1.expectNext("2")
|
|
|
|
|
s1.expectNext("3")
|
|
|
|
|
s1.expectComplete
|
|
|
|
|
|
|
|
|
|
sub2.request(3)
|
|
|
|
|
sub3.request(3)
|
|
|
|
|
s2.expectNext("1")
|
|
|
|
|
s2.expectNext("2")
|
|
|
|
|
s2.expectNext("3")
|
|
|
|
|
s2.expectComplete
|
|
|
|
|
s3.expectNext("1")
|
|
|
|
|
s3.expectNext("2")
|
|
|
|
|
s3.expectNext("3")
|
|
|
|
|
s3.expectComplete
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-11 10:32:35 +02:00
|
|
|
"be covariant" in {
|
2014-10-02 17:32:08 +02:00
|
|
|
val f1: Source[Fruit] = Source[Fruit](() ⇒ Some(new Apple))
|
2014-10-17 14:05:50 +02:00
|
|
|
val p1: Publisher[Fruit] = Source[Fruit](() ⇒ Some(new Apple)).runWith(Sink.publisher)
|
2014-10-02 17:32:08 +02:00
|
|
|
val f2: Source[Source[Fruit]] = Source[Fruit](() ⇒ Some(new Apple)).splitWhen(_ ⇒ true)
|
|
|
|
|
val f3: Source[(Boolean, Source[Fruit])] = Source[Fruit](() ⇒ Some(new Apple)).groupBy(_ ⇒ true)
|
|
|
|
|
val f4: Source[(immutable.Seq[Fruit], Source[Fruit])] = Source[Fruit](() ⇒ Some(new Apple)).prefixAndTail(1)
|
|
|
|
|
val d1: Flow[String, Source[Fruit]] = Flow[String].map(_ ⇒ new Apple).splitWhen(_ ⇒ true)
|
|
|
|
|
val d2: Flow[String, (Boolean, Source[Fruit])] = Flow[String].map(_ ⇒ new Apple).groupBy(_ ⇒ true)
|
|
|
|
|
val d3: Flow[String, (immutable.Seq[Apple], Source[Fruit])] = Flow[String].map(_ ⇒ new Apple).prefixAndTail(1)
|
2014-09-11 10:32:35 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"A Flow with multiple subscribers (FanOutBox)" must {
|
|
|
|
|
"adapt speed to the currently slowest subscriber" in {
|
|
|
|
|
new ChainSetup(identity, settings.copy(initialInputBufferSize = 1),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 1, maximumBufferSize = 1)) {
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
val downstream2Subscription = downstream2.expectSubscription()
|
|
|
|
|
|
|
|
|
|
downstreamSubscription.request(5)
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1) // because initialInputBufferSize=1
|
|
|
|
|
|
|
|
|
|
upstreamSubscription.sendNext("firstElement")
|
|
|
|
|
downstream.expectNext("firstElement")
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("element2")
|
|
|
|
|
|
|
|
|
|
downstream.expectNoMsg(1.second)
|
|
|
|
|
downstream2Subscription.request(1)
|
|
|
|
|
downstream2.expectNext("firstElement")
|
|
|
|
|
|
|
|
|
|
downstream.expectNext("element2")
|
|
|
|
|
|
|
|
|
|
downstream2Subscription.request(1)
|
|
|
|
|
downstream2.expectNext("element2")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"support slow subscriber with fan-out 2" in {
|
|
|
|
|
new ChainSetup(identity, settings.copy(initialInputBufferSize = 1),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 2, maximumBufferSize = 2)) {
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
val downstream2Subscription = downstream2.expectSubscription()
|
|
|
|
|
|
|
|
|
|
downstreamSubscription.request(5)
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1) // because initialInputBufferSize=1
|
|
|
|
|
upstreamSubscription.sendNext("element1")
|
|
|
|
|
downstream.expectNext("element1")
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("element2")
|
|
|
|
|
downstream.expectNext("element2")
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("element3")
|
|
|
|
|
// downstream2 has not requested anything, fan-out buffer 2
|
|
|
|
|
downstream.expectNoMsg(100.millis.dilated)
|
|
|
|
|
|
|
|
|
|
downstream2Subscription.request(2)
|
|
|
|
|
downstream.expectNext("element3")
|
|
|
|
|
downstream2.expectNext("element1")
|
|
|
|
|
downstream2.expectNext("element2")
|
|
|
|
|
downstream2.expectNoMsg(100.millis.dilated)
|
|
|
|
|
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("element4")
|
|
|
|
|
downstream.expectNext("element4")
|
|
|
|
|
|
|
|
|
|
downstream2Subscription.request(2)
|
|
|
|
|
downstream2.expectNext("element3")
|
|
|
|
|
downstream2.expectNext("element4")
|
|
|
|
|
|
|
|
|
|
upstreamSubscription.sendComplete()
|
|
|
|
|
downstream.expectComplete()
|
|
|
|
|
downstream2.expectComplete()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"support incoming subscriber while elements were requested before" in {
|
|
|
|
|
new ChainSetup(identity, settings.copy(initialInputBufferSize = 1),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 1, maximumBufferSize = 1)) {
|
|
|
|
|
downstreamSubscription.request(5)
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("a1")
|
|
|
|
|
downstream.expectNext("a1")
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("a2")
|
|
|
|
|
downstream.expectNext("a2")
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
|
|
|
|
|
// link now while an upstream element is already requested
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
val downstream2Subscription = downstream2.expectSubscription()
|
|
|
|
|
|
|
|
|
|
// situation here:
|
|
|
|
|
// downstream 1 now has 3 outstanding
|
|
|
|
|
// downstream 2 has 0 outstanding
|
|
|
|
|
|
|
|
|
|
upstreamSubscription.sendNext("a3")
|
|
|
|
|
downstream.expectNext("a3")
|
|
|
|
|
downstream2.expectNoMsg(100.millis.dilated) // as nothing was requested yet, fanOutBox needs to cache element in this case
|
|
|
|
|
|
|
|
|
|
downstream2Subscription.request(1)
|
|
|
|
|
downstream2.expectNext("a3")
|
|
|
|
|
|
|
|
|
|
// d1 now has 2 outstanding
|
|
|
|
|
// d2 now has 0 outstanding
|
|
|
|
|
// buffer should be empty so we should be requesting one new element
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1) // because of buffer size 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"be unblocked when blocking subscriber cancels subscription" in {
|
|
|
|
|
new ChainSetup(identity, settings.copy(initialInputBufferSize = 1),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 1, maximumBufferSize = 1)) {
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
val downstream2Subscription = downstream2.expectSubscription()
|
|
|
|
|
|
|
|
|
|
downstreamSubscription.request(5)
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("firstElement")
|
|
|
|
|
downstream.expectNext("firstElement")
|
|
|
|
|
|
|
|
|
|
downstream2Subscription.request(1)
|
|
|
|
|
downstream2.expectNext("firstElement")
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("element2")
|
|
|
|
|
|
|
|
|
|
downstream.expectNext("element2")
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.sendNext("element3")
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
|
|
|
|
|
downstream.expectNoMsg(200.millis.dilated)
|
|
|
|
|
downstream2.expectNoMsg(200.millis.dilated)
|
|
|
|
|
upstream.expectNoMsg(200.millis.dilated)
|
|
|
|
|
|
|
|
|
|
// should unblock fanoutbox
|
|
|
|
|
downstream2Subscription.cancel()
|
|
|
|
|
downstream.expectNext("element3")
|
|
|
|
|
upstreamSubscription.sendNext("element4")
|
|
|
|
|
downstream.expectNext("element4")
|
|
|
|
|
|
|
|
|
|
upstreamSubscription.sendComplete()
|
|
|
|
|
downstream.expectComplete()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"call future subscribers' onComplete instead of onSubscribed after initial upstream was completed" in {
|
|
|
|
|
new ChainSetup(identity, settings.copy(initialInputBufferSize = 1),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 1, maximumBufferSize = 1)) {
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
// don't link it just yet
|
|
|
|
|
|
|
|
|
|
downstreamSubscription.request(5)
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("a1")
|
|
|
|
|
downstream.expectNext("a1")
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("a2")
|
|
|
|
|
downstream.expectNext("a2")
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
|
|
|
|
|
// link now while an upstream element is already requested
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
val downstream2Subscription = downstream2.expectSubscription()
|
|
|
|
|
|
|
|
|
|
upstreamSubscription.sendNext("a3")
|
|
|
|
|
upstreamSubscription.sendComplete()
|
|
|
|
|
downstream.expectNext("a3")
|
|
|
|
|
downstream.expectComplete()
|
|
|
|
|
|
|
|
|
|
downstream2.expectNoMsg(100.millis.dilated) // as nothing was requested yet, fanOutBox needs to cache element in this case
|
|
|
|
|
|
|
|
|
|
downstream2Subscription.request(1)
|
|
|
|
|
downstream2.expectNext("a3")
|
|
|
|
|
downstream2.expectComplete()
|
|
|
|
|
|
|
|
|
|
// FIXME when adding a sleep before the following link this will fail with IllegalStateExc shut-down
|
|
|
|
|
// what is the expected shutdown behavior? Is the title of this test wrong?
|
|
|
|
|
// val downstream3 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
// publisher.subscribe(downstream3)
|
|
|
|
|
// downstream3.expectComplete()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"call future subscribers' onError should be called instead of onSubscribed after initial upstream reported an error" in {
|
|
|
|
|
new ChainSetup[Int, String](_.map(_ ⇒ throw TestException), settings.copy(initialInputBufferSize = 1),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 1, maximumBufferSize = 1)) {
|
|
|
|
|
downstreamSubscription.request(1)
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
|
|
|
|
|
EventFilter[TestException.type](occurrences = 2) intercept {
|
|
|
|
|
upstreamSubscription.sendNext(5)
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
upstreamSubscription.expectCancellation()
|
|
|
|
|
downstream.expectError(TestException)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[String]()
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
downstream2.expectError() should be(TestException)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"call future subscribers' onError when all subscriptions were cancelled" in {
|
|
|
|
|
new ChainSetup(identity, settings.copy(initialInputBufferSize = 1),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 1, maximumBufferSize = 16)) {
|
|
|
|
|
upstreamSubscription.expectRequest(1)
|
|
|
|
|
downstreamSubscription.cancel()
|
|
|
|
|
upstreamSubscription.expectCancellation()
|
|
|
|
|
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
// IllegalStateException shut down
|
|
|
|
|
downstream2.expectError().isInstanceOf[IllegalStateException] should be(true)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"A broken Flow" must {
|
|
|
|
|
"cancel upstream and call onError on current and future downstream subscribers if an internal error occurs" in {
|
|
|
|
|
new ChainSetup(identity, settings.copy(initialInputBufferSize = 1), (s, f) ⇒ createBrokenFlowMaterializer(s, "a3")(f),
|
|
|
|
|
toFanoutPublisher(initialBufferSize = 1, maximumBufferSize = 16)) {
|
|
|
|
|
|
|
|
|
|
def checkError(sprobe: StreamTestKit.SubscriberProbe[Any]): Unit = {
|
|
|
|
|
val error = sprobe.expectError()
|
|
|
|
|
error.isInstanceOf[IllegalStateException] should be(true)
|
|
|
|
|
error.getMessage should be("Processor actor terminated abruptly")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
val downstream2 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
publisher.subscribe(downstream2)
|
|
|
|
|
val downstream2Subscription = downstream2.expectSubscription()
|
|
|
|
|
|
|
|
|
|
downstreamSubscription.request(5)
|
|
|
|
|
downstream2Subscription.request(5)
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("a1")
|
|
|
|
|
downstream.expectNext("a1")
|
|
|
|
|
downstream2.expectNext("a1")
|
|
|
|
|
|
|
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("a2")
|
|
|
|
|
downstream.expectNext("a2")
|
|
|
|
|
downstream2.expectNext("a2")
|
|
|
|
|
|
|
|
|
|
val filters = immutable.Seq(EventFilter[NullPointerException](), EventFilter[IllegalStateException]())
|
|
|
|
|
try {
|
|
|
|
|
system.eventStream.publish(Mute(filters))
|
|
|
|
|
|
2014-10-06 14:04:05 +02:00
|
|
|
upstream.expectRequest(upstreamSubscription, 1)
|
|
|
|
|
upstreamSubscription.sendNext("a3")
|
|
|
|
|
upstreamSubscription.expectCancellation()
|
2014-09-11 10:32:35 +02:00
|
|
|
|
2014-10-06 14:04:05 +02:00
|
|
|
// IllegalStateException terminated abruptly
|
|
|
|
|
checkError(downstream)
|
|
|
|
|
checkError(downstream2)
|
2014-09-11 10:32:35 +02:00
|
|
|
|
2014-10-06 14:04:05 +02:00
|
|
|
val downstream3 = StreamTestKit.SubscriberProbe[Any]()
|
|
|
|
|
publisher.subscribe(downstream3)
|
|
|
|
|
// IllegalStateException terminated abruptly
|
|
|
|
|
checkError(downstream3)
|
2014-09-11 10:32:35 +02:00
|
|
|
} finally {
|
|
|
|
|
system.eventStream.publish(UnMute(filters))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
object TestException extends RuntimeException
|
|
|
|
|
|
|
|
|
|
}
|