user128300
user128300

Reputation:

Any suggestions for good automated web load testing tool?

What are some good automated tools for load testing (stress testing) web applications, that do not use record and replay of HTTP network packets?

I am aware that there are numerous load testing tools on the market that record and replay HTTP network packets. But these are unsuitable for my purpose, because of this:

The automated load testing tool I am looking for should be able to let the test team write "black box" test scripts such as:

The tool should be able to simulate up to several 1000 users, and it should be compatible with web applications using ASP.NET and AJAX.

Upvotes: 7

Views: 3753

Answers (5)

nillls
nillls

Reputation: 623

JMeter I've found to be pretty helpful, it also has a recording functionality to record use cases so you don't have to specify each GET/POST manually but rather "click" the use case once and then let JMeter repeat it.
http://jmeter.apache.org/

Upvotes: 2

Tomas Voracek
Tomas Voracek

Reputation: 5914

What about http://watin.sourceforge.net/ ?

Upvotes: 0

Troy a.
Troy a.

Reputation: 16

TestMaker by PushToTest.com can run recorded scripts such as Selenium as well as many different languages like HTML, Java, Ruby, Groovy, .Net, VB, PHP, etc. It has a common reporting infrastructure and you can create load in your test lab or using cloud testing environments like EC2 for virtual test labs.

They provide free webinars on using open source testing tools on a monthly basis and there is one next Tuesday.

http://www.pushtotest.com

Upvotes: 0

PP.
PP.

Reputation: 10865

There are a few approaches; I've been in situations, however, where I've had to roll my own load generating utilities.

As far as your test script is concerned it involves:

  • sending a GET request to http://form entry page (only checking if a 200 response is given)
  • sending a POST request to http://form submit page with pre-generated key/value pairs for text XXX and performing a regexp check on the response

Unless your web page is complex AJAX there is no need to "simulate a button press" - this is taken care of by the POST request.

Given that your test consists of just a 2-step process there should be several automated load packages that could do this.

I've previously used httperf for load testing a large website: it can simulate a session consisting of several requests and can simulate a large number of users (i.e. sessions) simultaneously. For example, if your website generated a session cookie from the home page you could make that the first request, httperf would then use that cookie for subsequent requests, until it had finished doing the list of requests supplied.

Upvotes: 0

bkaid
bkaid

Reputation: 52093

A license can be expensive for it (if you dont have MSDN), but Visual Studio 2010 Ultimate edition has a great set of load and stress testing tools that do what you describe. You can try it out for free for 90 days here.

Upvotes: 1

Related Questions