2

我试图在我的一个控制器中测试授权,以确保只有特定类型的用户才能访问某些操作。但是在运行测试时从不调用 AppController 上的 isAuthorized() 方法。该方法如下所示:

public function isAuthorized($user = null){
    if(!isset($this->request->params['admin'])){
        return true;
    }

    return in_array($user['role'], array('admin', 'root'));
}

我的测试功能:

public function testArticlesIndex() {
    $this->generate('Articles', array(
        'components' => array('Auth')
    ));

    $this->testAction('/admin/articles', array('return' => 'view'));
    $this->assertEmpty($this->view);
}

我尝试了很多东西来模拟 AuthComponent 而不是模拟它。我无法重现这种情况,这需要 isAuthorized(),其中具有管理员或 root 以外角色的用户尝试访问管理员上的操作并失败。

4

1 回答 1

0

当您在未定义要模拟的方法的情况下模拟 Auth 组件时,默认情况下,所有方法都会被模拟。解决方案是模拟您希望模拟的特定 AuthComponent 方法:

 $this->generate('Articles', array(
   'components' => array(
     'Auth' => array(
       'redirect' // only mocks AuthComponent::redirect()
     )
   )
 ));

从书中:

您可以选择不向整个类传递方法来存根整个类,例如上面示例中的 Session。

见:http ://book.cakephp.org/2.0/en/development/testing.html#using-mocks-with-testaction

于 2013-07-09T19:19:21.267 回答