简体   繁体   中英

How can I force a RabbitMQ broker to NACK a message for testing?

I'm working on a Spring Boot project using RabbitMQ via Spring AMQP. We'd like to be able to test our app's behavior when a message publish is NACK'd (specifically when the ack argument of PublisherConfirmCallback#confirm is false ). However we're having a hard time trying to set up this scenario in an integration test (that is, with the app running, not a unit test).

Just to be clear, we're testing around publisher acknowledgements, not consumer acknowledgements.

We know you can get access to a channel with the RabbitTemplate's execute method, but our RabbitMQ auto-acks, so the message is already gone by the time the channel callback is executed. We're thinking we might be able to either disable auto-ack at runtime (so as not to interrupt the test suite) or to simply block the channel and receive the message on it manually in the test, but we can't figure out how to do either of these. But really, any way to cause a NACK during a test would be great.

tl;dr how to nack a message from client code

you will have to turn off auto-ack, to start with. with that turned on, it will not be possible to nack a message.

after that, you're test setup should include a message consumer that is coded specifically to do what you want, when you want... don't use your real code to test the nack handling. set up a consumer that only does a nack... or one that knows when it receives certain messages, it should nack

将消息发布到不存在的交换将导致发布者确认回调以接收nack!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM