pekko/akka-stream-tests/src/test/scala/akka/stream/scaladsl/ActorRefSourceSpec.scala
2019-06-13 13:06:02 +02:00

223 lines
7.3 KiB
Scala

/*
* Copyright (C) 2015-2019 Lightbend Inc. <https://www.lightbend.com>
*/
package akka.stream.scaladsl
import akka.Done
import akka.actor.{ PoisonPill, Status }
import akka.stream.testkit.Utils._
import akka.stream.testkit._
import akka.stream.testkit.scaladsl.StreamTestKit._
import akka.stream.testkit.scaladsl._
import akka.stream._
import scala.concurrent.duration._
import akka.actor.ActorRef
import org.reactivestreams.Publisher
class ActorRefSourceSpec extends StreamSpec {
private implicit val materializer = ActorMaterializer()
"A ActorRefSource" must {
"emit received messages to the stream" in {
val s = TestSubscriber.manualProbe[Int]()
val materializer2 = ActorMaterializer()
val ref = Source.actorRef(10, OverflowStrategy.fail).to(Sink.fromSubscriber(s)).run()(materializer2)
val sub = s.expectSubscription()
sub.request(2)
ref ! 1
s.expectNext(1)
ref ! 2
s.expectNext(2)
ref ! 3
s.expectNoMessage(500.millis)
}
"buffer when needed" in {
val s = TestSubscriber.manualProbe[Int]()
val ref = Source.actorRef(100, OverflowStrategy.dropHead).to(Sink.fromSubscriber(s)).run()
val sub = s.expectSubscription()
for (n <- 1 to 20) ref ! n
sub.request(10)
for (n <- 1 to 10) s.expectNext(n)
sub.request(10)
for (n <- 11 to 20) s.expectNext(n)
for (n <- 200 to 399) ref ! n
sub.request(100)
for (n <- 300 to 399) s.expectNext(n)
}
"drop new when full and with dropNew strategy" in {
val (ref, sub) = Source.actorRef(100, OverflowStrategy.dropNew).toMat(TestSink.probe[Int])(Keep.both).run()
for (n <- 1 to 20) ref ! n
sub.request(10)
for (n <- 1 to 10) sub.expectNext(n)
sub.request(10)
for (n <- 11 to 20) sub.expectNext(n)
for (n <- 200 to 399) ref ! n
sub.request(100)
for (n <- 200 to 299) sub.expectNext(n)
}
"terminate when the stream is cancelled" in assertAllStagesStopped {
val s = TestSubscriber.manualProbe[Int]()
val ref = Source.actorRef(0, OverflowStrategy.fail).to(Sink.fromSubscriber(s)).run()
watch(ref)
val sub = s.expectSubscription()
sub.cancel()
expectTerminated(ref)
}
"not fail when 0 buffer space and demand is signalled" in assertAllStagesStopped {
val s = TestSubscriber.manualProbe[Int]()
val ref = Source.actorRef(0, OverflowStrategy.dropHead).to(Sink.fromSubscriber(s)).run()
watch(ref)
val sub = s.expectSubscription()
sub.request(100)
sub.cancel()
expectTerminated(ref)
}
"signal buffered elements and complete the stream after receiving Status.Success" in assertAllStagesStopped {
val s = TestSubscriber.manualProbe[Int]()
val ref = Source.actorRef(3, OverflowStrategy.fail).to(Sink.fromSubscriber(s)).run()
val sub = s.expectSubscription()
ref ! 1
ref ! 2
ref ! 3
ref ! Status.Success("ok")
sub.request(10)
s.expectNext(1, 2, 3)
s.expectComplete()
}
"signal buffered elements and complete the stream after receiving a Status.Success companion" in assertAllStagesStopped {
val s = TestSubscriber.manualProbe[Int]()
val ref = Source.actorRef(3, OverflowStrategy.fail).to(Sink.fromSubscriber(s)).run()
val sub = s.expectSubscription()
ref ! 1
ref ! 2
ref ! 3
ref ! Status.Success
sub.request(10)
s.expectNext(1, 2, 3)
s.expectComplete()
}
"signal buffered elements and complete the stream after receiving a Status.Success with CompletionStrategy.Draining" in assertAllStagesStopped {
val (ref, s) = Source.actorRef(100, OverflowStrategy.fail).toMat(TestSink.probe[Int])(Keep.both).run()
for (n <- 1 to 20) ref ! n
ref ! Status.Success(CompletionStrategy.Draining)
s.request(10)
for (n <- 1 to 10) s.expectNext(n)
s.expectNoMessage(20.millis)
s.request(10)
for (n <- 11 to 20) s.expectNext(n)
s.expectComplete()
}
"not signal buffered elements but complete immediately the stream after receiving a Status.Success with CompletionStrategy.Immediately" in assertAllStagesStopped {
val (ref, s) = Source.actorRef(100, OverflowStrategy.fail).toMat(TestSink.probe[Int])(Keep.both).run()
for (n <- 1 to 20) ref ! n
ref ! Status.Success(CompletionStrategy.Immediately)
s.request(10)
def verifyNext(n: Int): Unit = {
if (n > 10)
s.expectComplete()
else
s.expectNextOrComplete() match {
case Right(`n`) => verifyNext(n + 1)
case Right(x) => fail(s"expected $n, got $x")
case Left(_) => // ok, completed
}
}
verifyNext(1)
}
"not signal buffered elements but complete immediately the stream after receiving a PoisonPill (backwards compatibility)" in assertAllStagesStopped {
val (ref, s) = Source.actorRef(100, OverflowStrategy.fail).toMat(TestSink.probe[Int])(Keep.both).run()
for (n <- 1 to 20) ref ! n
ref ! PoisonPill
s.request(10)
def verifyNext(n: Int): Unit = {
if (n > 10)
s.expectComplete()
else
s.expectNextOrComplete() match {
case Right(`n`) => verifyNext(n + 1)
case Right(x) => fail(s"expected $n, got $x")
case Left(_) => // ok, completed
}
}
verifyNext(1)
}
"not buffer elements after receiving Status.Success" in assertAllStagesStopped {
val s = TestSubscriber.manualProbe[Int]()
val ref = Source.actorRef(3, OverflowStrategy.dropBuffer).to(Sink.fromSubscriber(s)).run()
val sub = s.expectSubscription()
ref ! 1
ref ! 2
ref ! 3
ref ! Status.Success("ok")
ref ! 100
ref ! 100
ref ! 100
sub.request(10)
s.expectNext(1, 2, 3)
s.expectComplete()
}
"complete and materialize the stream after receiving Status.Success" in assertAllStagesStopped {
val (ref, done) = {
Source.actorRef(3, OverflowStrategy.dropBuffer).toMat(Sink.ignore)(Keep.both).run()
}
ref ! Status.Success("ok")
done.futureValue should be(Done)
}
"fail the stream when receiving Status.Failure" in assertAllStagesStopped {
val s = TestSubscriber.manualProbe[Int]()
val ref = Source.actorRef(10, OverflowStrategy.fail).to(Sink.fromSubscriber(s)).run()
s.expectSubscription()
val exc = TE("testfailure")
ref ! Status.Failure(exc)
s.expectError(exc)
}
"set actor name equal to stage name" in assertAllStagesStopped {
val s = TestSubscriber.manualProbe[Int]()
val name = "SomeCustomName"
val ref = Source
.actorRef(10, OverflowStrategy.fail)
.withAttributes(Attributes.name(name))
.to(Sink.fromSubscriber(s))
.run()
ref.path.name.contains(name) should ===(true)
ref ! PoisonPill
}
"be possible to run immediately, reproducer of #26714" in {
(1 to 100).foreach { _ =>
val mat = ActorMaterializer()
val source: Source[String, ActorRef] = Source.actorRef[String](10000, OverflowStrategy.fail)
val (_: ActorRef, _: Publisher[String]) =
source.toMat(Sink.asPublisher(false))(Keep.both).run()(mat)
mat.shutdown()
}
}
}
}