PHPUnit测试添加操作 - 测试失败

时间:2018-06-05 15:17:21

标签: phpunit cakephp-3.0

CakePHP版本:3.5.17
PHPUnit:6.5.8

示例代码:

用户控制器添加操作。 (代码有哪些错误。)

public function add()
{
    $user = $this->Users->newEntity();
    if ($this->request->is('post')) {

        // Initialise the client id.  
        if ($this->clientId() === false) {
            //$errorLocation = 'Users Controller - Line ' .  __LINE__;
            //if ($this->recordError($errorLocation) === false) {
                //throw new UnauthorizedException();
            //}
            //throw new UnauthorizedException();  
        }
        else {
           $clientID = $this->clientId(); 
        } 

        $user = $this->Users->patchEntity($user, $this->request->getData());

        // Declare the client id for save.
        $user->cid_1 = $clientID;

        if ($this->Users->save($user)) {
            $this->Flash->success(__('The user has been saved.'));
            return $this->redirect(['action' => 'index']);
        }
        $this->Flash->error(__('The user could not be saved. Please, try again.'));
    }
}

客户端ID功能。

public function clientId()
{
    $session = $this->request->session();
    if ($session->check('Cid.one')) {
        $clientID = $session->read('Cid.one');
        if (!is_string($clientID) || is_numeric($clientID) || (strlen($clientID) !== 40)) {
            return false;
        }
        return $clientID;
    }
    return false;
}

流程。

当用户登录时,我选择$ clientID并将其存储在会话中,并在应用程序中的许多select语句中使用它。

错误

未定义的变量clientID - EG:未从保存错误的函数中检索客户端ID。

概要

这对我有意义,因为我可以在不登录的情况下运行单元测试,并在登录时检索客户端ID。 EG:测试时客户端ID如何存在!

我的解决方案。

不使用会话,而是使用finder,如下所示。

用户控制器添加操作。 (通过的代码。)

public function add()
{
    $user = $this->Users->newEntity();
    if ($this->request->is('post')) {

        // Declare the id from auth component.
        $id = $this->Auth->user('id');

        // Select the client id. 
        $query = $this->Users->find('cid', [
            'id' => $id
        ]);

        if ($query->isEmpty()) {
            $errorLocation = 'Users Controller - Line ' .  __LINE__;
            if ($this->recordError($errorLocation) === false) {
                throw new NotFoundException();
            }
            throw new NotFoundException();
        }

        // Initialise the variables and retrieve the data.
        $clientID = '';
        foreach ($query as $row):                           
           $clientID = $row->cid_1;
        endforeach;

        $user = $this->Users->patchEntity($user, $this->request->getData());

        // Declare the client id for save.
        $user->cid_1 = $clientID;

        if ($this->Users->save($user)) {
            $this->Flash->success(__('The user has been saved.'));
            return $this->redirect(['action' => 'index']);
        }
        $this->Flash->error(__('The user could not be saved. Please, try again.'));
    }
}

我的问题:

有没有办法从会话中模拟$ clientID进行测试?

我想知道是否有类似于使用的内容:$ this-> session(['Auth.User.id'=> 1400]);在我的测试中模拟了一个 经过身份验证的用户,但对于其他会话数据,例如客户端ID?

为什么我要问。

这与性能有关。据我所知,从会话中声明一个值比从数据库中选择一个值更快。

谢谢Z。

1 个答案:

答案 0 :(得分:1)

Testing Actions That Require Authentication上的手册部分显示了如何在会话中设置变量。但它不仅限于Auth部分;在测试代​​码中,您可以设置所需的任何所需会话变量。在你的情况下:

$this->session(['Cid.one' => XXX]);