English 中文(简体)
WebSocket stress testing
原标题:

I would like to do some stress testing to a WebSocket based application. Anyone knows a tool that may help me in this task?

Update: I forgot to mention, but I m favoring open source or free tools, given that the tests I m performing are not for production.

Thanks, Luís M. Costa

最佳回答

You could adapt the Visual Studio test edition coded webtests to make socket load tests instead of http tests.

Instrumentation is done from perfmon stats and can be stored in a database for more complex reporting.

This is free with the Test Edition SKU or the full Visual Studio licence, so will not be applicable depending on your toolset.

问题回答

The usual web tools for stress testing are based on pooling (for this I would recommend SoapUI). The idea is to measure the response time for a given request. I don t think this would help to test the actual Web Sockets behavior because that doesn t involve a request; the server just sends data when it is available.





相关问题
Selenium not working with Firefox 3.x on linux

I am using selenium-server , selenium rc for UI testing in my application . My dev box is Windows with FireFox 3.5 and every thing is running fine and cool. But when i try to run selenium tests on my ...

Best browser for testing under Safari Mobile on Linux?

I have an iPhone web app I m producing on a Linux machine. What s the best browser I can use to most closely mimic the feature-limited version of Safari present on the iPhone? (It s a "slimmed down" ...

Code Coverage Tools & Visual Studio 2008 Pro

Just wondering what people are using for code coverage tools when using MS Visual Studio 2008 Pro. We are using the built-in MS test project and unit testing tool (the one that come pre-installed ...

Is there any error checking web app cralwers out there?

Wondering if there was some sort of crawler we could use to test and re-test everything when changes are made to the web app so we know some new change didn t error out any existing pages. Or maybe a ...

热门标签