1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
<?php
/**
*
* @package testing
* @copyright (c) 2008 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
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;
}
/**
* Obtain active bots
*/
public function obtain_bots()
{
return $this->data['_bots'];
}
/**
* 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',
),
);
}
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]);
}
public function check(PHPUnit_Framework_Assert $test, $data, $ignore_db_info = true)
{
$cache_data = $this->data;
if ($ignore_db_info)
{
unset($cache_data['mssqlodbc_version']);
unset($cache_data['mssql_version']);
unset($cache_data['mysql_version']);
unset($cache_data['mysqli_version']);
unset($cache_data['pgsql_version']);
unset($cache_data['sqlite_version']);
}
$test->assertEquals($data, $cache_data);
}
}
|