11

嗨,我使用 phpunit 进行测试,使用 Symfony\Bundle\FrameworkBundle\Test\WebTestCase 进行单元测试。到目前为止没有问题,但现在我们开始使用 https,我的测试不再工作了。我开始为我的测试中的每个请求获取 301 响应代码。我的问题是我如何告诉 Symfony\Component\HttpKernel\Client 向 https://localhost.com/uri而不是http://localhost.com/uri发出请求?

编辑

在 symfony 网站http://symfony.com/doc/current/book/testing.html他们展示了如何配置服务器参数并且有一个代码和平像

$client->request(
 'GET',
 '/demo/hello/Fabien',
 array(),
 array(),
 array(
     'CONTENT_TYPE'          => 'application/json',
     'HTTP_REFERER'          => '/foo/bar',
     'HTTP_X-Requested-With' => 'XMLHttpRequest',
 )
);

我试图给http://php.net/manual/en/reserved.variables.server.php中提到的 HTTPS 元素将我的代码更改为

$client->request('GET',
         '/'.$version.'/agencies/'.$agencyId,
         array(), 
         array(),
         array('HTTPS' => 'on')
         );

但是,它仍然无法正常工作?

4

2 回答 2

17

感谢@WouterJ,我将我的客户创建从:

static::createClient();

到:

static::createClient(array(),array('HTTPS' => true));

它解决了我的问题。事实证明,我不能在客户端->请求中给出 HTTP_HOST 和 HTTPS 参数。它应该在客户端创建时确定。

于 2013-11-04T08:11:06.663 回答
-1

我正在使用 Symfony4,这就是我创建功能测试的方式。我已经测试了以下代码,它工作正常。

namespace App\Tests\Controller;

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;

class CategoryControllerTest extends WebTestCase
{
    public function testList()
    {
       $client = static::createClient(); 

       $client->request('GET', '/category/list');

       $this->assertEquals(200, $client->getResponse()->getStatusCode());
    }
}
于 2018-10-15T03:17:07.797 回答