0

我正在尝试为我的 REST API 设置一些测试,我需要在请求对象中设置一个会话变量。通常的方法似乎不起作用。

$session = $request->getSession();              
$session->set('my_session_variable', 'myvar');
4

3 回答 3

1

你应该使用WebTestCase

然后你可以做类似问题的答案中描述的事情:how-can-i-persist-data-with-symfony2s-session-service-during-a-functional-test

所以像:

$client = static::createClient();
$container = $client->getContainer();
$session = $container->get('session');
$session->set('name', 'Sensorario');
$session->save();
于 2012-07-17T07:59:07.207 回答
1

如果您使用 WebTestCase,您可以检索“会话”服务。使用此服务,您可以:

  • 开始会话,
  • 在会话中设置一些参数,
  • 保存会话,
  • 将带有 sessionId 的 Cookie 传递给请求

代码可以如下:

use Symfony\Component\BrowserKit\Cookie;
....
....
public function testARequestWithSession()
{
    $client = static::createClient();
    $session = $client->getContainer()->get('session');
    $session->start(); // optional because the ->set() method do the start
    $session->set('my_session_variable', 'myvar'); // the session is started  here if you do not use the ->start() method
    $session->save(); // important if you want to persist the params
    $client->getCookieJar()->set(new Cookie($session->getName(), $session->getId()));  // important if you want that the request retrieve the session

    $client->request( .... ...
于 2017-09-25T13:06:15.727 回答
-1

在会话中设置一些值的简短片段

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

还有一个非常简单的例子来获取这个值

echo $session->get('name');
于 2012-07-17T00:32:45.940 回答