I'm writing tests for my current project, made with Zend Framework. Everything fine, but I have a problem testing the logged users actions/controllers: I need to be logged in to be able to perform the action/controller. So my question is: How can I be logged in in PHPUnit? thans for reading :)
|
As you are saying you want to test actions/controllers, I suppose you are not writting unit-tests, but functional/integration tests -- ie, working with Here is a test-function I used in a project, where I'm testing if logging in is OK :
Simply : I'm loading the login form, extracting the CSRF token, populating the form, and posting it. Then, I can test if I'm connected.
|
|||||||
|
|
There is another way. On my |
|||||||
|
|
I think this article could help you: http://perevodik.net/en/posts/7/ It describes how to create a fake identity you can use to set the environment to a state equivalent to a user being logged in. |
|||
|
|