I'm trying to set up some testing for my REST API and I need to set a session variable inside the request object. The usual methods do not seem to work.
$session = $request->getSession();
$session->set('my_session_variable', 'myvar');
|
I'm trying to set up some testing for my REST API and I need to set a session variable inside the request object. The usual methods do not seem to work.
|
|||
|
|
|
A short snippet to set some value in session
And a very very simple example to get this value
|
|||
|
|
You should use WebTestCase Then you can do things which are described in answer for similar question: how-can-i-persist-data-with-symfony2s-session-service-during-a-functional-test so something like:
|
|||||
|