2015-08-19 15:22:02 +02:00
|
|
|
/**
|
|
|
|
|
* Copyright (C) 2015 Typesafe Inc. <http://www.typesafe.com>
|
|
|
|
|
*/
|
|
|
|
|
package akka.stream.impl.fusing
|
|
|
|
|
|
|
|
|
|
import akka.stream.testkit.AkkaSpec
|
2015-09-18 17:17:25 +02:00
|
|
|
import akka.stream.scaladsl.{ Merge, Broadcast, Balance, Zip }
|
2015-08-19 15:22:02 +02:00
|
|
|
import GraphInterpreter._
|
|
|
|
|
|
2015-09-25 16:36:53 +02:00
|
|
|
class GraphInterpreterSpec extends GraphInterpreterSpecKit {
|
2015-08-19 15:22:02 +02:00
|
|
|
import GraphStages._
|
|
|
|
|
|
|
|
|
|
"GraphInterpreter" must {
|
|
|
|
|
|
|
|
|
|
// Reusable components
|
|
|
|
|
val identity = new Identity[Int]
|
|
|
|
|
val detacher = new Detacher[Int]
|
2015-09-18 17:17:25 +02:00
|
|
|
val zip = Zip[Int, String]
|
|
|
|
|
val bcast = Broadcast[Int](2)
|
|
|
|
|
val merge = Merge[Int](2)
|
|
|
|
|
val balance = Balance[Int](2)
|
2015-08-19 15:22:02 +02:00
|
|
|
|
|
|
|
|
"implement identity" in new TestSetup {
|
2015-09-24 15:32:06 +02:00
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink = new DownstreamProbe[Int]("sink")
|
2015-08-19 15:22:02 +02:00
|
|
|
|
|
|
|
|
builder(identity)
|
|
|
|
|
.connect(source, identity.in)
|
|
|
|
|
.connect(identity.out, sink)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 1)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement chained identity" in new TestSetup {
|
|
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink = new DownstreamProbe[Int]("sink")
|
|
|
|
|
|
|
|
|
|
// Constructing an assembly by hand and resolving ambiguities
|
|
|
|
|
val assembly = GraphAssembly(
|
|
|
|
|
stages = Array(identity, identity),
|
|
|
|
|
ins = Array(identity.in, identity.in, null),
|
|
|
|
|
inOwners = Array(0, 1, -1),
|
|
|
|
|
outs = Array(null, identity.out, identity.out),
|
|
|
|
|
outOwners = Array(-1, 0, 1))
|
|
|
|
|
|
|
|
|
|
manualInit(assembly)
|
|
|
|
|
interpreter.attachDownstreamBoundary(2, sink)
|
|
|
|
|
interpreter.attachUpstreamBoundary(0, source)
|
|
|
|
|
interpreter.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 1)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement detacher stage" in new TestSetup {
|
2015-09-24 15:32:06 +02:00
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink = new DownstreamProbe[Int]("sink")
|
2015-08-19 15:22:02 +02:00
|
|
|
|
|
|
|
|
builder(detacher)
|
|
|
|
|
.connect(source, detacher.in)
|
|
|
|
|
.connect(detacher.out, sink)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 1), RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
// Source waits
|
|
|
|
|
source.onNext(2)
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
// "pushAndPull"
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 2), RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
// Sink waits
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
// "pushAndPull"
|
|
|
|
|
source.onNext(3)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 3), RequestOne(source)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement Zip" in new TestSetup {
|
|
|
|
|
val source1 = new UpstreamProbe[Int]("source1")
|
|
|
|
|
val source2 = new UpstreamProbe[String]("source2")
|
|
|
|
|
val sink = new DownstreamProbe[(Int, String)]("sink")
|
|
|
|
|
|
|
|
|
|
builder(zip)
|
|
|
|
|
.connect(source1, zip.in0)
|
|
|
|
|
.connect(source2, zip.in1)
|
|
|
|
|
.connect(zip.out, sink)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source1), RequestOne(source2)))
|
|
|
|
|
|
|
|
|
|
source1.onNext(42)
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
source2.onNext("Meaning of life")
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, (42, "Meaning of life"))))
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source1), RequestOne(source2)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement Broadcast" in new TestSetup {
|
|
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink1 = new DownstreamProbe[Int]("sink1")
|
|
|
|
|
val sink2 = new DownstreamProbe[Int]("sink2")
|
|
|
|
|
|
|
|
|
|
builder(bcast)
|
|
|
|
|
.connect(source, bcast.in)
|
|
|
|
|
.connect(bcast.out(0), sink1)
|
|
|
|
|
.connect(bcast.out(1), sink2)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink1.requestOne()
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink2.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink1, 1), OnNext(sink2, 1)))
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement broadcast-zip" in new TestSetup {
|
|
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink = new DownstreamProbe[(Int, Int)]("sink")
|
|
|
|
|
val zip = new Zip[Int, Int]
|
|
|
|
|
|
|
|
|
|
builder(zip, bcast)
|
|
|
|
|
.connect(source, bcast.in)
|
|
|
|
|
.connect(bcast.out(0), zip.in0)
|
|
|
|
|
.connect(bcast.out(1), zip.in1)
|
|
|
|
|
.connect(zip.out, sink)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, (1, 1))))
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(2)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, (2, 2))))
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement zip-broadcast" in new TestSetup {
|
|
|
|
|
val source1 = new UpstreamProbe[Int]("source1")
|
|
|
|
|
val source2 = new UpstreamProbe[Int]("source2")
|
|
|
|
|
val sink1 = new DownstreamProbe[(Int, Int)]("sink")
|
|
|
|
|
val sink2 = new DownstreamProbe[(Int, Int)]("sink2")
|
|
|
|
|
val zip = new Zip[Int, Int]
|
2015-09-18 17:17:25 +02:00
|
|
|
val bcast = Broadcast[(Int, Int)](2)
|
2015-08-19 15:22:02 +02:00
|
|
|
|
|
|
|
|
builder(bcast, zip)
|
|
|
|
|
.connect(source1, zip.in0)
|
|
|
|
|
.connect(source2, zip.in1)
|
|
|
|
|
.connect(zip.out, bcast.in)
|
|
|
|
|
.connect(bcast.out(0), sink1)
|
|
|
|
|
.connect(bcast.out(1), sink2)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink1.requestOne()
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink2.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source1), RequestOne(source2)))
|
|
|
|
|
|
|
|
|
|
source1.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
source2.onNext(2)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink1, (1, 2)), OnNext(sink2, (1, 2))))
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement merge" in new TestSetup {
|
|
|
|
|
val source1 = new UpstreamProbe[Int]("source1")
|
|
|
|
|
val source2 = new UpstreamProbe[Int]("source2")
|
|
|
|
|
val sink = new DownstreamProbe[Int]("sink")
|
|
|
|
|
|
|
|
|
|
builder(merge)
|
|
|
|
|
.connect(source1, merge.in(0))
|
|
|
|
|
.connect(source2, merge.in(1))
|
|
|
|
|
.connect(merge.out, sink)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source1), RequestOne(source2)))
|
|
|
|
|
|
|
|
|
|
source1.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 1), RequestOne(source1)))
|
|
|
|
|
|
|
|
|
|
source2.onNext(2)
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 2), RequestOne(source2)))
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
source2.onNext(3)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 3), RequestOne(source2)))
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
source1.onNext(4)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 4), RequestOne(source1)))
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement balance" in new TestSetup {
|
|
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink1 = new DownstreamProbe[Int]("sink1")
|
|
|
|
|
val sink2 = new DownstreamProbe[Int]("sink2")
|
|
|
|
|
|
|
|
|
|
builder(balance)
|
|
|
|
|
.connect(source, balance.in)
|
|
|
|
|
.connect(balance.out(0), sink1)
|
|
|
|
|
.connect(balance.out(1), sink2)
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink1.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
sink2.requestOne()
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink1, 1), RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(2)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink2, 2)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement non-divergent cycle" in new TestSetup {
|
|
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink = new DownstreamProbe[Int]("sink")
|
|
|
|
|
|
|
|
|
|
builder(merge, balance)
|
|
|
|
|
.connect(source, merge.in(0))
|
|
|
|
|
.connect(merge.out, balance.in)
|
|
|
|
|
.connect(balance.out(0), sink)
|
|
|
|
|
.connect(balance.out(1), merge.in(1))
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 1), RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
// Token enters merge-balance cycle and gets stuck
|
|
|
|
|
source.onNext(2)
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
// Unstuck it
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 2)))
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
"implement divergent cycle" in new TestSetup {
|
|
|
|
|
val source = new UpstreamProbe[Int]("source")
|
|
|
|
|
val sink = new DownstreamProbe[Int]("sink")
|
|
|
|
|
|
|
|
|
|
builder(detacher, balance, merge)
|
|
|
|
|
.connect(source, merge.in(0))
|
|
|
|
|
.connect(merge.out, balance.in)
|
|
|
|
|
.connect(balance.out(0), sink)
|
|
|
|
|
.connect(balance.out(1), detacher.in)
|
|
|
|
|
.connect(detacher.out, merge.in(1))
|
|
|
|
|
.init()
|
|
|
|
|
|
|
|
|
|
lastEvents() should ===(Set.empty)
|
|
|
|
|
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
source.onNext(1)
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 1), RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
// Token enters merge-balance cycle and spins until event limit
|
|
|
|
|
// Without the limit this would spin forever (where forever = Int.MaxValue iterations)
|
|
|
|
|
source.onNext(2, eventLimit = 1000)
|
|
|
|
|
lastEvents() should ===(Set(RequestOne(source)))
|
|
|
|
|
|
|
|
|
|
// The cycle is still alive and kicking, just suspended due to the event limit
|
|
|
|
|
interpreter.isSuspended should be(true)
|
|
|
|
|
|
|
|
|
|
// Do to the fairness properties of both the interpreter event queue and the balance stage
|
|
|
|
|
// the element will eventually leave the cycle and reaches the sink.
|
|
|
|
|
// This should not hang even though we do not have an event limit set
|
|
|
|
|
sink.requestOne()
|
|
|
|
|
lastEvents() should ===(Set(OnNext(sink, 2)))
|
|
|
|
|
|
|
|
|
|
// The cycle is now empty
|
|
|
|
|
interpreter.isSuspended should be(false)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|