68b42d90c9
Move the contents of the former load-tests directory to the root of this structure. Before this change, that directory was the only file set present in this e2e-tests root structure. This removal also paves the way for potential non-load e2e tests, such as functional feature ones. Gerrit already has unit and acceptance or (partial) integration tests for its functionality. However organizations still need to internally develop and maintain -thus duplicate- full e2e integration tests. E.g., to smoke-test new release deployment acts for either development, staging or production purposes. This change then also proposes to consider reusing this Gatling framework (DSL, protocols) for e2e feature integration tests, alongside the emerging load ones -for Gerrit. Change-Id: Idffa7f43b546d6bfdc5d7b170d8ddc6c51b095c3
19 lines
583 B
Scala
19 lines
583 B
Scala
import Dependencies._
|
|
|
|
enablePlugins(GatlingPlugin)
|
|
|
|
lazy val gatlingGitExtension = RootProject(uri("git://github.com/GerritForge/gatling-git.git"))
|
|
lazy val root = (project in file("."))
|
|
.settings(
|
|
inThisBuild(List(
|
|
organization := "com.google.gerrit",
|
|
scalaVersion := "2.12.8",
|
|
version := "0.1.0-SNAPSHOT"
|
|
)),
|
|
name := "gerrit",
|
|
libraryDependencies ++=
|
|
gatling ++
|
|
Seq("io.gatling" % "gatling-core" % "3.1.1") ++
|
|
Seq("io.gatling" % "gatling-app" % "3.1.1")
|
|
) dependsOn gatlingGitExtension
|