Java library for a microservice environment emulation.
Idea is to be agnostic to tools used for specific external system emulation (e.g. docker, remote server, java standalone app or process). It enables to build up mixed environment.
- Add needed dependencies:
testImplementation "io.github.adven27:env-db-postgresql:<version>"
testImplementation "io.github.adven27:env-db-mssql:<version>"
testImplementation "io.github.adven27:env-db-mysql:<version>"
testImplementation "io.github.adven27:env-db-oracle:<version>"
testImplementation "io.github.adven27:env-db-oracle-temp:<version>"
testImplementation "io.github.adven27:env-db-db2:<version>"
testImplementation "io.github.adven27:env-redis:<version>"
testImplementation "io.github.adven27:env-mq-rabbit:<version>"
testImplementation "io.github.adven27:env-mq-ibmmq:<version>"
testImplementation "io.github.adven27:env-mq-kafka:<version>"
testImplementation "io.github.adven27:env-mq-kafka-embedded:<version>"
testImplementation "io.github.adven27:env-wiremock:<version>"
testImplementation "io.github.adven27:env-grpc-mock:<version>"
testImplementation "io.github.adven27:env-jar-application:<version>"- Set up systems:
classSomeEnvironment : Environment(
"DB" to PostgreSqlContainerSystem(),
"KAFKA" to EmbeddedKafkaSystem("some.topic", "another.topic"),
"RATES_API" to WiremockSystem(
helpers = mapOf(
"rateOf" to Helper { c, _-> mapOf("USD" to 10, "RUB" to 100, "JPY" to 0.1, "CNY" to 0.01)[c.toString()] },
),
afterStart = {
stubFor(
get(urlPathEqualTo("/rates"))
.withQueryParam("baseCurrency", equalTo("EUR"))
.withQueryParam("quoteCurrencies", notMatching("^\$"))
.willReturn(
okJson(
"""
{
"baseCurrency": "EUR",
"rates": {
{{#each request.query.quoteCurrencies as |cur|}}
"{{cur}}" : {{#if (rateOf cur)}} {{rateOf cur}} {{else}} null {{/if}} {{#unless @last}},{{/unless}}
{{/each}}
}
}
""".trimIndent()
)
)
)
}
)
) {
fundatabase() = env<PostgreSqlContainerSystem>().config
funkafka() = env<EmbeddedKafkaSystem>().config.bootstrapServers
funapi() = env<WiremockSystem>()
}- Use in tests:
classMyTestClass {
companionobject {
privatevalENV:SomeEnvironment=SomeEnvironment()
@BeforeClass @JvmStatic
funsetup() {
ENV.up()
}
@AfterClass @JvmStatic
funteardown() {
ENV.down()
}
}
@Test funtestSomething() {
//some interactions with environmentENV.api().client.resetRequests()
//some test...
}
}Environment class implementation could be run as standalone java application with io.github.adven27.env.core.EnvStarter
For example as gradle task:
task runEnv(type: JavaExec) {
group ="Execution"
description ="Run some environment"
classpath = sourceSets.test.runtimeClasspath
main ="io.github.adven27.env.core.EnvStarter"
args 'SomeEnvironment'
systemProperty 'SPECS_ENV_START', true
systemProperty 'SPECS_ENV_FIXED', true
standardInput =System.in
}For more info see demo project