HACKER Q&A
📣 I_dev_outdoors

How do I force network failures during development against remote APIs?


I am working on a gateway product and would like to start focusing on reliability and handling intermediate networking errors. What are some techniques and tools I can use to force them so that I can write code that gracefully handles them? I am thinking stuff like certificate errors, DNS lookup failures, socket disconnected errors, timeouts, invalid data returned over the socket when expecting HTTP.

Thanks.


  👤 mneil Accepted Answer ✓
https://github.com/Shopify/toxiproxy is a perfect solution for that. I used it quite successfully years ago and it looks like it's still pretty active.

👤 sethammons
Take a look at https://github.com/tylertreat/comcast

> Comcast is a tool designed to simulate common network problems like latency, bandwidth restrictions, and dropped/reordered/corrupted packets


👤 I_dev_outdoors
I found https://badssl.com/ which at least helps me with the SSL cert issues, but I would still love to hear any other good solutions for testing other types of networking errors.