我想我必须在这里向我的问题寻求一些帮助。我已经花了整个晚上的时间。我有一个这样的登录方法UsersController
:
public function login() {
if ( $this->request->is( 'post' ) ) {
if ( $this->Auth->login() ) {
$this->redirect( array( 'controller' => 'reservations', 'action' => 'index' ) );
} else {
$this->Session->setFlash( __( 'Login error.' ), 'flashError' );
}
}
}
我尝试使用PHPUnit对此进行测试,因此我可以确定只有有效用户才能登录 → 成功登录后,他们将被重定向到特定页面。这是我testLogin
在UsersControllerTest
课堂上的方法:
function testLogin() {
$UsersController = $this->generate( 'Users', array(
'components' => array(
'Auth' => array( 'user' )
),
)
);
$UsersController->Auth->expects( $this->any() )
->method( 'user' )
->with( 'id' )
->will( $this->returnValue( 2 ) );
$data = array( 'User' => array(
'student_number' => 1111111,
'password' => 'qwerty'
) );
//$UsersController->Auth->login( $data['User'] );
$this->testAction( '/users/login', array( 'data' => $data, 'method' => 'get' ) );
$url = parse_url( $this->headers['Location'] );
$this->assertEquals( $url['path'], '/reservations' );
}
我仍在学习使用 CakePHP 进行单元测试的基础知识。我收到此错误:
PHPUNIT_FRAMEWORK_ERROR_NOTICE
Undefined index: Location
Test case: UsersControllerTest(testLogin)
我不知道是什么原因造成的......我的测试方法有什么问题以及应该如何编写?
谢谢!