Kafka¶
Standalone Kafka¶
Configure¶
TestSystem()
.with {
// other dependencies
kafka {
stoveKafkaObjectMapperRef = objectMapperRef
KafkaSystemOptions {
listOf(
"kafka.bootstrapServers=${it.bootstrapServers}",
"kafka.interceptorClasses=${it.interceptorClass}"
)
}
}
}.run()
Configuring Object Mapper¶
Like every SystemOptions
object, KafkaSystemOptions
has a stoveKafkaObjectMapperRef
field. You can set your own
object mapper to this field. If you don't set it, Stove will use its default object mapper.
Kafka Bridge With Your Application¶
Stove Kafka bridge is a MUST to work with Kafka. Otherwise you can't assert any messages from your application.
As you can see in the example above, you need to add a support to your application to work with interceptor that Stove provides.
"kafka.interceptorClasses=com.trendyol.stove.testing.e2e.standalone.kafka.intercepting.StoveKafkaBridge"
Important
kafka.
prefix is an assumption that you can change it with your own prefix.
Make sure that StoveKafkaBridge
is in your classpath.
Usage¶
When you want to use Kafka with Application Aware testing it provides more assertion capabilities. It is recommended way of working. Stove-Kafka does that with intercepting the messages.
How to get?¶
Configure¶
Configuration Values¶
Kafka works with some settings as default, your application might have these values as not configurable, to make the application testable we need to tweak a little bit.
If you have the following configurations:
AUTO_OFFSET_RESET_CONFIG | "auto.offset.reset" | should be "earliest"
ALLOW_AUTO_CREATE_TOPICS_CONFIG | "allow.auto.create.topics" | should be true
HEARTBEAT_INTERVAL_MS_CONFIG | "heartbeat.interval.ms" | should be 2 seconds
You better make them configurable, so from the e2e testing context we can change them work with Stove-Kafka testing.
As an example:
TestSystem()
.with{
httpClient()
kafka()
springBoot(
runner = { parameters ->
com.trendyol.exampleapp.run(parameters)
},
withParameters = listOf(
"logging.level.root=error",
"logging.level.org.springframework.web=error",
"spring.profiles.active=default",
"server.http2.enabled=false",
"kafka.heartbeatInSeconds=2",
"kafka.autoCreateTopics=true",
"kafka.offset=earliest"
)
)
}.run()
As you can see, we pass these configuration values as parameters. Since they are configurable, the application considers these values instead of application-default values.
Consumer Settings¶
Second thing we need to do is tweak your consumer configuration. For that we will provide Stove-Kafka interceptor to your Kafka configuration.
Locate to the point where you define your ConcurrentKafkaListenerContainerFactory
or where you can set the interceptor. Interceptor needs to implement ConsumerAwareRecordInterceptor<String, String>
since
Stove-Kafka relies on that.
@EnableKafka
@Configuration
class KafkaConsumerConfiguration(
private val interceptor: ConsumerAwareRecordInterceptor<String, String>,
) {
@Bean
fun kafkaListenerContainerFactory(): ConcurrentKafkaListenerContainerFactory<String, String> {
val factory = ConcurrentKafkaListenerContainerFactory<String, String>()
// ...
factory.setRecordInterceptor(interceptor)
return factory
}
}
Producer Settings¶
Make sure that the aforementioned values are also configureable for producer settings, too.
Stove will have access to KafkaTemplate
and will use setProducerListener
to arrange itself to listen produced messages.
Plugging in¶
When all the configuration is done, it is time to tell to application to use our TestSystemInterceptor
and configuration values.
TestSystemInterceptor and TestInitializer¶
class TestInitializer : BaseApplicationContextInitializer({
bean<TestSystemInterceptor>(isPrimary = true)
})
fun SpringApplication.addTestDependencies() {
this.addInitializers(TestInitializer())
}
Configuring the SystemUnderTest and Parameters¶
addTestDependencies
is an extension that helps us to register our dependencies in the application.
springBoot(
runner = { parameters ->
com.trendyol.exampleapp.run(parameters) {
addTestDependencies() // Enable TestInitializer with extensions call
}
},
withParameters = listOf(
"logging.level.root=error",
"logging.level.org.springframework.web=error",
"spring.profiles.active=default",
"server.http2.enabled=false",
"kafka.heartbeatInSeconds=2", // Added Parameter
"kafka.autoCreateTopics=true", // Added Parameter
"kafka.offset=earliest" // Added Parameter
)
)
Now you're full set and have control over Kafka messages from the testing context.