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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
require_once __DIR__ . '/../../../phpBB/includes/functions.php';
require_once __DIR__ . '/../../../phpBB/includes/functions_content.php';
require_once __DIR__ . '/../../test_framework/phpbb_database_test_case.php';
class phpbb_textformatter_s9e_factory_test extends phpbb_database_test_case
{
public function getDataSet()
{
return $this->createXMLDataSet(__DIR__ . '/fixtures/factory.xml');
}
public function get_cache_dir()
{
return __DIR__ . '/../../tmp/';
}
public function get_factory()
{
global $phpbb_root_path;
$this->cache = new phpbb_mock_cache;
$dal = new \phpbb\textformatter\data_access(
$this->new_dbal(),
'phpbb_bbcodes',
'phpbb_smilies',
'phpbb_styles',
'phpbb_words',
$phpbb_root_path . 'styles/'
);
$factory = new \phpbb\textformatter\s9e\factory(
$dal,
$this->cache,
$this->get_cache_dir(),
'_foo_parser',
'_foo_renderer'
);
return $factory;
}
public function test_get_configurator()
{
$configurator = $this->get_factory()->get_configurator();
$this->assertInstanceOf('s9e\\TextFormatter\\Configurator', $configurator);
$this->assertTrue(isset($configurator->plugins['Autoemail']));
$this->assertTrue(isset($configurator->plugins['Autolink']));
$this->assertTrue(isset($configurator->BBCodes['B']));
$this->assertTrue(isset($configurator->BBCodes['CODE']));
$this->assertTrue(isset($configurator->BBCodes['COLOR']));
$this->assertTrue(isset($configurator->BBCodes['EMAIL']));
$this->assertTrue(isset($configurator->BBCodes['FLASH']));
$this->assertTrue(isset($configurator->BBCodes['I']));
$this->assertTrue(isset($configurator->BBCodes['IMG']));
$this->assertTrue(isset($configurator->BBCodes['LIST']));
$this->assertTrue(isset($configurator->BBCodes['*']));
$this->assertTrue(isset($configurator->BBCodes['QUOTE']));
$this->assertTrue(isset($configurator->BBCodes['SIZE']));
$this->assertTrue(isset($configurator->BBCodes['U']));
$this->assertTrue(isset($configurator->BBCodes['URL']));
// This custom BBCode should be set
$this->assertTrue(isset($configurator->BBCodes['CUSTOM']));
// This unsafe custom BBCode will trigger an exception and should be ignored
$this->assertFalse(isset($configurator->BBCodes['UNSAFE']));
$this->assertTrue(isset($configurator->Emoticons[':D']));
}
public function test_regenerate()
{
extract($this->get_factory()->regenerate());
$this->assertInstanceOf('s9e\\TextFormatter\\Parser', $parser);
$this->assertInstanceOf('s9e\\TextFormatter\\Renderer', $renderer);
$renderer_data = $this->cache->get('_foo_renderer');
$this->assertEquals($parser, $this->cache->get('_foo_parser'), 'The parser was not cached');
$this->assertEquals(get_class($renderer), $renderer_data['class']);
$this->assertEquals(serialize($renderer), $renderer_data['renderer']);
$this->assertInstanceOf('s9e\\TextFormatter\\Plugins\\Censor\\Helper', $renderer_data['censor']);
$file = $this->get_cache_dir() . get_class($renderer) . '.php';
$this->assertFileExists($file);
unlink($file);
}
public function test_tidy()
{
$factory = $this->get_factory();
// Create a fake "old" cache file
$old_file = $this->get_cache_dir() . 's9e_foo.php';
touch($old_file);
// Create a current renderer
extract($factory->regenerate());
$new_file = $this->get_cache_dir() . get_class($renderer) . '.php';
// Tidy the cache
$factory->tidy();
$this->assertFileExists($new_file, 'The current renderer has been deleted');
$this->assertFileNotExists($old_file, 'The old renderer has not been deleted');
unlink($new_file);
}
public function test_local_url()
{
global $config, $user, $request;
$config = array(
'force_server_vars' => true,
'server_protocol' => 'http://',
'server_name' => 'path',
'server_port' => 80,
'script_path' => '/to',
'cookie_secure' => false
);
$user = new phpbb_mock_user;
$request = new phpbb_mock_request;
$fixture = __DIR__ . '/fixtures/local_url.xml';
$renderer = $this->get_test_case_helpers()->set_s9e_services(null, $fixture)->get('text_formatter.renderer');
$this->assertSame(
'<a href="http://path/to/foo">http://path/to/foo</a>',
$renderer->render('<r><LOCAL content="foo"><s>[local]</s>foo<e>[/local]</e></LOCAL></r>')
);
}
public function test_smilies_special_chars()
{
// Use a smiley that contains every special chars in every field
$fixture = __DIR__ . '/fixtures/smilies_special_chars.xml';
$renderer = $this->get_test_case_helpers()->set_s9e_services(null, $fixture)->get('text_formatter.renderer');
$this->assertSame(
'<img class="smilies" src="phpBB/images/smilies/%22%27%3C&%3E.png" alt=""\'<&>" title=""\'<&>">',
$renderer->render('<r><E>"\'<&></E></r>')
);
}
/**
* @testdox {INTTEXT} is supported in custom BBCodes
*/
public function test_inttext_token()
{
$fixture = __DIR__ . '/fixtures/inttext_token.xml';
$container = $this->get_test_case_helpers()->set_s9e_services(null, $fixture);
$parser = $container->get('text_formatter.parser');
$renderer = $container->get('text_formatter.renderer');
$original = '[spoiler=ɎɆS]text[/spoiler]';
$expected = '<div class="spoiler"><div class="title">ɎɆS</div><div class="content">text</div></div>';
$this->assertSame($expected, $renderer->render($parser->parse($original)));
$original = '[spoiler=N:O:P:E]text[/spoiler]';
$expected = $original;
$this->assertSame($expected, $renderer->render($parser->parse($original)));
}
}
|