gpt4 book ai didi

testing - symfony WebTestCase 客户端不发送发布数据

转载 作者:行者123 更新时间:2023-11-28 19:56:37 24 4
gpt4 key购买 nike

我目前正在为我的 symfony 应用程序编写功能测试。我将 symfony 3 (3.1.6) 与 phpunit 5.6.1 一起使用。编辑:根据 Alvin Bunk 的要求,我的应用程序不是网站,它是一个仅返回 JSON 的 API。正如我在下面的两个更新中添加的那样,Symfony 测试客户端发送一个带有表单数据的正确请求对象,但应用程序的 Controller 收到一个空对象。

这是我用来测试表单的代码:

public function testSaveMediaFromMediaUrl()
{
$client = static::createClient();
$crawler = $client->request('GET', '/form');

$form = $crawler->selectButton('OK')->form();
$form['mediaUrl'] = 'http://example.com';

$client->submit($form);
var_dump($client->getResponse()->getContent());
}

调用了我的 Controller 的正确操作,但是当从测试套件调用操作时,请求对象中没有任何内容。使用普通的网络浏览器,一切正常。在 Controller 中,我使用 $request = Request::createFromGlobals(); 创建请求对象

我也试过这段代码来发布数据,我得到了相同的结果: Controller 中没有收到 POST 数据。

不使用表单直接发布请求

public function testSaveMediaFromMediaUrl()
{
$client = static::createClient();
$crawler = $client->request('POST', '/media', ['mediaUrl' => 'http://example.com']);

var_dump($crawler->html());
}

在提交方法中添加数据

public function testSaveMediaFromMediaUrl()
{
$client = static::createClient();
$crawler = $client->request('GET', '/form');

$form = $crawler->selectButton('OK')->form();

$client->submit($form, ['mediaUrl' => 'http://example.com']);
var_dump($client->getResponse()->getContent());
}

我做错了什么吗?

编辑:

这是我在 Controller 操作中获得的请求对象的转储。

.object(Symfony\Component\HttpFoundation\Request)#1047 (21) {
["attributes"]=>
object(Symfony\Component\HttpFoundation\ParameterBag)#1050 (1) {
["parameters":protected]=>
array(0) {
}
}
["request"]=>
object(Symfony\Component\HttpFoundation\ParameterBag)#1048 (1) {
["parameters":protected]=>
array(0) {
}
}
["query"]=>
object(Symfony\Component\HttpFoundation\ParameterBag)#1049 (1) {
["parameters":protected]=>
array(0) {
}
}
["server"]=>
object(Symfony\Component\HttpFoundation\ServerBag)#1053 (1) {
["parameters":protected]=>
array(35) {[...]}
}
["files"]=>
object(Symfony\Component\HttpFoundation\FileBag)#1052 (1) {
["parameters":protected]=>
array(0) {
}
}
["cookies"]=>
object(Symfony\Component\HttpFoundation\ParameterBag)#1051 (1) {
["parameters":protected]=>
array(0) {
}
}
["headers"]=>
object(Symfony\Component\HttpFoundation\HeaderBag)#1054 (2) {
["headers":protected]=>
array(0) {
}
["cacheControl":protected]=>
array(0) {
}
}
["content":protected]=>
NULL
["languages":protected]=>
NULL
["charsets":protected]=>
NULL
["encodings":protected]=>
NULL
["acceptableContentTypes":protected]=>
NULL
["pathInfo":protected]=>
NULL
["requestUri":protected]=>
NULL
["baseUrl":protected]=>
NULL
["basePath":protected]=>
NULL
["method":protected]=>
NULL
["format":protected]=>
NULL
["session":protected]=>
NULL
["locale":protected]=>
NULL
["defaultLocale":protected]=>
string(2) "en"
}

编辑2:

这是客户端发送的请求对象的转储(在测试用例中:var_dump($client->getRequest()->request);):

object(Symfony\Component\HttpFoundation\ParameterBag)#753 (1) {
["parameters":protected]=>
array(4) {
["mediaUrl"]=>
string(41) "http://example.com"
["url"]=>
string(0) ""
["token"]=>
string(0) ""
["sizes"]=>
string(0) ""
}
}

“测试浏览器”似乎将表单数据发送到应用程序...

最佳答案

问题解决了:

在我的 Controller 中,我使用了文档中所写的 $request = Request::createFromGlobals()。我删除了这一行并添加了 $request 作为 Controller 操作的参数,现在请求包含测试客户端发送的 POST 数据。

我的 Action 现在定义如下:

public function generateAction(Request $request) {
// no more $request = Request::createFromGlobals();
$request->request->get('mediaUrl'); // contains data
}

关于testing - symfony WebTestCase 客户端不发送发布数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40528437/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com