Symfony单元测试:添加/修改表单操作


symfony unit tests: add/modify form action

我有一个表单,没有操作(用javascript提交),我正在尝试为它编写一个单元测试,但它失败了,因为缺少"action"属性:

InvalidArgumentException:当前 URI 必须是绝对 URL (")。

有没有办法在单元测试中添加它或使用爬虫修改 html 内容?

<form id="form_search_page">
    <input type="text" name="keyword" value="" />
    <button type="submit" name="searchBtn" id="searchBtn">Search</button>
</form>

$client = $this->makeClient(true);
$url = $this->createRoute("page_index"));
$crawler = $client->request('GET', $url);
$response = $client->getResponse();
$form = $crawler->filter('#form_search_page')->form();
$params = array(
    "form[text]" => "dummy title"
);
$form->setValues($params);
$crawler = $client->submit($form);
$response = $client->getResponse();
$this->assertGreaterThan(0, $crawler->filter('.pages li')->count());

我找到了解决方案:

$crawler
    ->filter('form#form_search_page')
    ->reduce(function (Crawler $form) use ($router) {
        $url = $router->generate('search_page', array(), true);
        $node = $form->getNode(0);
        if (!$node->hasAttribute('action')){
            $node->setAttribute('action', $url);
            $node->setAttribute('method', 'POST');
            return true;
        }
        return false;
    })
    ->first();

您可以测试ajax POST表单提交,如上例所示(假设表单具有CSRF令牌):

$crawler = $this->client->request('GET', $url);
// retrieves the form token
$token = $crawler->filter('[name="myform[_token]"]')->attr("value");
$posturl = $this->client->getContainer()->get('router')->generate("the-url-of-the-submit");
// makes the POST request
$crawler = $this->client->request('POST', $posturl, array(
    'myform' => array(
        '_token' => $token
    )),
    array(),
    array(
        'HTTP_X-Requested-With' => 'XMLHttpRequest',
    )
);
$this->assertTrue(
    $this->client->getResponse()->headers->contains(
        'Content-Type',
        'application/json'
    )
);

希望这个帮助

这是最简单的方法:

        $client = static::createClient();
        $crawler = $client->request('GET', '/contacts');
        $buttonCrawlerNode = $crawler->selectButton('submit');
        // Select the form that contains this button
        $form = $buttonCrawlerNode->form();
        // Modify the attribute action
        $form->getNode(0)->setAttribute('action', 'new-action-url');
        ...