symfony unit tests: add/modify form action

假如想象 提交于 2020-01-04 04:30:09

问题


I have a form, without action (is submitted with javascript) and I'm trying to write a unit test for it, but it fails because "action" attribute is missing:

InvalidArgumentException : Current URI must be an absolute URL ("").

There is a way to do add it in unit tests or modify the html content using the crawler?

<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());

回答1:


I found the solution:

$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();



回答2:


You could test a ajax POST form submit as example above (Assuming a form with a CSRF token):

$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'
    )
);

Hope this help



来源:https://stackoverflow.com/questions/28027417/symfony-unit-tests-add-modify-form-action

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!