当我对会员控制器的注册操作进行单元测试时,如何断言在我的会员测试数据库中创建了新记录?
我正在尝试使用getLastInsertID,但我不知道如何加载Member模型来进行调用。
我已经对我的会员模型进行了测试,其中包括注册和激活,但是当我完成激活过程时出现错误。我想在控制器中使用测试来验证是否可以注册新成员,然后使用两个测试激活。
更新
我将App::uses('Member', 'Model');
添加到我的Controller测试中,还添加了
public function setUp() {
parent::setUp();
$this->Member = ClassRegistry::init('Member');
}
在函数testRegister中我有:
$data = array(
'Member' => array(
'first_name' => 'Foo',
'last_name' => 'Bar',
'email' => 'foobar@example.org',
'password' => 'password',
'password_confirmation' => 'password',
'security_question' => 0, // Your father's middle name?
'security_answer' => 'Randolf the great',
),
);
$result = $this->testAction(
'/Members/register',
array('data' => $data, 'method' => 'post')
);
debug($result);
$this->assertTrue($this->Member->validationErrors);
$this->assertTrue($this->Member->getLastInsertId());
断言显示“无法断言array()为真”和“无法断言null为真”。
答案 0 :(得分:0)
我能够在$this->vars
中找到足够的信息来查找我的模型记录。现在一切都在测试。