| The Flight Loadtester | ||
|---|---|---|
| Prev | Appendix B. Future Plans / Bugs / Todo | |
Capture POST data in Flight Recorder (Muffin doesn't seem to support this)
Suport multipart/form-data encoding for file uploads
More configurability
Support authentication (Flight Recorder and Flight Simulator)
return response objects in JavaScript:
request = agent.get('/stockprice.jsp');
if (request.status != 200) print('ALERT stockprice.jsp is down!');
Provide access to entity data in JavaScript:
request = agent.get('/stockprice.jsp');
if (request.status == 200) {
var document = request.readData();
if (!new RegExp("stockprice is currently:").match(document)) {
print('ALERT stockprice.jsp is down!');
}
}
Provide access DOM / AST in JavaScript?
Investigate using Jigsaw for HTTP client API (and possibly proxy framework)
Internationalisation?