Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions cookbook/testing/simulating_authentication.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ It could become an issue especially when ``form_login`` is used, since
it requires additional requests to fill in and submit the form.

One of the solutions is to configure your firewall to use ``http_basic`` in
the test environment as explained in
:doc:`/cookbook/testing/http_authentication`.
the test environment as explained in :doc:`/cookbook/testing/http_authentication`.
Another way would be to create a token yourself and store it in a session.
While doing this, you have to make sure that an appropriate cookie is sent
with a request. The following example demonstrates this technique::
Expand Down Expand Up @@ -45,7 +44,9 @@ with a request. The following example demonstrates this technique::
{
$session = $this->client->getContainer()->get('session');

// the firewall context (defaults to the firewall name)
$firewall = 'secured_area';

$token = new UsernamePasswordToken('admin', null, $firewall, array('ROLE_ADMIN'));
$session->set('_security_'.$firewall, serialize($token));
$session->save();
Expand Down