Can anybody suggest a good tool for automated testing of json-rpc interfaces?
We are using Json-RPC. We have looked at JMeter and The Grinder, but they don't seem to offer any slick way of testing ranges of arguments in our RPC calls. For example, with JMeter, we would have to set up a separate .json file for each set of parameters that we want to test.
Are there any good tools out there for automated testing of json-rpc?
We are looking for something with a GUI (like JMeter) as well as something that we can trigger from Jenkins.
As a very contrived example, let's say we have a call that takes json like this:
{ "jsonrpc": "2.0", "method": "move_to_tile", "params": { "userid": 123456, "x": 1, "y": 3 } }
I would be able to run a bunch of threads, each with their own userid sending various values for x and y.