6

我已经看到很多关于如何在响应上设置标头的示例,但我找不到检查响应标头的方法。

例如在一个测试用例中,我有:

public function testGetJson()
{
    $response = $this->action('GET', 'LocationTypeController@index', null, array('Accept' => 'application/json'));
    $this->assertResponseStatus(200);
    //some code here to test that the response content-type is 'application/json'
}

public function testGetXml()
{
    $response = $this->action('GET', 'LocationTypeController@index', null, array('Accept' => 'text/xml'));
    $this->assertResponseStatus(200);
    //some code here to test that the response content-type is 'text/xml'
}

我将如何测试内容类型标头是“应用程序/json”或任何其他内容类型?也许我误解了什么?

我拥有的控制器可以使用 Accept 标头进行内容否定,我想确保响应中的内容类型是正确的。

谢谢!

4

4 回答 4

10

在对 Symfony 和 Laravel 文档进行了一些挖掘之后,我能够弄清楚......

public function testGetJson()
{
    // Symfony interally prefixes headers with "HTTP", so 
    // just Accept would not work.  I also had the method signature wrong...
    $response = $this->action('GET', 'LocationTypeController@index',
        array(), array(), array(), array('HTTP_Accept' => 'application/json'));
    $this->assertResponseStatus(200);
    // I just needed to access the public
    // headers var (which is a Symfony ResponseHeaderBag object)
    $this->assertEquals('application/json', 
        $response->headers->get('Content-Type'));
}
于 2013-11-06T19:06:47.437 回答
3

虽然不是专门关于测试,但获取 Laravel 响应对象的一个​​好方法是注册一个“完成”回调。这些是在响应交付后、应用关闭之前执行的。回调接收请求和响应对象作为参数。

App::finish(function($request, $response) {
    if (Str::contains($response->headers->get('content-type'), 'text/xml') {
        // Response is XML
    }    
}
于 2014-03-18T02:58:38.847 回答
1

看一下laravel 文档

Request::header('accept');  // or
Response::header('accept');

检索请求标头

$value = Request::header('Content-Type');

另一种方法是使用getallheaders()

var_dump(getallheaders());

// array(8) {
//   ["Accept"]=>
//   string(63) "text/html[...]"
//   ["Accept-Charset"]=> ...
于 2013-11-06T19:00:42.253 回答
1

出于调试目的您可以简单地使用它:

var_dump($response->headers);
于 2014-12-02T13:23:30.103 回答