2011-01-04 17:14:36 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @package testing
|
|
|
|
* @copyright (c) 2008 phpBB Group
|
2011-12-31 16:05:02 +00:00
|
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
2011-01-04 17:14:36 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
class phpbb_mock_cache
|
|
|
|
{
|
|
|
|
public function __construct($data = array())
|
|
|
|
{
|
|
|
|
$this->data = $data;
|
|
|
|
|
|
|
|
if (!isset($this->data['_bots']))
|
|
|
|
{
|
|
|
|
$this->data['_bots'] = array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function get($var_name)
|
|
|
|
{
|
|
|
|
if (isset($this->data[$var_name]))
|
|
|
|
{
|
|
|
|
return $this->data[$var_name];
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function put($var_name, $var, $ttl = 0)
|
|
|
|
{
|
|
|
|
$this->data[$var_name] = $var;
|
|
|
|
}
|
|
|
|
|
2012-12-06 23:42:13 -05:00
|
|
|
public function destroy($var_name, $table = '')
|
|
|
|
{
|
|
|
|
if ($table)
|
|
|
|
{
|
|
|
|
throw new Exception('Destroying tables is not implemented yet');
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($this->data[$var_name]);
|
|
|
|
}
|
|
|
|
|
2011-01-04 17:14:36 +01:00
|
|
|
/**
|
|
|
|
* Obtain active bots
|
|
|
|
*/
|
|
|
|
public function obtain_bots()
|
|
|
|
{
|
|
|
|
return $this->data['_bots'];
|
|
|
|
}
|
2012-12-06 23:42:13 -05:00
|
|
|
|
2011-08-22 15:35:47 +01:00
|
|
|
/**
|
|
|
|
* Obtain list of word censors. We don't need to parse them here,
|
|
|
|
* that is tested elsewhere.
|
|
|
|
*/
|
|
|
|
public function obtain_word_list()
|
|
|
|
{
|
|
|
|
return array(
|
|
|
|
'match' => array(
|
|
|
|
'#(?<![\\p{Nd}\\p{L}_-])([\\p{Nd}\\p{L}_-]*?badword1[\\p{Nd}\\p{L}_-]*?)(?![\\p{Nd}\\p{L}_-])#iu',
|
|
|
|
'#(?<![\\p{Nd}\\p{L}_-])([\\p{Nd}\\p{L}_-]*?badword2)(?![\\p{Nd}\\p{L}_-])#iu',
|
|
|
|
'#(?<![\\p{Nd}\\p{L}_-])(badword3[\\p{Nd}\\p{L}_-]*?)(?![\\p{Nd}\\p{L}_-])#iu',
|
|
|
|
'#(?<![\\p{Nd}\\p{L}_-])(badword4)(?![\\p{Nd}\\p{L}_-])#iu',
|
|
|
|
),
|
|
|
|
'replace' => array(
|
|
|
|
'replacement1',
|
|
|
|
'replacement2',
|
|
|
|
'replacement3',
|
|
|
|
'replacement4',
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2011-01-04 17:14:36 +01:00
|
|
|
|
2013-05-30 16:05:19 +02:00
|
|
|
/**
|
|
|
|
* Obtain disallowed usernames. Input data via standard put method.
|
|
|
|
*/
|
|
|
|
public function obtain_disallowed_usernames()
|
|
|
|
{
|
|
|
|
if (($usernames = $this->get('_disallowed_usernames')) !== false)
|
|
|
|
{
|
|
|
|
return $usernames;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-01-04 17:14:36 +01:00
|
|
|
public function set_bots($bots)
|
|
|
|
{
|
|
|
|
$this->data['_bots'] = $bots;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function checkVar(PHPUnit_Framework_Assert $test, $var_name, $data)
|
|
|
|
{
|
|
|
|
$test->assertTrue(isset($this->data[$var_name]));
|
|
|
|
$test->assertEquals($data, $this->data[$var_name]);
|
|
|
|
}
|
|
|
|
|
2011-02-27 22:17:03 +01:00
|
|
|
public function check(PHPUnit_Framework_Assert $test, $data, $ignore_db_info = true)
|
2011-01-04 17:14:36 +01:00
|
|
|
{
|
2011-02-27 22:17:03 +01:00
|
|
|
$cache_data = $this->data;
|
|
|
|
|
|
|
|
if ($ignore_db_info)
|
|
|
|
{
|
2011-03-12 15:26:09 +01:00
|
|
|
unset($cache_data['mssqlodbc_version']);
|
|
|
|
unset($cache_data['mssql_version']);
|
|
|
|
unset($cache_data['mysql_version']);
|
2011-02-27 22:17:03 +01:00
|
|
|
unset($cache_data['mysqli_version']);
|
2011-03-12 15:26:09 +01:00
|
|
|
unset($cache_data['pgsql_version']);
|
|
|
|
unset($cache_data['sqlite_version']);
|
2011-02-27 22:17:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$test->assertEquals($data, $cache_data);
|
2011-01-04 17:14:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|