gatling-jdbc


License

License

Categories

Categories

Gatling Application Testing & Monitoring
GroupId

GroupId

de.codecentric
ArtifactId

ArtifactId

gatling-jdbc_2.12
Last Version

Last Version

2.0.0
Release Date

Release Date

Type

Type

jar
Description

Description

gatling-jdbc
gatling-jdbc
Project URL

Project URL

https://github.com/codecentric/gatling-jdbc
Project Organization

Project Organization

de.codecentric
Source Code Management

Source Code Management

https://github.com/codecentric/gatling-jdbc

Download gatling-jdbc_2.12

How to add to project

<!-- https://jarcasting.com/artifacts/de.codecentric/gatling-jdbc_2.12/ -->
<dependency>
    <groupId>de.codecentric</groupId>
    <artifactId>gatling-jdbc_2.12</artifactId>
    <version>2.0.0</version>
</dependency>
// https://jarcasting.com/artifacts/de.codecentric/gatling-jdbc_2.12/
implementation 'de.codecentric:gatling-jdbc_2.12:2.0.0'
// https://jarcasting.com/artifacts/de.codecentric/gatling-jdbc_2.12/
implementation ("de.codecentric:gatling-jdbc_2.12:2.0.0")
'de.codecentric:gatling-jdbc_2.12:jar:2.0.0'
<dependency org="de.codecentric" name="gatling-jdbc_2.12" rev="2.0.0">
  <artifact name="gatling-jdbc_2.12" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.codecentric', module='gatling-jdbc_2.12', version='2.0.0')
)
libraryDependencies += "de.codecentric" % "gatling-jdbc_2.12" % "2.0.0"
[de.codecentric/gatling-jdbc_2.12 "2.0.0"]

Dependencies

compile (6)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.12.6
io.gatling.highcharts : gatling-charts-highcharts jar 3.0.1
io.gatling : gatling-test-framework jar 3.0.1
org.scalikejdbc : scalikejdbc_2.12 jar 3.3.1
com.h2database : h2 jar 1.4.197
ch.qos.logback : logback-classic jar 1.2.3

test (5)

Group / Artifact Type Version
mysql : mysql-connector-java jar 8.0.13
org.postgresql : postgresql jar 42.2.5
org.scalatest : scalatest_2.12 jar 3.0.5
org.testcontainers : postgresql jar 1.10.1
org.testcontainers : mysql jar 1.10.1

Project Modules

There are no modules declared in this project.

Gatling JDBC Extension

JDBC support for Gatling

Build Status Maven Central

The JDBC extension for Gatling was originally created to accompany a blog post that shows how to extend Gatling. Currently, five SQL operations are being supported. See below for the usage.

Even more Attention

The development of this project continues in this fork. Please refrain from cloning/forking this repository or creating issue. Please use the other one!

Attention

In order to avoid conflicts with io.gatling:gatling-jdbc the artifact name has been changed with version 2.0.1. Instead of gatling-jdbc it is now called jdbc-gatling (see issue #8). Apart from this, nothing changes. All package names etc. stayed the same.

Usage

libraryDependencies += "de.codecentric" %% "gatling-jdbc" % "version"

General

In order to use the JDBC functionality, your simulation has to import de.codecentric.gatling.jdbc.Predef._. The JDBC configuration is done via jdbc, e.g.:

val jdbcConfig = jdbc
  .url("jdbc:h2:mem:test;DB_CLOSE_ON_EXIT=FALSE")
  .username("sa")
  .password("sa")
  .driver("org.h2.Driver")

Those are currently all the options that can be provided and that have to be provided.

The entry point for the operations is the jdbc() method. The method itself takes a request name as parameter. This name will appear in the reports to represent the operation that follows.

CREATE TABLE

Creating a table is done via jdbc().create(). In order to ease the creation of arbitrarily many columns, the helper class import de.codecentric.gatling.jdbc.builder.column.ColumnHelper._ was created. It is recommended to use it. The datatype of every column has to be provided as a string. Additionally, constraints are optional, but also have to be passed as strings. E.g.:

scenario("createTable").
    exec(jdbc("bar table")
      .create()
      .table("bar")
      .columns(
        column(
          name("abc"),
          dataType("INTEGER"),
          constraint("PRIMARY KEY")
        ),
        column(
          name("ac"),
          dataType("INTEGER")
        )
      )
    )

INSERT

Insertion is done via jdbc().insert(). For where to insert, two options are possible. Suppose you have the table from the example above. You can insert the values either by relying on the indices:

exec(jdbc("insertion")
  .insert()
  .into("bar")
  .values("${n}, ${n}")
)

or by using the column names:

exec(jdbc("insertion")
  .insert()
  .into("bar (abc, ac)")
  .values("${n}, ${n}")
)

SELECT

In contrast to the previous operations, select directly requires a parameter and is called via jdbc().select(<what>). The intention is to closely resemble the SQL syntax. Using where() is optional for SELECT. Therefore, the following two ways are both valid:

exec(jdbc("selection")
  .select("*")
  .from("bar")
)

and

exec(jdbc("selection")
  .select("*")
  .from("bar")
  .where("abc=4")
)

Of course, as parameter to select(), every column or combination of columns can be used, as with basic SQL.

DELETE

Deletion starts from jdbc().delete(). Here, the where clause is optional again. In order to delete certain values the following works:

repeat(5, "n"){
    exec(jdbc("deletion")
        .delete()
        .from("bar")
        .where("abc=${n}")  
    )
}

Alternatively, in order to delete everything:

exec(jdbc("deletion")
    .delete()
    .from("bar")
)

Please be careful, since no additional validation is being performed and you might lose some data.

DROP TABLE

The last operation that is being supported is DROP TABLE via jdbc().drop() The method only takes a single parameter, the table name. Please be careful again, which table you drop. Dropping the "bar" table from the first example can be done in the following way:

jdbc("drop bar table").drop().table("bar")

Checks

Currently, checks are only implemented for SELECT. When importing de.codecentric.gatling.jdbc.Predef._ two types of checks are provided. The first type is the SimpleCheck.

SimpleCheck

The simpleCheck method (importet via Predef) allows for very basic checks. This method takes a function from List[Map[String, Any]] to Boolean. Each element in the list represents a row and the map the individual columns. Checks are simply appended to the selection, e.g.:

exec(jdbc("selection")
  .select("*")
  .from("bar")
  .where("abc=4")
  .check(simpleCheck(result => result.head("FOO") == 4))
)

A SELECT without a WHERE clause can also be validated with a simpleCheck.

There is also another type of check that is more closely integrated with Gatling, the CheckBuilders.

CheckBuilder

CheckBuilder is actually a class provided by Gatling. Based on the Gatling classes, Gatling JDBC provides two types of them. The JdbcAnyCheckBuilder object contains the instances SingleAnyResult and ManyAnyResults. Both can be used in the tests quickly by calling either jdbcSingleResponse or jdbcManyResponse.

The difference between the two is that the single response extracts the head out of the list of results. So you can only verify a Map[String, Any]. Whereas the many response, like the simple checks, returns a List[Map[String, Any]]. Validation is performed via the Gatling API. E.g. checking a single result can look like this:

exec(jdbc("selectionSingleCheck")
  .select("*")
  .from("bar")
  .where("abc=4")
  .check(jdbcSingleResponse.is(Map[String, Any]("ABC" -> 4, "FOO" -> 4)))
)

This validates the data in the two columns "ABC" and "FOO". Please note explicit typing of the map. Without it the compiler will complain.

A check with multiple results doesn't look very different:

exec(jdbc("selectionManyCheck")
  .select("*")
  .from("bar")
  .where("abc=4 OR abc=5")
  .check(jdbcManyResponse.is(List(
    Map("ABC" -> 4, "FOO" -> 4),
    Map("ABC" -> 5, "FOO" -> 5)))
  )
)

The advantage those CheckBuilder provide is that they can access certain functionality provided by the Gatling interfaces and classes they extend. The most important one is the possibility to save the result of a selection to the current session. By calling saveAs after a check you can place the result in the session under the given name. So e.g. if you want to store the result of the single check you can do it like this:

exec(jdbc("selectionSingleCheckSaving")
  .select("*")
  .from("bar")
  .where("abc=4")
  .check(jdbcSingleResponse.is(Map[String, Any]("ABC" -> 4, "FOO" -> 4))
  .saveAs("myResult"))
)

Final

Covering all SQL operations is a lot of work and some special commands might not be required for performance tests. Please keep in mind that the state of this Gatling extension can be considered experimental. Feel free to leave comments and create pull requests.

Publishing

Firstly, you gotta have in your home .sbt/1.0/sonatype.sbt configured to contain your username and password for Sonatype. Secondly, open the sbt shell an perform the following steps:

  1. set pgpSecretRing := file("/home/<user>/.sbt/gpg/secring.asc") or where ever it is
  2. release

Executing the intergration tests

If you have to run Docker on your machine as sudo, then to execute the integration tests, sbt has to be started as sudo, too. Only sudo sbt gatling:test will then be allowed to start the container of the databases.

de.codecentric

codecentric AG

Versions

Version
2.0.0
1.1.0
1.0.1
1.0.0