我正在使用PHPUnit测试用例测试模块。所有的事情都运行正常,但当我使用$_SERVER['REMOTE_ADDR']
时,它会给出致命错误并停止执行。
CategoryControllerTest.php
<?php
namespace ProductBundle\Controller\Tests\Controller;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class CategoryControllerTest extends WebTestCase {
protected function setUp() {
static::$kernel = static::createKernel();
static::$kernel->boot();
$this->container = static::$kernel->getContainer();
$this->em = static::$kernel->getContainer()->get('doctrine')->getManager();
}
public function testCategory() {
$ip_address = $_SERVER['REMOTE_ADDR'];
$client = static::createClient(
array(), array('HTTP_HOST' => static::$kernel->getContainer()->getParameter('test_http_host')
));
$crawler = $client->request('POST', '/category/new');
$client->enableProfiler();
$this->assertEquals('ProductBundle\Controller\CategoryController::addAction', $client->getRequest()->attributes->get('_controller'));
$form = $crawler->selectButton('new_category')->form();
$form['category[name]'] = "Electronics";
$form['category[id]'] = "For US";
$form['category[ip]'] = $ip_address;
$client->submit($form);
$this->assertTrue($client->getResponse()->isRedirect('/category/new')); // check if redirecting properly
$client->followRedirect();
$this->assertEquals(1, $crawler->filter('html:contains("Category Created Successfully.")')->count());
}
}
错误
有1个错误:
1)ProductBundle \ Tests \ Controller \ CategoryControllerTest :: testCategory 未定义的索引:REMOTE_ADDR
我尝试在setUp()
函数中添加它,但它不能正常工作。
答案 0 :(得分:1)
从技术上讲,您还没有向您的应用程序发送请求,因此没有要引用的远程地址。事实上,这也是你的错误告诉我们的。
解决这个问题:
将该行移至以下位置:
// Won't work, see comment below
$crawler = $client->request('POST', '/category/new');
或者您可以组成一个IP地址并进行测试。由于您只使用IP来保存模型,因此也可以使用。
与评论中提到的@apokryfos一样,在测试用例中访问超全局被认为是不好的做法。所以选项2可能是你最好的选择。
答案 1 :(得分:1)
创建返回ip地址并在测试用例中模拟服务的服务。
在此处,将控制器和服务创建为 UserIpAddress 。 get()
将返回用户的IP地址。
<强> service.yml 强>
UserIpAddress:
class: AppBundle\Controller\UserIpAddressController
arguments:
container: "@service_container"
<强> UserIpAddressController.php 强>
class UserIpAddressController
{
public function get()
{
return $_SERVER['REMOTE_ADDR'];
}
}
创建“UserIpAddress”服务的模拟。它将覆盖现有服务。使用“UserIpAddress”服务获取项目中的IP地址。
<强> CategoryControllerTest.php 强>
$UserIpAddress = $this->getMockBuilder('UserIpAddress')
->disableOriginalConstructor()
->getMock();
$UserIpAddress->expects($this->once())
->method('get')
->willReturn('192.161.1.1'); // Set ip address whatever you want to use
现在,使用$UserIpAddress->get();
答案 2 :(得分:0)
您可以创建另一个将返回服务器变量的类,然后对其进行模拟。
或者您可以直接在测试用例中设置/取消设置服务器变量。 用PHPUnit 6.2.2做到了吗?
/**
* Return true if the user agent matches a robot agent
*/
public function testShouldReturnTrueIfRobot()
{
$_SERVER['HTTP_USER_AGENT'] = 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)';
$this->configMock->method('getRobotUserAgents')
->willReturn('bot|crawl|slurp|spider|mediapartner');
$test = $this->robotTest->isBot();
static::assertTrue($test);
}
/**
* Test return false if no user agent
*/
public function testShouldReturnFalseIfNoAgentUser()
{
unset($_SERVER['HTTP_USER_AGENT']);
$test = $this->robotTest->isBot();
static::assertFalse($test);
}
经过测试的方法是:
/**
* Detect if current user agent matches a robot user agent
*
* @return bool
*/
public function isBot(): bool
{
if (empty($_SERVER['HTTP_USER_AGENT'])) {
return false;
}
$userAgents = $this->config->getRobotUserAgents();
$pattern = '/' . $userAgents . '/i';
return \preg_match($pattern, $_SERVER['HTTP_USER_AGENT']);
}