Is there a test-suite available (from SCS developers probably) which can be used to verify that a binder implementation supports all features of Spring Cloud Stream including partitioning etc.?
Asked
Active
Viewed 33 times
0
-
1No such test-suite, but for partitions you can extend from the `PartitionCapableBinderTests` and see if all the tests there pass. See a similar approach we took in Kafka binder. https://github.com/spring-cloud/spring-cloud-stream/blob/main/binders/kafka-binder/spring-cloud-stream-binder-kafka/src/test/java/org/springframework/cloud/stream/binder/kafka/KafkaBinderTests.java#L173 – sobychacko Feb 03 '23 at 15:50