How to do unit tests of a storm topology?

Viewed 892

I've been developing storm topologies, however I'm still finding that I'm lacking a proper way of unit testing the bolt and spout that have been created without having to launch the topology and send myself traffic. The services used in the topologies is separated and unit tested but there could still be error with their usage or with the topology stuff (tuple incorrect, ect). What is the way to create unit tests in my project in order to address this ? Thanks.

2 Answers
Related