dbkover / dbkover

DBKover is a library to enable easy integration testing to databases using DBUnit.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DBKover

DBKover is a library to enable easy integration testing to databases using DBUnit.

DBKover includes the following features:

  • Ensure database has proper state before test
  • Expect a given state of the database after test

DBKover offers integrations with:

  • Junit 5

Warning

The API is still during development and may change without further notice until v1.

Installation

Get this package on Maven Central. Include the module you need as a test dependency. E.g. for JUnit 5, see below example.

dependencies {
    // ...
    testImplementation("io.dbkover:junit5:$dbKoverVersion")
    // ...
}

Documentation

To use DBKover the test class must be annotated with @DBKover and specify a database connection with @DBKoverConnection.

@DBKover
class SomeDatabaseTest {
    
    @DBKoverConnection
    fun getConnect(): Connection {
        // ...
    }
    
}

Tests can be annotated with @DBKoverDataSet and @DBKoverExpected to ensure data before and after tests.

<!-- dataset.xml in resources -->
<dataset>
    <table_name name="DBKover"/>
</dataset>
@DBKoverDataSet("dataset.xml")
fun `Test that DBKover exists in table`() {
    // ...
}

@DBKoverExpected("dataset.xml")
fun `Test that DBKover is in database after insert`() {
    // ...
}

About

DBKover is a library to enable easy integration testing to databases using DBUnit.

License:Apache License 2.0


Languages

Language:Kotlin 100.0%