vote up 0 vote down star
1

Hi, Looking for an open source web testing tool that can do Windows Authentication.

I've used openSTA and Pylot in very small amounts but found neither to do windows. openSTA says you can do NTLM here: http://www.opensta.org/docs/sclref/build-auth-blob.htm

I could not get it working - probably due to some config on the network or maybe my own mistake.

flag

3 Answers

vote up 1 vote down check

It would be a shame to limit your testing tool due to a matter of authentication. It is more practical to turn off NTLM / Windows Auth during stress testing. We have done this by adding a configuration parameter that allows the user name to be passed via URL only when configured in a stress / load testing environment. This causes a behavior change in exactly one place where we load and cache the current user. And it works with virtually any testing tool.

If you are testing an ASP.NET app, it is a matter of creating your own user principal and assigning it to the HttpContext.Current.User. A good place to do this is in the AuthenticateRequest event of an HttpModule or Membership Provider that you configure in only in the stress testing environment.

There is not much downside to this technique. This operates under the assumption that Windows authentication is relatively cheap and relatively small compared to the performance of the overall application. We have enjoyed a high confidence in our stress test results without it. The one caveat here is that IE will do a challenge/response with NTLM, so while it is not a perfect test, it is a very good test. And the perfect is the enemy of the good.

link|flag
Still not totally happy with not having a simple way to do NTLM auth, but will accept as it seems to be the most practical way to get this done for free. – Sam Nov 2 at 22:15
vote up 0 vote down

You could try out the Grinder project: NTLM support is a bit tricky but there are some details here:

http://grinder.sourceforge.net/faq.html#spnego

link|flag
vote up 1 vote down

Maybe I am missing something about Windows Authentication, but I think that Selenium should be able to do that. Have you tried?

link|flag
Thanks! Investigating this now... – Sam Oct 15 at 15:51
Looks like it does monitoring, but not stress testing as it has to start an actual browser. – Sam Oct 15 at 16:10
webdriver is able to run without an actual browser thanks to HtmlUnit code.google.com/p/webdriver/wiki/HtmlUnit. Not sure it can do the job for Windows Authentication. – luc Oct 15 at 19:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.