All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sbt.scriptedtest.BatchScriptRunner.scala Maven / Gradle / Ivy

The newest version!
/*
 * sbt
 * Copyright 2023, Scala center
 * Copyright 2011 - 2022, Lightbend, Inc.
 * Copyright 2008 - 2010, Mark Harrah
 * Licensed under Apache License 2.0 (see LICENSE)
 */

package sbt
package scriptedtest

import scala.collection.mutable

import sbt.internal.scripted._

private[sbt] object BatchScriptRunner {
  type States = mutable.HashMap[StatementHandler, StatementHandler#State]
}

/** Defines an alternative script runner that allows batch execution. */
private[sbt] class BatchScriptRunner extends ScriptRunner with AutoCloseable {
  import BatchScriptRunner.States

  /** Defines a method to run batched execution.
   *
   * @param statements The list of handlers and statements.
   * @param states The states of the runner. In case it's empty, inherited apply is called.
   */
  def apply(statements: List[(StatementHandler, Statement)], states: States): Unit = {
    if (states.isEmpty) super.apply(statements)
    else statements.foreach(st => processStatement(st._1, st._2, states))
  }

  def initStates(states: States, handlers: Seq[StatementHandler]): Unit =
    handlers.foreach(handler => states(handler) = handler.initialState)

  def cleanUpHandlers(handlers: Seq[StatementHandler], states: States): Unit = {
    for (handler <- handlers; state <- states.get(handler)) {
      try handler.finish(state.asInstanceOf[handler.State])
      catch { case _: Exception => () }
    }
  }

  def processStatement(handler: StatementHandler, statement: Statement, states: States): Unit = {
    val state = states(handler).asInstanceOf[handler.State]
    val nextState =
      try Right(handler(statement.command, statement.arguments, state))
      catch { case e: Exception => Left(e) }
    nextState match {
      case Left(err) =>
        if (statement.successExpected) {
          err match {
            case t: TestFailed =>
              throw new TestException(statement, "Command failed: " + t.getMessage, null)
            case _ => throw new TestException(statement, "Command failed", err)
          }
        } else
          ()
      case Right(s) =>
        if (statement.successExpected)
          states(handler) = s
        else
          throw new TestException(statement, "Command succeeded but failure was expected", null)
    }
  }

  override def close(): Unit = ()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy