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

camundala.helper.setup.SimulationGenerator.scala Maven / Gradle / Ivy

The newest version!
package camundala.helper.setup

case class SimulationGenerator()(using config: SetupConfig):

  def createProcess(setupElement: SetupElement): Unit =
    os.write.over(
      simulationTestPath(setupElement) / s"${setupElement.bpmnName}Simulation.scala",
      process(setupElement)
    )
  end createProcess

  private def process(
      setupElement: SetupElement
  ) =
    val SetupElement(_, processName, name, version) = setupElement
    s"""package ${config.projectPackage}
       |package simulation
       |
       |import ${config.projectPackage}.bpmn.$processName${version.versionPackage}.$name.*
       |
       |// ./helper.scala deploy ${name}Simulation
       |// simulation/test
       |// simulation/testOnly *${name}Simulation
       |class ${name}Simulation extends CompanySimulation:
       |
       |  simulate(
       |    scenario(`${config.projectShortClassName} $name`)(
       |      //TODO remove or add process steps like UserTasks
       |    )
       |  )
       |
       |  override implicit def config =
       |    super.config
       |      //.withMaxCount(30)
       |      //.withLogLevel(LogLevel.DEBUG)
       |
       |  private lazy val `${config.projectShortClassName} $name` =
       |    example.mockServices
       |
       |end ${name}Simulation""".stripMargin
  end process

  private def simulationTestPath(setupElement: SetupElement) =
    val dir = config.projectDir / ModuleConfig.simulationModule.packagePath(
      config.projectPath,
      mainOrTest = "test"
    )
    os.makeDir.all(dir)
    dir
  end simulationTestPath

end SimulationGenerator




© 2015 - 2024 Weber Informatics LLC | Privacy Policy