vote up 0 vote down star

I guess I don't need the web browser, since network capabilities are built into the stand-alone player. I just need some kind of .NET component which will allow me to programatically start hundreds of flash players (with no UI) playing a specific SWF file for load testing purposes. The SWF file accesses a network service and downloads other SWF files, but basically runs on its own to completion once loaded into the player.

It would be nice if such a component would also allow me to detect when it is no longer accessing the network for a period of time or receive a message indicating that the SWF has finished its work, at which point I would terminate that instance of the flash player and start up a new one.

Perhaps I could use the existing flash player, but I don't want to actually start a player with a UI, I basically need to program a player with no UI, because if I'm going to be running hundreds of them on one machine, I don't need the overhead of actually rendering all the graphics. I will probably have this running on multiple machines as a distributed application.

Any thoughts?

flag

50% accept rate

3 Answers

vote up 0 vote down check

If you need real browsers (which all have Flash 10 installed), check out my company, BrowserMob. It effectively does "Selenium load testing". A lot of our customers do Flash automation using our service and it is a LOT easier than traditional protocol-level load testing.

link|flag
We talked on the phone yesterday (remember James and Jonathan?). For web-apps like mine with complex client-activity involving Flash ActionScript or AJAX, real browsers + cloud computing = accurate, easy load testing. BrowserMob is just what we needed, and I'm glad you created it. – Triynko Jul 1 at 17:13
Originally, I was using the .NET command Process.Start( @"C:\Program Files (x86)\Mozilla Firefox\firefox.exe", "my testing url") to launch one hundred tabs on my quad-core desktop. Those tests completed fine within a few seconds of each other and timing results were logged to the server by the automated flash clients, but I'm reluctant to open 5000 tabs on this one machine, even with 8GB of RAM. BrowserMob will allow me to do something similar using many more processing cores, but with many statistics available and even browser screenshots when errors occur. – Triynko Jul 1 at 17:14
vote up 2 vote down

All the server cares about is the sequence of requests, that's what you want to simulate.

If the SWF uses HTTP for its content requests, JMeter or siege would be some free tools that help with that. Otherwise there are many commercial load testing tools. I can tell you the one that my company uses costs "lots", but I tend to use JMeter or siege when I do my testing before handing off to QA.

If you are testing streaming media, that becomes a bit more complex and you will probably have to validate your system as individual components.

I suggest the Allspaw book to anyone trying to do load testing.

http://my.safaribooksonline.com/9780596518578

link|flag
No, actually the server cares about a lot more than the sequence of the requests... it cares about the content and timing of each request, because its involved in a complex communication protocol with the flash player. In other words, this cannot be simulated with a static script of HTTP requests (that would be easy). It requires dynamic communication from the actionscript-based application in the flash movie, so I actually need to simulate a bunch of running flash players with network access, minus the UI. – Triynko Jun 18 at 23:57
I need to simulate users opening a browser, navigating to a flash movie, and letting the flash plugin run the movie for a good 5 minutes so it has time to finish all its communications before the browser is closed. If I could simulate just the plugin, or a standalone player, that would be even better. The flash movie does stream media, logs loading times, and reports everything it did when finished. – Triynko Jun 19 at 0:00
I think you misunderstand. Tools like JMeter allow you to incorporate the timing and flow of the user into your test plan. – caskey Jun 19 at 0:06
@Triynko, listen to Ditto. Any decent tools lets you put modify / play with the timing of requests for your load test. – Chris Lively Jun 19 at 0:09
2  
My two cents - if the underlying Flash component does a bunch of logic that affects the network protocol traffic AND that logic is hard to reproduce with JMeter, then there is definitely a challenge. If it's trivial stuff, definitely use JMeter. If it's not (see ajaxian.com/archives/why-load-testing-ajax-is-hard/… for more info on this topic) then you might need something else. – Patrick Lightbody Jun 21 at 1:11
show 5 more comments
vote up 0 vote down

If you're convinced that nothing will work except running the flash movie, grab one of the scripts for generating browser-based screenshots like Thummer. These will load the page you give it in either Firefox or Safari, and you can tweak them to loop like crazy and allow the flash movie to run.

A UI testing tool like selenium for firefox may also work to let you script what you want to do and fire off an automated sequence.

I also agree with Ditto -- JMeter will not only simulate the requests, but give you some usable metrics when you're done. If you do it yourself with a bunch of browsers, how will you know where the bottlenecks are?

link|flag

Your Answer

Get an OpenID
or

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