/** * Copyright (C) 2009-2011 Typesafe Inc. */ package akka.testkit import akka.actor._ import akka.util.{ ReflectiveAccess, Duration } import com.eaio.uuid.UUID import akka.actor.Props._ import akka.actor.ActorSystem import java.util.concurrent.atomic.AtomicLong import akka.event.EventStream import scala.collection.immutable.Stack import akka.dispatch._ /** * This special ActorRef is exclusively for use during unit testing in a single-threaded environment. Therefore, it * overrides the dispatcher to CallingThreadDispatcher and sets the receiveTimeout to None. Otherwise, * it acts just like a normal ActorRef. You may retrieve a reference to the underlying actor to test internal logic. * * @author Roland Kuhn * @since 1.1 */ class TestActorRef[T <: Actor]( _system: ActorSystemImpl, _prerequisites: DispatcherPrerequisites, _props: Props, _supervisor: InternalActorRef, name: String) extends LocalActorRef( _system, _props.withDispatcher(new CallingThreadDispatcher(_prerequisites)), _supervisor, _supervisor.path / name, false) { private case object InternalGetActor extends AutoReceivedMessage override def newActorCell( system: ActorSystemImpl, ref: InternalActorRef, props: Props, supervisor: InternalActorRef, receiveTimeout: Option[Duration], hotswap: Stack[PartialFunction[Any, Unit]]): ActorCell = new ActorCell(system, ref, props, supervisor, receiveTimeout, hotswap) { override def autoReceiveMessage(msg: Envelope) { msg.message match { case InternalGetActor ⇒ sender ! actor case _ ⇒ super.autoReceiveMessage(msg) } } } /** * Directly inject messages into actor receive behavior. Any exceptions * thrown will be available to you, while still being able to use * become/unbecome. */ def apply(o: Any) { underlyingActor.apply(o) } /** * Retrieve reference to the underlying actor, where the static type matches the factory used inside the * constructor. Beware that this reference is discarded by the ActorRef upon restarting the actor (should this * reference be linked to a supervisor). The old Actor may of course still be used in post-mortem assertions. */ def underlyingActor: T = { // volatile mailbox read to bring in actor field if (isTerminated) throw new IllegalActorStateException("underlying actor is terminated") underlying.actor.asInstanceOf[T] match { case null ⇒ val t = underlying.system.settings.ActorTimeout Await.result(?(InternalGetActor)(t), t.duration).asInstanceOf[T] case ref ⇒ ref } } /** * Registers this actor to be a death monitor of the provided ActorRef * This means that this actor will get a Terminated()-message when the provided actor * is permanently terminated. * * @return the same ActorRef that is provided to it, to allow for cleaner invocations */ def watch(subject: ActorRef): ActorRef = underlying.watch(subject) /** * Deregisters this actor from being a death monitor of the provided ActorRef * This means that this actor will not get a Terminated()-message when the provided actor * is permanently terminated. * * @return the same ActorRef that is provided to it, to allow for cleaner invocations */ def unwatch(subject: ActorRef): ActorRef = underlying.unwatch(subject) override def toString = "TestActor[" + path + "]" } object TestActorRef { private val number = new AtomicLong private[testkit] def randomName: String = { val l = number.getAndIncrement() "$" + akka.util.Helpers.base64(l) } def apply[T <: Actor](factory: ⇒ T)(implicit system: ActorSystem): TestActorRef[T] = apply[T](Props(factory), randomName) def apply[T <: Actor](factory: ⇒ T, name: String)(implicit system: ActorSystem): TestActorRef[T] = apply[T](Props(factory), name) def apply[T <: Actor](props: Props)(implicit system: ActorSystem): TestActorRef[T] = apply[T](props, randomName) def apply[T <: Actor](props: Props, name: String)(implicit system: ActorSystem): TestActorRef[T] = apply[T](props, system.asInstanceOf[ActorSystemImpl].guardian, name) def apply[T <: Actor](props: Props, supervisor: ActorRef, name: String)(implicit system: ActorSystem): TestActorRef[T] = new TestActorRef(system.asInstanceOf[ActorSystemImpl], system.dispatcherFactory.prerequisites, props, supervisor.asInstanceOf[InternalActorRef], name) def apply[T <: Actor](implicit m: Manifest[T], system: ActorSystem): TestActorRef[T] = apply[T](randomName) def apply[T <: Actor](name: String)(implicit m: Manifest[T], system: ActorSystem): TestActorRef[T] = apply[T](Props({ import ReflectiveAccess.{ createInstance, noParams, noArgs } createInstance[T](m.erasure, noParams, noArgs) match { case Right(value) ⇒ value case Left(exception) ⇒ throw new ActorInitializationException(null, "Could not instantiate Actor" + "\nMake sure Actor is NOT defined inside a class/trait," + "\nif so put it outside the class/trait, f.e. in a companion object," + "\nOR try to change: 'actorOf(Props[MyActor]' to 'actorOf(Props(new MyActor)'.", exception) } }), name) }