在测试中获取CSRF令牌,"CSRF令牌无效" - 功能性ajax测试

Ani*_*nil 5 ajax csrf symfony

我正在尝试ajax在Symfony2中测试请求.我正在编写一个单元测试,它会在我的内容中抛出以下错误app/logs/test.log:

request.CRITICAL: Uncaught PHP Exception Twig_Error_Runtime: 
"Impossible to access an attribute ("0") on a string variable 
("The CSRF token is invalid. Please try to resubmit the form.")
in .../vendor/twig/twig/lib/Twig/Template.php:388
Run Code Online (Sandbox Code Playgroud)

我的代码相当简单.

public function testAjaxJsonResponse()
{
    $form['post']['title'] = 'test title';
    $form['post']['content'] = 'test content';
    $form['post']['_token'] = $client->getContainer()->get('form.csrf_provider')->generateCsrfToken();

    $client->request('POST', '/path/to/ajax/', $form, array(), array(
        'HTTP_X-Requested-With' => 'XMLHttpRequest',
    ));

    $response = $client->getResponse();
    $this->assertSame(200, $client->getResponse()->getStatusCode());
    $this->assertSame('application/json', $response->headers->get('Content-Type'));
}
Run Code Online (Sandbox Code Playgroud)

问题似乎是CSRF令牌,我可以为测试禁用它,但我真的不想这样做,我让它通过发出2个请求(第一个加载带有表单的页面,我们抓住_token和使用with XMLHttpRequest)发出第二个请求- 这显然看起来相当愚蠢和低效!

Ani*_*nil 7

我们可以CSRF为我们的ajax请求生成自己的令牌:

$client->getContainer()->get('form.csrf_provider')->generateCsrfToken($intention);
Run Code Online (Sandbox Code Playgroud)

这里的变量$intention指的是你的数组键集Form Type Options.

添加 intention

在你的Form Type,你将需要添加的intention关键.例如:

# AcmeBundle\Form\Type\PostType.php

/**
 *  Additional fields (if you want to edit them), the values shown are the default
 * 
 * 'csrf_protection' => true,
 * 'csrf_field_name' => '_token', // This must match in your test
 *
 * @param OptionsResolverInterface $resolver
 */
public function setDefaultOptions(OptionsResolverInterface $resolver)
{
    $resolver->setDefaults(array(
        'data_class' => 'Acme\AcmeBundle\Entity\Post',
        // a unique key to help generate the secret token
        'intention' => 'post_type',
    ));
}
Run Code Online (Sandbox Code Playgroud)

阅读文档

在功能测试中生成CSRF令牌

现在我们有了intention,我们可以在单元测试中使用它来生成有效的CSRF令牌.

/**
 * Test Ajax JSON Response with CSRF Token
 * Example uses a `post` entity
 *
 * The PHP code returns `return new JsonResponse(true, 200);`
 */
public function testAjaxJsonResponse()
{
    // Form fields (make sure they pass validation!)
    $form['post']['title'] = 'test title';
    $form['post']['content'] = 'test content';

    // Create our CSRF token - with $intention = `post_type`
    $csrfToken = $client->getContainer()->get('form.csrf_provider')->generateCsrfToken('post_type');
    $form['post']['_token'] = $csrfToken; // Add it to your `csrf_field_name`

    // Simulate the ajax request
    $client->request('POST', '/path/to/ajax/', $form, array(), array(
        'HTTP_X-Requested-With' => 'XMLHttpRequest',
    ));

    // Test we get a valid JSON response
    $response = $client->getResponse();
    $this->assertSame(200, $client->getResponse()->getStatusCode());
    $this->assertSame('application/json', $response->headers->get('Content-Type'));

    // Assert the content
    $this->assertEquals('true', $response->getContent());
    $this->assertNotEmpty($client->getResponse()->getContent());
}
Run Code Online (Sandbox Code Playgroud)

  • 请注意,从 Symfony 2.3 开始,服务名称是“security.csrf.token_manager”,而不是“form.csrf_provider”。 (2认同)