Class TestTransport.SwitchableLoggedBehavior<A,B>
java.lang.Object
org.apache.pekko.remote.transport.TestTransport.SwitchableLoggedBehavior<A,B>
- All Implemented Interfaces:
scala.Function1<A,scala.concurrent.Future<B>>
- Enclosing class:
- TestTransport
public static class TestTransport.SwitchableLoggedBehavior<A,B>
extends Object
implements scala.Function1<A,scala.concurrent.Future<B>>
Test utility to make behavior of functions that return some Future[B] controllable from tests. This tool is able
to overwrite default behavior with any generic behavior, including failure, and exposes control to the timing of
the completion of the returned future.
The utility is implemented as a stack of behaviors, where the behavior on the top of the stack represents the currently active behavior. The bottom of the stack always contains the defaultBehavior which can not be popped out.
param: defaultBehavior The original behavior that might be overwritten. It is always possible to restore this behavior
param: logCallback Function that will be called independently of the current active behavior
type parameter A: - Parameter type of the wrapped function. If it takes multiple parameters it must be wrapped in a tuple.
type parameter B: - Type parameter of the future that the original function returns.
-
Nested Class Summary
-
Constructor Summary
ConstructorsConstructorDescriptionSwitchableLoggedBehavior(scala.Function1<A, scala.concurrent.Future<B>> defaultBehavior, scala.Function1<A, scala.runtime.BoxedUnit> logCallback) -
Method Summary
Modifier and TypeMethodDescriptionscala.concurrent.Future<B>Applies the current behavior, and invokes the callback.voidpop()Restores the previous behavior.voidChanges the current behavior to the provided one.voidpushConstant(B c) Changes the behavior to return a completed future with the given constant value.scala.concurrent.Promise<scala.runtime.BoxedUnit>Enables control of the completion of the previously active behavior.voidChanges the current behavior to return a failed future containing the given Throwable.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface scala.Function1
andThen, apply$mcDD$sp, apply$mcDF$sp, apply$mcDI$sp, apply$mcDJ$sp, apply$mcFD$sp, apply$mcFF$sp, apply$mcFI$sp, apply$mcFJ$sp, apply$mcID$sp, apply$mcIF$sp, apply$mcII$sp, apply$mcIJ$sp, apply$mcJD$sp, apply$mcJF$sp, apply$mcJI$sp, apply$mcJJ$sp, apply$mcVD$sp, apply$mcVF$sp, apply$mcVI$sp, apply$mcVJ$sp, apply$mcZD$sp, apply$mcZF$sp, apply$mcZI$sp, apply$mcZJ$sp, compose, toString
-
Constructor Details
-
SwitchableLoggedBehavior
-
-
Method Details
-
apply
Applies the current behavior, and invokes the callback. -
pop
public void pop()Restores the previous behavior. -
push
Changes the current behavior to the provided one.- Parameters:
behavior- Function that takes a parameter type A and returns a Future[B].
-
pushConstant
Changes the behavior to return a completed future with the given constant value.- Parameters:
c- The constant the future will be completed with.
-
pushDelayed
public scala.concurrent.Promise<scala.runtime.BoxedUnit> pushDelayed()Enables control of the completion of the previously active behavior. Wraps the previous behavior in a new one, returns a control promise that starts the original behavior after the control promise is completed.- Returns:
- A promise, which delays the completion of the original future until after this promise is completed.
-
pushError
Changes the current behavior to return a failed future containing the given Throwable.- Parameters:
e- The throwable the failed future will contain.
-