在扩展WebTestCase的测试中,我想测试一些东西,这取决于传递GET参数。
可以在此处找到POST参数的解决方案: Symfony2 Functional test: Passing form data directly
但是如果我将这个模拟用于GET则不起作用。
测试代码:
// given
$client = static::createClient();
$paramValue = 'frwkuh437iwaw';
// when
$client->request(
'GET',
'/',
['paramName' => $paramValue],
[],
[
'HTTP_Host' => 'boys2go.com',
'REMOTE_ADDR' => '127.0.0.1',
'HTTP_X-FORWARDED-FOR' => '127.0.0.1',
]
);
在课堂上进行评估的部分:
$crossSaleParametersValue = $requestStack
->getCurrentRequest()
->query->get('paramName');
if (!empty($crossSaleParametersValue)) {
echo 'crossSale';
}
有人知道如何传递我的GET参数吗?
在' /'之后添加它们的肮脏尝试并不工作。
如何将我的GET参数输入我的测试?
答案 0 :(得分:2)
解决方案可能是:
// Preferable, write this method in a parent class (that extends abstract
// class WebTestCase) to be used in other tests too
protected static function getUrl($route, $params = array())
{
return self::getKernel()->getContainer()->get('router')->generate($route, $params, UrlGeneratorInterface::ABSOLUTE_URL);
}
public function testDemo() {
$client = static::createClient();
$paramValue = 'frwkuh437iwaw';
$url = $this->getUrl('route_name');
// when
$client->request(
'GET',
$url . '?paramName=' . $paramValue,
[],
[],
[
'HTTP_Host' => 'boys2go.com',
'REMOTE_ADDR' => '127.0.0.1',
'HTTP_X-FORWARDED-FOR' => '127.0.0.1',
]
);
}