Kavan
Kavan

Reputation: 569

Diameter protocol testing using Jmeter

Is there any opensource plugin available for diameter protocol testing using JMeter? I found "Computaris Top Testing Suite" which is based on JMeter and supports diameter protocol testing, but it is paid.

Upvotes: 0

Views: 4135

Answers (2)

AbhiBlr
AbhiBlr

Reputation: 1

You may use Seagull (http://gull.sourceforge.net/) to test diameter applications. Seagull is good in both testing and generating load for performance testing.

Also, a decent level of automation can be done using Seagull with Cucumber to automate the testing.

Upvotes: 0

Dmitri T
Dmitri T

Reputation: 168197

I'm not aware of any existing plugins, you could look into something like:

You need to:

  1. Download diameter client libraries
  2. Put them into JMeter's /lib folder
  3. Implement your test code via JSR223 Sampler (make sure that you use "groovy" as a language, see Beanshell vs JSR223 vs Java JMeter Scripting: The Performance-Off You've Been Waiting For! guide for explanation and instructions on installing groovy scripting engine support in Jmeter). You can check out ExampleClient.java for reference.
  4. Once it's ready and development is done you can run JSR223 Samplers as any other sampler types.

Upvotes: 1

Related Questions