Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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');
share|improve this question

2 Answers

A short snippet to set some value in session

$session = $this->getRequest()->getSession();
$session->set('name', 'Sensorario');

And a very very simple example to get this value

echo $session->get('name');
share|improve this answer
doesn't work... I have to manually create the request variable as it's coming from CLI – greg Jul 17 '12 at 0:36

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:

$client = static::createClient();
$container = $client->getContainer();
$session = $container->get('session');
$session->set('name', 'Sensorario');
$session->save();
share|improve this answer
Thanks for the response, I've tried that and read that article but I still get this: Fatal error: Call to a member function getContainer() on a non-object – greg Jul 17 '12 at 17:06
Do your test class extends this one github.com/symfony/symfony/blob/master/src/Symfony/Bundle/… ? – l3l0 Jul 17 '12 at 19:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.