I have an application written in Yii 1.1.8.
I am currently developing a set of unit tests to cover user access rights. I am using yii-rights module and I discovered one odd thing about it.
Yii::app()->user->checkAccess($operation)
always returns false in unit tests (not when running app in the borwser).
I found a kind of a workaround, I am calling the
Yii::app()->getAuthManager()->checkAccess($operation, $userId)
to check access for authenticated user, but there is one problem - I have some authItems that Guest users need to have access to. And my tests are failing, because Guest user has no id, so I can't call CheckAccess() from CDbAuthManager class. checkAccess() from CWebUser also fails because of some bug.
Before every test I call the authentication code and it works - access is granted (or rejected, depending on rights config) for authenticated users properly and Yii::app()->user is set properly too.
So my question is: how can I make Yii::app()->user->checkAccess($operation) work in unit tests, or is there any way to get some kind of id of guest user to use the other checkAccess() function? Or is there any other way of checking access that I don'tknow about?