Hi,
I'm playing with Windmill (similar to selenium) with is fun but one of the requirements is that is must be run over http. The project I'm working on is a fat client web app, all of our unit tests are just run on the local file system as there is no need for HTTP as all of the data services are mocked.
So basically what I'm looking for is a very light weight http server which will only be used for serving static files. I want to be able to write a simple bash script, that starts the web server, then runs the selenium test, then shuts down the webserver.
Something that is a single file would also be nice. I see there are a lot of options but I'm spoiled for choice, so was looking for recommendations.
Regards,
Chris
Edit: Ideally this should be a cross platform solution
Edit: Sorry to extend further, I would love a single file which I could drop in any folder then just call $someApp start and it starts serving those files on one of the localhost ports