Thoughts on Testing #50
Description
Go has built in capabilities for writing unit tests, which we should start putting to use in a few weeks (?) once things are a bit further along.
We could additionally write a simple test suite harness for (say) running sqlmap against all of our web pages, with a list of every user input variable on each of the pages for iterating against.
On one hand, doing so should help us catch any problems early on.
On the other hand, having to keep a list of every user input variable updated sounds potentially error prone. From watching some real life examples of sqlmap in use though (findable on YouTube), it seems like sqlmap has some capability to automatically determine variable names. That might help balance against the error-prone nature of manually kept lists.