测试Symfony2会话

时间:2014-05-20 08:45:32

标签: php session symfony testing functional-testing

以下是我的控制器代码中的操作:

//DefaultController.php
public function resultsAction(Request $request)
{
    $session = $request->getSession();
    $data = $session->get('custom_data');
    var_dump($data);
    //...
}

这是我的测试代码:

//DefaultControllerTest.php
public function setUp()
{
    $this->client = static::createClient(array(), array(
            'HTTP_USER_AGENT' => 'MySuperBrowser/1.0',
        ));
    $this->client->insulate();
    $this->client->followRedirects(true);
    $sessionMock = new MockFileSessionStorage();
    $this->session = new Session($sessionMock);
}

public function testAdslRisultati()
{
    $data = array(
        'key1' => 'val1',
        'key2' => 'val2' //etc...,
    );
    $this->session->set('custom_data', $data);
    $crawler = $this->client->request('GET', '/results');
    $this->assertTrue($crawler->filter('html:contains("text...")')->count() > 0);
}

当我执行测试时,控制器中$ data的值始终为空。如何从测试中保存会话中的任何数据并从控制器重试?

//config_test.yml
framework:
test: ~
session:
    storage_id: session.storage.mock_file

非常感谢

1 个答案:

答案 0 :(得分:0)

您可以从客户端

中的容器获取会话存储空间

例如:

$this->client->getContainer()->get('session')->set('foo_bar', 'Bar');

注意:客户端中的容器仅用于一个请求($client->request())。