本文整理匯總了PHP中phpbb\auth\auth::expects方法的典型用法代碼示例。如果您正苦於以下問題:PHP auth::expects方法的具體用法?PHP auth::expects怎麽用?PHP auth::expects使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類phpbb\auth\auth
的用法示例。
在下文中一共展示了auth::expects方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: test_rename
public function test_rename()
{
global $table_prefix;
// uses auth, so we set up the mock/stub
// to allow reading first forum
$this->auth->expects($this->once())->method('acl_getf')->with($this->equalTo('f_read'))->willReturn(array(1 => array('f_read' => true)));
$sql_array = array('tag' => 'tag1');
$result = $this->db->sql_query('SELECT COUNT(*) as count
FROM ' . $table_prefix . tables::TAGS . '
WHERE ' . $this->db->sql_build_array('SELECT', $sql_array));
$count = $this->db->sql_fetchfield('count');
$this->assertEquals(1, $count);
$sql_array = array('tag' => 'newtagname');
$result = $this->db->sql_query('SELECT COUNT(*) as count
FROM ' . $table_prefix . tables::TAGS . '
WHERE ' . $this->db->sql_build_array('SELECT', $sql_array));
$count = $this->db->sql_fetchfield('count');
$this->assertEquals(0, $count);
$tag_id = 1;
$new_name_clean = "newtagname";
$assigned_count = $this->tags_manager->rename($tag_id, $new_name_clean);
$this->assertEquals(1, $assigned_count);
$sql_array = array('tag' => 'tag1');
$result = $this->db->sql_query('SELECT COUNT(*) as count
FROM ' . $table_prefix . tables::TAGS . '
WHERE ' . $this->db->sql_build_array('SELECT', $sql_array));
$count = $this->db->sql_fetchfield('count');
$this->assertEquals(0, $count);
$sql_array = array('tag' => 'newtagname');
$result = $this->db->sql_query('SELECT COUNT(*) as count
FROM ' . $table_prefix . tables::TAGS . '
WHERE ' . $this->db->sql_build_array('SELECT', $sql_array));
$count = $this->db->sql_fetchfield('count');
$this->assertEquals(1, $count);
}