我正在尝试测试我的BooksController的add方法。条件是用户需要在添加书籍之前登录。但我没有找到任何方法让用户登录测试方法。
我的代码是这样的 -
public function testAdd()
{
$user = ['email' => 'admin@example.com', 'password' => 'abcd'];
$this->post('/users/login', $user);
$book = ['title' => 'Foo', 'writer' => 'writer1', 'edition' => '2nd', 'course' => 'CSE', 'description' => 'abcd', 'price' => '200', 'status' => '0', 'user_id' => '1', 'photo' => 'abcd'];
$this->post('/books/add', $book);
$this->assertRedirect('/books');
}
断言失败,因为我被重定向到/ users / login。
我的登录方法是这样的 -
//Login Function
public function login()
{
if($this->request->session()->read('Auth.User'))
{
$this->Flash->error(__('You are already logged in.'));
return $this->redirect(['controller' => 'home','action' => 'index']);
}
if($this->request->is('post'))
{
$user = $this->Auth->identify();
if($user)
{
$this->Auth->setUser($user);
return $this->redirect($this->Auth->redirectUrl());
}
}
//In case of bad login
$this->Flash->error('You must login first.');
}
有什么方法可以解决这个问题吗? 提前谢谢!
答案 0 :(得分:3)
不是集成测试如何工作,你不应该在一个测试方法中发出多个请求,这很容易导致污染,因为会话数据,cookie,令牌配置等只是在测试后被重置方法已经运行,而不是在请求之间。
话虽这么说,模拟登录用户只需将相应的身份验证信息添加到相应的存储或请求即可。如果您正在使用会话存储,只需在向add
操作提出请求之前将信息添加到会话中:
$this->session([
'Auth' => [
'User' => [
'id' => 1,
'username' => 'foo'
// ...
]
]
]);
另见