Hi All,

I would like to start the discussion on KIP-470: TopologyTestDriver test
input and output usability improvements:
https://cwiki.apache.org/confluence/display/KAFKA/KIP-470%3A+TopologyTestDriver+test+input+and+output+usability+improvements

This KIP is inspired by the Discussion in KIP-456: Helper classes to make
it simpler to write test logic with TopologyTestDriver:
https://cwiki.apache.org/confluence/display/KAFKA/KIP-456
%3A+Helper+classes+to+make+it+simpler+to+write+test+logic+with+TopologyTestDriver


The proposal in KIP-456
<https://cwiki.apache.org/confluence/display/KAFKA/KIP-456%3A+Helper+classes+to+make+it+simpler+to+write+test+logic+with+TopologyTestDriver>
was
to add alternate way to input and output topic, but this KIP enhance those
classes and deprecate old functionality to make clear interface for test
writer to use.

In current KIP-470 proposal, topic objects are created with topicName and
related serders.
    public final <K, V> TestInputTopic<K, V> createInputTopic(final String
topicName, final Serde<K> keySerde, final Serde<V> valueSerde);
    public final <K, V> TestOutputTopic<K, V> createOutputTopic(final String
topicName, final Serde<K> keySerde, final Serde<V> valueSerde);
One thing I wondered if there way to find out topic related serde from
TopologyTestDriver topology, it would simply creation of these Topic
objects:
    public final <K, V> TestInputTopic<K, V> createInputTopic(final String
topicName);
    public final <K, V> TestOutputTopic<K, V> createOutputTopic(final String
topicName);

KIP-456 can be discarded if this KIP get accepted.


Best Regards,
Jukka

Reply via email to