0

我目前正在测试一个简单地按给定 id 搜索记录的应用程序。它工作正常,但测试拒绝返回代码中的响应。奇怪的是它只显示在 CLI 中。

我正在使用 cakephp 提供的 phpunit:

"phpunit/phpunit": "^5.7|^6.0"

这是冲突的代码:

 $this->post('/comunas/findByBarrio',[
        'barrio_id'=>1
 ]);
 var_dump($this->_response->body());die(); //This is just a test which always returns NULL... while the CLI shows the actual response, which is a JSON.

在对任何其他操作执行 GET 或 POST 时也会出现同样的问题。但这里是目标控制器的代码:

public function findByBarrio()
{
    $this->autoRender = false;
    if ($this->request->is('POST'))
    {
        $data = $this->request->getData();
        if (!empty($data['barrio_id']))
        {
            $this->loadModel('Comuna');

            $barrio_id = $data['barrio_id'];

            $comuna = $this->Comuna->find('list',['conditions' => ['barrio_id'=>$barrio_id]])
                ->hydrate(false)
                ->toArray();
            if ($comuna)
            {
                echo json_encode($comuna);
            }
            else
            {
                throw new NotFoundException('0');
                //echo 0; //Comuna no encontrada para el barrio recibido
            }               
        }
        else
        {
            echo -1;
        }
    }
}

先感谢您!

更新 1:我只能通过在“$this->post”方法周围使用“ob_start()”和“ob_get_clean()”来获得输出。我希望有一个更清洁的方式虽然......

更新2:现在它正在工作!只需使用符合 PSR-7 的接口即可。谢谢!这是修正后的控制器:

public function findByBarrio()
{
    $this->autoRender = false;

    $this->response = $this->response->withType('json'); //CORRECTION

    if ($this->request->is('POST'))
    {
        $data = $this->request->getData();
        if (!empty($data['barrio_id']))
        {
            $this->loadModel('Comuna');

            $barrio_id = $data['barrio_id'];

            $comuna = $this->Comuna->find('list',['conditions' => ['barrio_id'=>$barrio_id]])
                ->hydrate(false)
                ->toArray();
            if ($comuna)
            {
                $json = json_encode($comuna);

                $this->response->getBody()->write($json); //CORRECTION

            }
            else
            {
                //Comuna no encontrada para el barrio recibido
                $this->response->getBody()->write(0); //CORRECTION
            }               
        }
        else
        {
            //No se recibió el barrio
            $this->response->getBody()->write(-1); //CORRECTION
        }
    }

    return $this->response; //CORRECTION
}
4

1 回答 1

1

控制器操作不应该回显数据,即使它可能在某些情况下工作,甚至可能在大多数情况下。输出不是来自渲染视图模板的数据的正确方法是配置并返回响应对象,或者使用序列化视图。

测试环境依赖于正确执行此操作,因为它不会缓冲可能的输出,但会使用控制器操作返回的实际值。

以下基本上是来自https://stackoverflow.com/a/42379581/1392379的副本


从文档中引用:

控制器操作通常用于Controller::set()创建 View 用来呈现视图层的上下文。由于 CakePHP 使用的约定,您不需要手动创建和呈现视图。相反,一旦控制器动作完成,CakePHP 将处理呈现和交付视图。

如果出于某种原因您想跳过默认行为,您可以Cake\Network\Response从操作中返回一个带有完全创建响应的对象。

* 从 3.4 开始,这将是\Cake\Http\Response

食谱 > 控制器 > 控制器动作

配置响应

使用 PSR-7 兼容接口

$content = json_encode($comuna);

$this->response->getBody()->write($content);
$this->response = $this->response->withType('json');
// ...

return $this->response;

PSR-7 兼容接口使用不可变方法,因此使用withType(). 与设置标头和内容不同,通过写入现有流来更改正文不会更改响应对象的状态。

CakePHP 3.4.3 将添加一个不可变的withStringBody方法,该方法可用于替代写入现有流。

$this->response = $this->response->withStringBody($content);

使用已弃用的接口

$content = json_encode($comuna);

$this->response->body($content);
$this->response->type('json');
// ...

return $this->response;

使用序列化视图

$content = json_encode($comuna);

$this->set('content', $content);
$this->set('_serialize', 'content');

这还需要使用请求处理程序组件,并启用扩展解析和使用.json附加的相应 URL,或发送带有application/json接受标头的正确请求。

也可以看看

于 2017-03-15T20:23:25.980 回答