【发布时间】:2016-02-12 09:43:50
【问题描述】:
我正在开发 Spray API,使用 Akka 路由器将传入消息发送到参与者池以处理逻辑。现在我想为 API 编写一些测试,但我正在努力为代码找到正确的结构。该 API 目前如下所示:
import akka.actor.{ActorRef, ActorSystem, Props, Actor}
import akka.io.IO
import akka.routing.SmallestMailboxPool
import akka.util.Timeout
import akka.pattern.ask
import com.typesafe.config.ConfigFactory
import spray.json._
import spray.can.Http
import scala.concurrent.duration._
import spray.routing._
import spray.http._
import scala.concurrent.ExecutionContext.Implicits.global
import scala.util.Success
import scala.util.Failure
object implicits{
implicit val system = ActorSystem("ApiSystem")
implicit val timeout = Timeout(5.seconds)
implicit val conf = ConfigFactory.load()
// Custom case class for parsing JSON parameter.
case class Msg(key1:String, key2:String, key3:Int)
object JsonProtocol extends DefaultJsonProtocol {
implicit val msg = jsonFormat3(Msg)
}
case class PostMsg(msg:String)
case object PostSuccess
case class PostFailure(msg:String)
}
import implicits._
object MyApi extends App {
override def main(Args: Array[String]):Unit = {
// create and start our service actor
val service = system.actorOf(Props(new MyApiActor(system)), "MyApi-service")
IO(Http) ? Http.Bind(service, interface = conf.getString("http.host"), port = conf.getInt("http.port"))
}
}
class MyApiActor(system: ActorSystem) extends Actor with MyApiService {
// the HttpService trait defines only one abstract member, which
// connects the services environment to the enclosing actor or test
def actorRefFactory = context
// this actor only runs our route, but you could add
// other things here, like request stream processing
// or timeout handling
def receive = runRoute(myRoute)
}
// this trait defines our service behavior independently from the service actor
trait MyApiService extends HttpService {
import implicits.JsonProtocol._
var actorPool = system.actorOf(SmallestMailboxPool(conf.getInt("actor-number")).props(Props(new HandlingActor(conf))), "msgRouter")
val myRoute =
path("msg") {
post {
entity(as[String]) { obj =>
try{
// if this parsing succeeds, the posted msg satisfies the preconditions set.
obj.parseJson.convertTo[Msg]
} catch {
case e: DeserializationException => {
complete(HttpResponse(status=StatusCodes.BadRequest, entity="Invalid json provided."))
}
case e: Exception => {
complete(HttpResponse(status=StatusCodes.InternalServerError, entity="Unknown internal server error."))
}
}
onComplete(actorPool ? PostMsg(obj)) {
case Success(value) => complete(HttpResponse(status = StatusCodes.OK, entity = "Pushed Msg"))
case Failure(value) => complete(HttpResponse(status = StatusCodes.InternalServerError, entity = "Handling failed."))
}
}
}
}
}
我想测试的是 API 对各种 HTTP 消息的响应(即正确调用、错误调用等)。处理参与者的逻辑只是将消息推送到 Kafka 总线,所以我想“模拟”这种行为(即,如果推送成功,能够测试 API 响应,以及推送失败时会发生什么)。
目前我最苦恼的是如何设置测试。现在,我正在使用与所示主要方法中相同的命令设置 API,但我需要指定不同的 actorPool,因为我不希望实际推送任何消息。我应该如何最好地完成这样的测试?
我正在使用 Scalatest,以及 Akka 和 Spray 测试套件。 (如有必要,还可能加上 mockito)
【问题讨论】:
-
Spray testkit 可让您直接测试您的路线,而无需启动参与者系统。看起来你无论如何都必须这样做,所以你可以使用 Akka testkit 来控制这样的 Actor 并拥有一个测试 Actor 系统。也许这里的一些示例将有助于路由测试和特征组合:github.com/izmailoff/Spray_Mongo_REST_service/blob/master/rest/…