Tag Archives: Testing

Recording HTTP requests and response for replay and comparison

I’ve been trying to locate an existing tool that will record bunch of HTTP requests I make through my browser along with the responses, and then later run through though same requests again and verify the responses are identical to … Continue reading

Posted in Web development | Tagged , , , , , , | 3 Comments

Grey box testing web applications deployed to Google App Engine

Last post I stated: Due GAE’s limitations on CPU time/cycles and an overall maximum limit of 10 seconds to fulfill a request a non-trivial set of unit tests will exceed the quotas if they are all run at the same … Continue reading

Posted in Coding, Web development | Tagged , , , , , , , , , | Leave a comment

Unit testing web applications deployed to Google AppEngine

While the GAE SDK does provide the ability to run your web application locally, I’ve found that that the SDK’s local datastore doesn’t work precisely the same as the real one. Specially I’ve found that the local one is more … Continue reading

Posted in Coding, Web development | Tagged , , , , , , , , , , , , | 2 Comments