I know how to run functional/integration tests in Rails, this question is about best practices. Let s say authorization is performed using four distinct user roles:
- basic
- editor
- admin
- super
This means that for each action there are up to five different behaviors possible (4 roles + unauthenticated/anonymous). One approach I ve taken is to test every role on every action, for example:
test_edit_by_anonymous_user
test_edit_by_basic_user
test_edit_by_editor_user
test_edit_by_admin_user
test_edit_by_super_user
But this obviously leads to a lot of tests (every controller action on the site really needs to be tested five times). The opposite approach would be to test the authorization mechanism in isolation and then authenticate as super before testing every action (on setup), and only test one version of each page.
I ve tried several approaches with varying degrees of specificity but haven t been completely satisfied with anything. I feel more comfortable when I m testing more cases, but the amount of test code and difficulty of abstraction has been a turn-off. Does anyone have an approach to this problem that they re satisfied with?