mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 22:38:52 +00:00
[ticket/8323] dataProvider for the test; better test data
PHPBB3-8323
This commit is contained in:
parent
4ab07aa45e
commit
b3dae8fd61
2 changed files with 23 additions and 7 deletions
|
@ -29,5 +29,10 @@
|
||||||
<value>0</value>
|
<value>0</value>
|
||||||
<value>999999999999999999999</value>
|
<value>999999999999999999999</value>
|
||||||
</row>
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>6</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>3</value>
|
||||||
|
</row>
|
||||||
</table>
|
</table>
|
||||||
</dataset>
|
</dataset>
|
||||||
|
|
|
@ -16,18 +16,29 @@ class phpbb_get_banned_user_ids_test extends phpbb_database_test_case
|
||||||
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/banned_users.xml');
|
return $this->createXMLDataSet(dirname(__FILE__) . '/fixtures/banned_users.xml');
|
||||||
}
|
}
|
||||||
|
|
||||||
public function test_phpbb_get_banned_user_ids()
|
public function phpbb_get_banned_user_ids_data()
|
||||||
|
{
|
||||||
|
return array(
|
||||||
|
array(array(array(1, 2, 4, 5, 6), true), array(2 => 2, 5 => 5)),
|
||||||
|
array(array(array(1, 2, 4, 5, 6), false), array(2 => 2)),
|
||||||
|
array(array(array(1, 2, 4, 5, 6), 2), array(2 => 2, 5 => 5, 6 => 6)),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
{
|
{
|
||||||
global $db;
|
global $db;
|
||||||
|
|
||||||
$db = $this->new_dbal();
|
$db = $this->new_dbal();
|
||||||
|
|
||||||
$user_ids = array(1, 2, 4, 5);
|
return parent::setUp();
|
||||||
|
}
|
||||||
|
|
||||||
$this->assertEquals(phpbb_get_banned_user_ids($user_ids, true), array(2 => 2, 5 => 5));
|
/**
|
||||||
|
* @dataProvider phpbb_get_banned_user_ids_data
|
||||||
$this->assertEquals(phpbb_get_banned_user_ids($user_ids, false), array(2 => 2));
|
*/
|
||||||
|
public function test_phpbb_get_banned_user_ids($input, $expected)
|
||||||
$this->assertEquals(phpbb_get_banned_user_ids($user_ids, 2), array(2 => 2, 5 => 5));
|
{
|
||||||
|
$this->assertEquals($expected, call_user_func_array('phpbb_get_banned_user_ids', $input));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue