mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/13803] Added tests, fixed param order in generate_text_for_storage()
PHPBB3-13803
This commit is contained in:
parent
986af43f37
commit
b5911281ae
5 changed files with 135 additions and 22 deletions
|
@ -63,8 +63,8 @@ abstract class base implements reparser_interface
|
||||||
$bitfield,
|
$bitfield,
|
||||||
$flags,
|
$flags,
|
||||||
$unparsed['enable_bbcode'],
|
$unparsed['enable_bbcode'],
|
||||||
$unparsed['enable_smilies'],
|
$unparsed['enable_magic_url'],
|
||||||
$unparsed['enable_magic_url']
|
$unparsed['enable_smilies']
|
||||||
);
|
);
|
||||||
|
|
||||||
// Save the new text if it has changed
|
// Save the new text if it has changed
|
||||||
|
|
|
@ -15,6 +15,38 @@ namespace phpbb\textreparser\plugins;
|
||||||
|
|
||||||
class user_signature extends \phpbb\textreparser\row_based_plugin
|
class user_signature extends \phpbb\textreparser\row_based_plugin
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* @var array Bit numbers used for user options
|
||||||
|
* @see \phpbb\user
|
||||||
|
*/
|
||||||
|
protected $keyoptions;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
*
|
||||||
|
* Retrieves and saves the bit numbers used for user options
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$class_vars = get_class_vars('phpbb\\user');
|
||||||
|
$this->keyoptions = $class_vars['keyoptions'];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
protected function add_missing_fields(array $row)
|
||||||
|
{
|
||||||
|
$options = $row['user_options'];
|
||||||
|
$row += array(
|
||||||
|
'enable_bbcode' => phpbb_optionget($this->keyoptions['sig_bbcode'], $options),
|
||||||
|
'enable_smilies' => phpbb_optionget($this->keyoptions['sig_smilies'], $options),
|
||||||
|
'enable_magic_url' => phpbb_optionget($this->keyoptions['sig_links'], $options),
|
||||||
|
);
|
||||||
|
|
||||||
|
return $row;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
|
@ -24,6 +56,7 @@ class user_signature extends \phpbb\textreparser\row_based_plugin
|
||||||
'id' => 'user_id',
|
'id' => 'user_id',
|
||||||
'text' => 'user_sig',
|
'text' => 'user_sig',
|
||||||
'bbcode_uid' => 'user_sig_bbcode_uid',
|
'bbcode_uid' => 'user_sig_bbcode_uid',
|
||||||
|
'user_options' => 'user_options',
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -44,6 +44,29 @@ abstract class row_based_plugin extends base
|
||||||
*/
|
*/
|
||||||
abstract protected function get_table_name();
|
abstract protected function get_table_name();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add fields to given row, if applicable
|
||||||
|
*
|
||||||
|
* The enable_* fields are not always saved to the database. Sometimes we need to guess their
|
||||||
|
* original value based on the text content or possibly other fields
|
||||||
|
*
|
||||||
|
* @param array $row Original row
|
||||||
|
* @return array Complete row
|
||||||
|
*/
|
||||||
|
protected function add_missing_fields(array $row)
|
||||||
|
{
|
||||||
|
if (!isset($row['enable_bbcode'], $row['enable_smilies'], $row['enable_magic_url']))
|
||||||
|
{
|
||||||
|
$row += array(
|
||||||
|
'enable_bbcode' => !empty($row['bbcode_uid']),
|
||||||
|
'enable_smilies' => (strpos($row['text'], '<!-- s') !== false),
|
||||||
|
'enable_magic_url' => (strpos($row['text'], '<!-- m -->') !== false),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $row;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
|
@ -67,16 +90,7 @@ abstract class row_based_plugin extends base
|
||||||
$result = $this->db->sql_query($this->get_records_query($min_id, $max_id));
|
$result = $this->db->sql_query($this->get_records_query($min_id, $max_id));
|
||||||
while ($row = $this->db->sql_fetchrow($result))
|
while ($row = $this->db->sql_fetchrow($result))
|
||||||
{
|
{
|
||||||
if (!isset($row['enable_bbcode'], $row['enable_smilies'], $row['enable_magic_url']))
|
$records[] = $this->add_missing_fields($row);
|
||||||
{
|
|
||||||
// Those fields are not saved to the database, we need to guess their original value
|
|
||||||
$row += array(
|
|
||||||
'enable_bbcode' => !empty($row['bbcode_uid']),
|
|
||||||
'enable_smilies' => (strpos($row['text'], '<!-- s') !== false),
|
|
||||||
'enable_magic_url' => (strpos($row['text'], '<!-- m -->') !== false)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$records[] = $row;
|
|
||||||
}
|
}
|
||||||
$this->db->sql_freeresult($result);
|
$this->db->sql_freeresult($result);
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,47 @@
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
<value>1</value>
|
<value>1</value>
|
||||||
<value>Plain text</value>
|
<value>This post should be [b]ignored[/b]</value>
|
||||||
|
<value>abcd1234</value>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>2</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>[b]Not bold[/b] :) http://example.org</value>
|
||||||
|
<value>abcd1234</value>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>3</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>[b:abcd1234]Bold[/b:abcd1234] :) http://example.org</value>
|
||||||
|
<value>abcd1234</value>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>4</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value><![CDATA[[b]Not bold[/b] <!-- s:) --><img src="{SMILIES_PATH}/icon_e_smile.gif" alt=":)" title="Smile" /><!-- s:) --> http://example.org]]></value>
|
||||||
|
<value>abcd1234</value>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>5</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value><![CDATA[[b]Not bold[/b] :) <!-- m --><a class="postlink" href="http://example.org">http://example.org</a><!-- m -->]]></value>
|
||||||
|
<value>abcd1234</value>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>1000</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>This post should be [b]ignored[/b]</value>
|
||||||
<value>abcd1234</value>
|
<value>abcd1234</value>
|
||||||
</row>
|
</row>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -40,9 +40,15 @@ class phpbb_textreparser_post_text_test extends phpbb_database_test_case
|
||||||
$db = $this->new_dbal();
|
$db = $this->new_dbal();
|
||||||
$reparser = new \phpbb\textreparser\plugins\post_text($db);
|
$reparser = new \phpbb\textreparser\plugins\post_text($db);
|
||||||
$reparser->reparse_range($min_id, $max_id);
|
$reparser->reparse_range($min_id, $max_id);
|
||||||
|
|
||||||
|
$post_ids = array();
|
||||||
|
foreach ($expected as $row)
|
||||||
|
{
|
||||||
|
$post_ids[] = $row['post_id'];
|
||||||
|
}
|
||||||
$sql = 'SELECT post_id, post_text
|
$sql = 'SELECT post_id, post_text
|
||||||
FROM ' . POSTS_TABLE . "
|
FROM ' . POSTS_TABLE . '
|
||||||
WHERE post_id BETWEEN $min_id AND $max_id";
|
WHERE ' . $db->sql_in_set('post_id', $post_ids);
|
||||||
$result = $db->sql_query($sql);
|
$result = $db->sql_query($sql);
|
||||||
$rows = $db->sql_fetchrowset($result);
|
$rows = $db->sql_fetchrowset($result);
|
||||||
$db->sql_freeresult($result);
|
$db->sql_freeresult($result);
|
||||||
|
@ -53,13 +59,33 @@ class phpbb_textreparser_post_text_test extends phpbb_database_test_case
|
||||||
{
|
{
|
||||||
return array(
|
return array(
|
||||||
array(
|
array(
|
||||||
1,
|
2,
|
||||||
1,
|
5,
|
||||||
array(
|
array(
|
||||||
array(
|
array(
|
||||||
'post_id' => 1,
|
'post_id' => 1,
|
||||||
'post_text' => '<t>Plain text</t>'
|
'post_text' => 'This post should be [b]ignored[/b]',
|
||||||
)
|
),
|
||||||
|
array(
|
||||||
|
'post_id' => 2,
|
||||||
|
'post_text' => '<t>[b]Not bold[/b] :) http://example.org</t>',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'post_id' => 3,
|
||||||
|
'post_text' => '<r><B><s>[b]</s>Bold<e>[/b]</e></B> :) http://example.org</r>',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'post_id' => 4,
|
||||||
|
'post_text' => '<r>[b]Not bold[/b] <E>:)</E> http://example.org</r>',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'post_id' => 5,
|
||||||
|
'post_text' => '<r>[b]Not bold[/b] :) <URL url="http://example.org">http://example.org</URL></r>',
|
||||||
|
),
|
||||||
|
array(
|
||||||
|
'post_id' => 1000,
|
||||||
|
'post_text' => 'This post should be [b]ignored[/b]',
|
||||||
|
),
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue