pekko/akka-stream-tests/src/test/scala/akka/stream/scaladsl/GraphZipWithSpec.scala
Roland Kuhn 7b7647435b ensure that graph attributes are not lost
- this entails making Module.isSealed==true if attributes are set
- also removed Module.nest(), which implied fixing replaceShape to form
  a CompositeModule where CopiedModule was used before (GraphModule and
  TlsModule)
2016-02-12 10:07:55 +01:00

186 lines
5.7 KiB
Scala

package akka.stream.scaladsl
import akka.stream.testkit._
import scala.concurrent.duration._
import akka.stream._
import akka.testkit.EventFilter
class GraphZipWithSpec extends TwoStreamsSetup {
import GraphDSL.Implicits._
override type Outputs = Int
override def fixture(b: GraphDSL.Builder[_]): Fixture = new Fixture(b) {
val zip = b.add(ZipWith((_: Int) + (_: Int)))
override def left: Inlet[Int] = zip.in0
override def right: Inlet[Int] = zip.in1
override def out: Outlet[Int] = zip.out
}
"ZipWith" must {
"work in the happy case" in {
val probe = TestSubscriber.manualProbe[Outputs]()
RunnableGraph.fromGraph(GraphDSL.create() { implicit b
val zip = b.add(ZipWith((_: Int) + (_: Int)))
Source(1 to 4) ~> zip.in0
Source(10 to 40 by 10) ~> zip.in1
zip.out ~> Sink.fromSubscriber(probe)
ClosedShape
}).run()
val subscription = probe.expectSubscription()
subscription.request(2)
probe.expectNext(11)
probe.expectNext(22)
subscription.request(1)
probe.expectNext(33)
subscription.request(1)
probe.expectNext(44)
probe.expectComplete()
}
"work in the sad case" in {
val probe = TestSubscriber.manualProbe[Outputs]()
RunnableGraph.fromGraph(GraphDSL.create() { implicit b
val zip = b.add(ZipWith[Int, Int, Int]((_: Int) / (_: Int)))
Source(1 to 4) ~> zip.in0
Source(-2 to 2) ~> zip.in1
zip.out ~> Sink.fromSubscriber(probe)
ClosedShape
}).run()
val subscription = probe.expectSubscription()
subscription.request(2)
probe.expectNext(1 / -2)
probe.expectNext(2 / -1)
EventFilter[ArithmeticException](occurrences = 1).intercept {
subscription.request(2)
}
probe.expectError() match {
case a: java.lang.ArithmeticException a.getMessage should be("/ by zero")
}
probe.expectNoMsg(200.millis)
}
commonTests()
"work with one immediately completed and one nonempty publisher" in {
val subscriber1 = setup(completedPublisher, nonemptyPublisher(1 to 4))
subscriber1.expectSubscriptionAndComplete()
val subscriber2 = setup(nonemptyPublisher(1 to 4), completedPublisher)
subscriber2.expectSubscriptionAndComplete()
}
"work with one delayed completed and one nonempty publisher" in {
val subscriber1 = setup(soonToCompletePublisher, nonemptyPublisher(1 to 4))
subscriber1.expectSubscriptionAndComplete()
val subscriber2 = setup(nonemptyPublisher(1 to 4), soonToCompletePublisher)
subscriber2.expectSubscriptionAndComplete()
}
"work with one immediately failed and one nonempty publisher" in {
val subscriber1 = setup(failedPublisher, nonemptyPublisher(1 to 4))
subscriber1.expectSubscriptionAndError(TestException)
val subscriber2 = setup(nonemptyPublisher(1 to 4), failedPublisher)
subscriber2.expectSubscriptionAndError(TestException)
}
"work with one delayed failed and one nonempty publisher" in {
val subscriber1 = setup(soonToFailPublisher, nonemptyPublisher(1 to 4))
subscriber1.expectSubscriptionAndError(TestException)
val subscriber2 = setup(nonemptyPublisher(1 to 4), soonToFailPublisher)
val subscription2 = subscriber2.expectSubscriptionAndError(TestException)
}
"zipWith a ETA expanded Person.apply (3 inputs)" in {
val probe = TestSubscriber.manualProbe[Person]()
case class Person(name: String, surname: String, int: Int)
RunnableGraph.fromGraph(GraphDSL.create() { implicit b
val zip = b.add(ZipWith(Person.apply _))
Source.single("Caplin") ~> zip.in0
Source.single("Capybara") ~> zip.in1
Source.single(3) ~> zip.in2
zip.out ~> Sink.fromSubscriber(probe)
ClosedShape
}).run()
val subscription = probe.expectSubscription()
subscription.request(5)
probe.expectNext(Person("Caplin", "Capybara", 3))
probe.expectComplete()
}
"work with up to 22 inputs" in {
val probe = TestSubscriber.manualProbe[String]()
RunnableGraph.fromGraph(GraphDSL.create() { implicit b
val sum19 = (v1: Int, v2: String, v3: Int, v4: String, v5: Int, v6: String, v7: Int, v8: String, v9: Int, v10: String,
v11: Int, v12: String, v13: Int, v14: String, v15: Int, v16: String, v17: Int, v18: String, v19: Int)
v1 + v2 + v3 + v4 + v5 + v6 + v7 + v8 + v9 + v10 +
v11 + v12 + v13 + v14 + v15 + v16 + v17 + v18 + v19
// odd input ports will be Int, even input ports will be String
val zip = b.add(ZipWith(sum19))
Source.single(1) ~> zip.in0
Source.single(2).map(_.toString) ~> zip.in1
Source.single(3) ~> zip.in2
Source.single(4).map(_.toString) ~> zip.in3
Source.single(5) ~> zip.in4
Source.single(6).map(_.toString) ~> zip.in5
Source.single(7) ~> zip.in6
Source.single(8).map(_.toString) ~> zip.in7
Source.single(9) ~> zip.in8
Source.single(10).map(_.toString) ~> zip.in9
Source.single(11) ~> zip.in10
Source.single(12).map(_.toString) ~> zip.in11
Source.single(13) ~> zip.in12
Source.single(14).map(_.toString) ~> zip.in13
Source.single(15) ~> zip.in14
Source.single(16).map(_.toString) ~> zip.in15
Source.single(17) ~> zip.in16
Source.single(18).map(_.toString) ~> zip.in17
Source.single(19) ~> zip.in18
zip.out ~> Sink.fromSubscriber(probe)
ClosedShape
}).run()
val subscription = probe.expectSubscription()
subscription.request(1)
probe.expectNext((1 to 19).mkString(""))
probe.expectComplete()
}
}
}