我正在尝试使用PHPUnit编写一些Symfony2功能测试,模拟通过AJAX调用请求某些资源的登录用户。
该测试首先模拟用户使用标准FOSUserBundle登录表单登录;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class MyWebTestCase extends WebTestCase {
public function login($username, $password = 'password')
{
$client = static::createClient();
$client->followRedirects(true);
$crawler = $client->request('GET', '/login');
$form = $crawler->selectButton('Login')->form(array(
'_username' => $username,
'_password' => $password,
));
$crawler = $client->submit($form);
return $client;
}
}
然后,测试从数据库中获取实体并将其设置在会话变量中,然后发送POST请求以检索所请求的资源,使用一些JSON,其中包含有关所请求内容的额外信息(在实际应用程序中,一些JavaScript组成JSON以响应用户的操作,然后通过AJAX提交;
$this->client = $this->login('user@domain.com', 'password');
// we want element number 6 from the fixtures
$chart = $this->em->getRepository('MyBundle:Element')->find(6);
$guid = $chart->getGuid();
$this->client->getContainer()->get('session')->set($guid, $chart);
$link = sprintf('/viewer/data/%d/%s', 1, $guid);
$crawler = $this->client->request('POST', $link, array(), array(),
array('CONTENT_TYPE' => 'application/json'),
'{"filters":[]}');
当测试达到这一点时,会产生错误;
ini_set(): A session is active. You cannot change the session module's ini settings at this time
我正在使用Symfony 2.6.5和PHPUnit 4.5.0
答案 0 :(得分:1)
您是否使用模拟会话进行测试?如果不试试这个。
framework:
test: ~
session:
storage_id: session.storage.mock_file
本机会话存储旨在处理每个进程的单个请求,这可能会导致您的错误。如果是你的情况。