mirror of
https://github.com/ezyang/htmlpurifier.git
synced 2024-12-22 08:21:52 +00:00
[2.0.1] Implement haphazard error collection for AttrValidator.
- Error collector / Language can take arrays and listify them - AttrValidator takes token by reference - Formatted errors now have their severity <strong> - 100 test-cases! W00t! git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1250 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
parent
a005da8a4c
commit
3a1d505b3d
4
NEWS
4
NEWS
@ -18,8 +18,8 @@ NEWS ( CHANGELOG and HISTORY ) HTMLPurifier
|
|||||||
! Newlines normalized internally, and then converted back to the
|
! Newlines normalized internally, and then converted back to the
|
||||||
value of PHP_EOL. If this is not desired, set your newline format
|
value of PHP_EOL. If this is not desired, set your newline format
|
||||||
using %Output.Newline.
|
using %Output.Newline.
|
||||||
! Beta error collection, messages are implemented for Lexer and
|
! Beta error collection, messages are implemented for the most generic
|
||||||
RemoveForeignElements
|
cases involving Lexing or Strategies
|
||||||
- Clean up special case code for <script> tags
|
- Clean up special case code for <script> tags
|
||||||
- Reorder includes for DefinitionCache decorators, fixes a possible
|
- Reorder includes for DefinitionCache decorators, fixes a possible
|
||||||
missing class error
|
missing class error
|
||||||
|
BIN
art/100cases.png
Normal file
BIN
art/100cases.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.7 KiB |
@ -1,12 +1,31 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Validates the attributes of a token. Doesn't manage required attributes
|
||||||
|
* very well. The only reason we factored this out was because RemoveForeignElements
|
||||||
|
* also needed it besides ValidateAttributes.
|
||||||
|
*/
|
||||||
class HTMLPurifier_AttrValidator
|
class HTMLPurifier_AttrValidator
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
function validateToken($token, &$config, &$context) {
|
* Validates the attributes of a token, returning a modified token
|
||||||
|
* that has valid tokens
|
||||||
|
* @param $token Reference to token to validate. We require a reference
|
||||||
|
* because the operation this class performs on the token are
|
||||||
|
* not atomic, so the context CurrentToken to be updated
|
||||||
|
* throughout
|
||||||
|
* @param $config Instance of HTMLPurifier_Config
|
||||||
|
* @param $context Instance of HTMLPurifier_Context
|
||||||
|
*/
|
||||||
|
function validateToken(&$token, &$config, &$context) {
|
||||||
|
|
||||||
$definition = $config->getHTMLDefinition();
|
$definition = $config->getHTMLDefinition();
|
||||||
|
$e =& $context->get('ErrorCollector', true);
|
||||||
|
|
||||||
|
// initialize CurrentToken if necessary
|
||||||
|
$current_token =& $context->get('CurrentToken', true);
|
||||||
|
if (!$current_token) $context->register('CurrentToken', $token);
|
||||||
|
|
||||||
if ($token->type !== 'start' && $token->type !== 'empty') return $token;
|
if ($token->type !== 'start' && $token->type !== 'empty') return $token;
|
||||||
|
|
||||||
@ -14,21 +33,21 @@ class HTMLPurifier_AttrValidator
|
|||||||
// DEFINITION CALL
|
// DEFINITION CALL
|
||||||
$d_defs = $definition->info_global_attr;
|
$d_defs = $definition->info_global_attr;
|
||||||
|
|
||||||
// copy out attributes for easy manipulation
|
// reference attributes for easy manipulation
|
||||||
$attr = $token->attr;
|
$attr =& $token->attr;
|
||||||
|
|
||||||
// do global transformations (pre)
|
// do global transformations (pre)
|
||||||
// nothing currently utilizes this
|
// nothing currently utilizes this
|
||||||
foreach ($definition->info_attr_transform_pre as $transform) {
|
foreach ($definition->info_attr_transform_pre as $transform) {
|
||||||
$attr = $transform->transform($attr, $config, $context);
|
$attr = $transform->transform($o = $attr, $config, $context);
|
||||||
|
if ($e && ($attr != $o)) $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// do local transformations only applicable to this element (pre)
|
// do local transformations only applicable to this element (pre)
|
||||||
// ex. <p align="right"> to <p style="text-align:right;">
|
// ex. <p align="right"> to <p style="text-align:right;">
|
||||||
foreach ($definition->info[$token->name]->attr_transform_pre
|
foreach ($definition->info[$token->name]->attr_transform_pre as $transform) {
|
||||||
as $transform
|
$attr = $transform->transform($o = $attr, $config, $context);
|
||||||
) {
|
if ($e && ($attr != $o)) $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
|
||||||
$attr = $transform->transform($attr, $config, $context);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// create alias to this element's attribute definition array, see
|
// create alias to this element's attribute definition array, see
|
||||||
@ -36,6 +55,9 @@ class HTMLPurifier_AttrValidator
|
|||||||
// DEFINITION CALL
|
// DEFINITION CALL
|
||||||
$defs = $definition->info[$token->name]->attr;
|
$defs = $definition->info[$token->name]->attr;
|
||||||
|
|
||||||
|
$attr_key = false;
|
||||||
|
$context->register('CurrentAttr', $attr_key);
|
||||||
|
|
||||||
// iterate through all the attribute keypairs
|
// iterate through all the attribute keypairs
|
||||||
// Watch out for name collisions: $key has previously been used
|
// Watch out for name collisions: $key has previously been used
|
||||||
foreach ($attr as $attr_key => $value) {
|
foreach ($attr as $attr_key => $value) {
|
||||||
@ -69,9 +91,17 @@ class HTMLPurifier_AttrValidator
|
|||||||
|
|
||||||
// put the results into effect
|
// put the results into effect
|
||||||
if ($result === false || $result === null) {
|
if ($result === false || $result === null) {
|
||||||
|
// this is a generic error message that should replaced
|
||||||
|
// with more specific ones when possible
|
||||||
|
if ($e) $e->send(E_ERROR, 'AttrValidator: Attribute removed');
|
||||||
|
|
||||||
// remove the attribute
|
// remove the attribute
|
||||||
unset($attr[$attr_key]);
|
unset($attr[$attr_key]);
|
||||||
} elseif (is_string($result)) {
|
} elseif (is_string($result)) {
|
||||||
|
// generally, if a substitution is happening, there
|
||||||
|
// was some sort of implicit correction going on. We'll
|
||||||
|
// delegate it to the attribute classes to say exactly what.
|
||||||
|
|
||||||
// simple substitution
|
// simple substitution
|
||||||
$attr[$attr_key] = $result;
|
$attr[$attr_key] = $result;
|
||||||
}
|
}
|
||||||
@ -83,21 +113,24 @@ class HTMLPurifier_AttrValidator
|
|||||||
// others would prepend themselves).
|
// others would prepend themselves).
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$context->destroy('CurrentAttr');
|
||||||
|
|
||||||
// post transforms
|
// post transforms
|
||||||
|
|
||||||
// ex. <x lang="fr"> to <x lang="fr" xml:lang="fr">
|
// global (error reporting untested)
|
||||||
foreach ($definition->info_attr_transform_post as $transform) {
|
foreach ($definition->info_attr_transform_post as $transform) {
|
||||||
$attr = $transform->transform($attr, $config, $context);
|
$attr = $transform->transform($o = $attr, $config, $context);
|
||||||
|
if ($e && ($attr != $o)) $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ex. <bdo> to <bdo dir="ltr">
|
// local (error reporting untested)
|
||||||
foreach ($definition->info[$token->name]->attr_transform_post as $transform) {
|
foreach ($definition->info[$token->name]->attr_transform_post as $transform) {
|
||||||
$attr = $transform->transform($attr, $config, $context);
|
$attr = $transform->transform($o = $attr, $config, $context);
|
||||||
|
if ($e && ($attr != $o)) $e->send(E_NOTICE, 'AttrValidator: Attributes transformed', $o, $attr);
|
||||||
}
|
}
|
||||||
|
|
||||||
// commit changes
|
// destroy CurrentToken if we made it ourselves
|
||||||
$token->attr = $attr;
|
if (!$current_token) $context->destroy('CurrentToken');
|
||||||
return $token;
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,9 +26,10 @@ class HTMLPurifier_ErrorCollector
|
|||||||
* @param $severity int Error severity, PHP error style (don't use E_USER_)
|
* @param $severity int Error severity, PHP error style (don't use E_USER_)
|
||||||
* @param $msg string Error message text
|
* @param $msg string Error message text
|
||||||
*/
|
*/
|
||||||
function send($severity, $msg, $args = array()) {
|
function send($severity, $msg) {
|
||||||
|
|
||||||
if (!is_array($args)) {
|
$args = array();
|
||||||
|
if (func_num_args() > 2) {
|
||||||
$args = func_get_args();
|
$args = func_get_args();
|
||||||
array_shift($args);
|
array_shift($args);
|
||||||
unset($args[0]);
|
unset($args[0]);
|
||||||
@ -94,7 +95,7 @@ class HTMLPurifier_ErrorCollector
|
|||||||
foreach ($errors as $error) {
|
foreach ($errors as $error) {
|
||||||
list($line, $severity, $msg) = $error;
|
list($line, $severity, $msg) = $error;
|
||||||
$string = '';
|
$string = '';
|
||||||
$string .= $this->locale->getErrorName($severity) . ': ';
|
$string .= '<strong>' . $this->locale->getErrorName($severity) . '</strong>: ';
|
||||||
$string .= $this->generator->escape($msg);
|
$string .= $this->generator->escape($msg);
|
||||||
if ($line) {
|
if ($line) {
|
||||||
// have javascript link generation that causes
|
// have javascript link generation that causes
|
||||||
|
@ -78,6 +78,25 @@ class HTMLPurifier_Language
|
|||||||
return $this->errorNames[$int];
|
return $this->errorNames[$int];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Converts an array list into a string readable representation
|
||||||
|
*/
|
||||||
|
function listify($array) {
|
||||||
|
$sep = $this->getMessage('Item separator');
|
||||||
|
$sep_last = $this->getMessage('Item separator last');
|
||||||
|
$ret = '';
|
||||||
|
for ($i = 0, $c = count($array); $i < $c; $i++) {
|
||||||
|
if ($i == 0) {
|
||||||
|
} elseif ($i + 1 < $c) {
|
||||||
|
$ret .= $sep;
|
||||||
|
} else {
|
||||||
|
$ret .= $sep_last;
|
||||||
|
}
|
||||||
|
$ret .= $array[$i];
|
||||||
|
}
|
||||||
|
return $ret;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Formats a localised message with passed parameters
|
* Formats a localised message with passed parameters
|
||||||
* @param $key string identifier of message
|
* @param $key string identifier of message
|
||||||
@ -94,9 +113,9 @@ class HTMLPurifier_Language
|
|||||||
$generator = false;
|
$generator = false;
|
||||||
foreach ($args as $i => $value) {
|
foreach ($args as $i => $value) {
|
||||||
if (is_object($value)) {
|
if (is_object($value)) {
|
||||||
// complicated stuff
|
if (is_a($value, 'HTMLPurifier_Token')) {
|
||||||
|
// factor this out some time
|
||||||
if (!$generator) $generator = $this->context->get('Generator');
|
if (!$generator) $generator = $this->context->get('Generator');
|
||||||
// assuming it's a token
|
|
||||||
if (isset($value->name)) $subst['$'.$i.'.Name'] = $value->name;
|
if (isset($value->name)) $subst['$'.$i.'.Name'] = $value->name;
|
||||||
if (isset($value->data)) $subst['$'.$i.'.Data'] = $value->data;
|
if (isset($value->data)) $subst['$'.$i.'.Data'] = $value->data;
|
||||||
$subst['$'.$i.'.Compact'] =
|
$subst['$'.$i.'.Compact'] =
|
||||||
@ -110,6 +129,19 @@ class HTMLPurifier_Language
|
|||||||
$subst['$'.$i.'.Compact'] = $generator->generateFromToken($stripped_token);
|
$subst['$'.$i.'.Compact'] = $generator->generateFromToken($stripped_token);
|
||||||
}
|
}
|
||||||
$subst['$'.$i.'.Line'] = $value->line ? $value->line : 'unknown';
|
$subst['$'.$i.'.Line'] = $value->line ? $value->line : 'unknown';
|
||||||
|
}
|
||||||
|
continue;
|
||||||
|
} elseif (is_array($value)) {
|
||||||
|
$keys = array_keys($value);
|
||||||
|
if (array_keys($keys) === $keys) {
|
||||||
|
// list
|
||||||
|
$subst['$'.$i] = $this->listify($value);
|
||||||
|
} else {
|
||||||
|
// associative array
|
||||||
|
// no $i implementation yet, sorry
|
||||||
|
$subst['$'.$i.'.Keys'] = $this->listify($keys);
|
||||||
|
$subst['$'.$i.'.Values'] = $this->listify(array_values($value));
|
||||||
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$subst['$' . $i] = $value;
|
$subst['$' . $i] = $value;
|
||||||
|
@ -5,7 +5,14 @@ $fallback = false;
|
|||||||
$messages = array(
|
$messages = array(
|
||||||
|
|
||||||
'HTMLPurifier' => 'HTML Purifier',
|
'HTMLPurifier' => 'HTML Purifier',
|
||||||
'LanguageFactoryTest: Pizza' => 'Pizza', // for unit testing purposes
|
|
||||||
|
// for unit testing purposes
|
||||||
|
'LanguageFactoryTest: Pizza' => 'Pizza',
|
||||||
|
'LanguageTest: List' => '$1',
|
||||||
|
'LanguageTest: Hash' => '$1.Keys; $1.Values',
|
||||||
|
|
||||||
|
'Item separator' => ', ',
|
||||||
|
'Item separator last' => ' and ', // non-Harvard style
|
||||||
|
|
||||||
'ErrorCollector: No errors' => 'No errors detected. However, because error reporting is still incomplete, there may have been errors that the error collector was not notified of; please inspect the output HTML carefully.',
|
'ErrorCollector: No errors' => 'No errors detected. However, because error reporting is still incomplete, there may have been errors that the error collector was not notified of; please inspect the output HTML carefully.',
|
||||||
'ErrorCollector: At line' => ' at line $line',
|
'ErrorCollector: At line' => ' at line $line',
|
||||||
@ -37,6 +44,9 @@ $messages = array(
|
|||||||
'Strategy_FixNesting: Node reorganized' => 'Contents of $CurrentToken.Compact node reorganized to enforce its content model',
|
'Strategy_FixNesting: Node reorganized' => 'Contents of $CurrentToken.Compact node reorganized to enforce its content model',
|
||||||
'Strategy_FixNesting: Node contents removed' => 'Contents of $CurrentToken.Compact node removed',
|
'Strategy_FixNesting: Node contents removed' => 'Contents of $CurrentToken.Compact node removed',
|
||||||
|
|
||||||
|
'AttrValidator: Attributes transformed' => 'Attributes on $CurrentToken.Compact transformed from $1.Keys to $2.Keys',
|
||||||
|
'AttrValidator: Attribute removed' => '$CurrentAttr.Name attribute on $CurrentToken.Compact removed',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
$errorNames = array(
|
$errorNames = array(
|
||||||
|
@ -91,7 +91,7 @@ class HTMLPurifier_Strategy_RemoveForeignElements extends HTMLPurifier_Strategy
|
|||||||
$definition->info[$token->name]->required_attr &&
|
$definition->info[$token->name]->required_attr &&
|
||||||
($token->name != 'img' || $remove_invalid_img) // ensure config option still works
|
($token->name != 'img' || $remove_invalid_img) // ensure config option still works
|
||||||
) {
|
) {
|
||||||
$token = $attr_validator->validateToken($token, $config, $context);
|
$attr_validator->validateToken($token, $config, $context);
|
||||||
$ok = true;
|
$ok = true;
|
||||||
foreach ($definition->info[$token->name]->required_attr as $name) {
|
foreach ($definition->info[$token->name]->required_attr as $name) {
|
||||||
if (!isset($token->attr[$name])) {
|
if (!isset($token->attr[$name])) {
|
||||||
|
@ -27,6 +27,9 @@ class HTMLPurifier_Strategy_ValidateAttributes extends HTMLPurifier_Strategy
|
|||||||
// setup validator
|
// setup validator
|
||||||
$validator = new HTMLPurifier_AttrValidator();
|
$validator = new HTMLPurifier_AttrValidator();
|
||||||
|
|
||||||
|
$token = false;
|
||||||
|
$context->register('CurrentToken', $token);
|
||||||
|
|
||||||
foreach ($tokens as $key => $token) {
|
foreach ($tokens as $key => $token) {
|
||||||
|
|
||||||
// only process tokens that have attributes,
|
// only process tokens that have attributes,
|
||||||
@ -36,7 +39,8 @@ class HTMLPurifier_Strategy_ValidateAttributes extends HTMLPurifier_Strategy
|
|||||||
// skip tokens that are armored
|
// skip tokens that are armored
|
||||||
if (!empty($token->armor['ValidateAttributes'])) continue;
|
if (!empty($token->armor['ValidateAttributes'])) continue;
|
||||||
|
|
||||||
$tokens[$key] = $validator->validateToken($token, $config, $context);
|
// note that we have no facilities here for removing tokens
|
||||||
|
$validator->validateToken($token, $config, $context);
|
||||||
}
|
}
|
||||||
|
|
||||||
$context->destroy('IDAccumulator');
|
$context->destroy('IDAccumulator');
|
||||||
|
50
tests/HTMLPurifier/AttrValidator_ErrorsTest.php
Normal file
50
tests/HTMLPurifier/AttrValidator_ErrorsTest.php
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
require_once 'HTMLPurifier/ErrorsHarness.php';
|
||||||
|
require_once 'HTMLPurifier/AttrValidator.php';
|
||||||
|
|
||||||
|
class HTMLPurifier_AttrValidator_ErrorsTest extends HTMLPurifier_ErrorsHarness
|
||||||
|
{
|
||||||
|
|
||||||
|
function invoke($input) {
|
||||||
|
$validator = new HTMLPurifier_AttrValidator();
|
||||||
|
$validator->validateToken($input, $this->config, $this->context);
|
||||||
|
}
|
||||||
|
|
||||||
|
function testAttributesTransformedGlobalPre() {
|
||||||
|
$this->config->set('HTML', 'DefinitionID',
|
||||||
|
'HTMLPurifier_AttrValidator_ErrorsTest::testAttributesTransformedGlobalPre');
|
||||||
|
$def =& $this->config->getHTMLDefinition(true);
|
||||||
|
generate_mock_once('HTMLPurifier_AttrTransform');
|
||||||
|
$transform = new HTMLPurifier_AttrTransformMock();
|
||||||
|
$input = array('original' => 'value');
|
||||||
|
$output = array('class' => 'value'); // must be valid
|
||||||
|
$transform->setReturnValue('transform', $output, array($input, new AnythingExpectation(), new AnythingExpectation()));
|
||||||
|
$def->info_attr_transform_pre[] = $transform;
|
||||||
|
$this->expectErrorCollection(E_NOTICE, 'AttrValidator: Attributes transformed', $input, $output);
|
||||||
|
$token = new HTMLPurifier_Token_Start('span', $input, 1);
|
||||||
|
$this->invoke($token);
|
||||||
|
}
|
||||||
|
|
||||||
|
function testAttributesTransformedLocalPre() {
|
||||||
|
$this->config->set('HTML', 'TidyLevel', 'heavy');
|
||||||
|
$input = array('align' => 'right');
|
||||||
|
$output = array('style' => 'text-align:right;');
|
||||||
|
$this->expectErrorCollection(E_NOTICE, 'AttrValidator: Attributes transformed', $input, $output);
|
||||||
|
$token = new HTMLPurifier_Token_Start('p', $input, 1);
|
||||||
|
$this->invoke($token);
|
||||||
|
}
|
||||||
|
|
||||||
|
// to lazy to check for global post and global pre
|
||||||
|
|
||||||
|
function testAttributeRemoved() {
|
||||||
|
$this->expectErrorCollection(E_ERROR, 'AttrValidator: Attribute removed');
|
||||||
|
$this->expectContext('CurrentAttr', 'foobar');
|
||||||
|
$token = new HTMLPurifier_Token_Start('p', array('foobar' => 'right'), 1);
|
||||||
|
$this->expectContext('CurrentToken', $token);
|
||||||
|
$this->invoke($token);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
?>
|
@ -45,8 +45,8 @@ class HTMLPurifier_ErrorCollectorTest extends UnitTestCase
|
|||||||
$this->assertIdentical($collector->getRaw(), $result);
|
$this->assertIdentical($collector->getRaw(), $result);
|
||||||
|
|
||||||
$formatted_result =
|
$formatted_result =
|
||||||
'<ul><li>Warning: Message 2 at line 3</li>'.
|
'<ul><li><strong>Warning</strong>: Message 2 at line 3</li>'.
|
||||||
'<li>Error: Message 1 at line 23</li></ul>';
|
'<li><strong>Error</strong>: Message 1 at line 23</li></ul>';
|
||||||
|
|
||||||
$config = HTMLPurifier_Config::create(array('Core.MaintainLineNumbers' => true));
|
$config = HTMLPurifier_Config::create(array('Core.MaintainLineNumbers' => true));
|
||||||
|
|
||||||
@ -91,8 +91,8 @@ class HTMLPurifier_ErrorCollectorTest extends UnitTestCase
|
|||||||
$this->assertIdentical($collector->getRaw(), $result);
|
$this->assertIdentical($collector->getRaw(), $result);
|
||||||
|
|
||||||
$formatted_result =
|
$formatted_result =
|
||||||
'<ul><li>Error: Message 1</li>'.
|
'<ul><li><strong>Error</strong>: Message 1</li>'.
|
||||||
'<li>Error: Message 2</li></ul>';
|
'<li><strong>Error</strong>: Message 2</li></ul>';
|
||||||
$config = HTMLPurifier_Config::createDefault();
|
$config = HTMLPurifier_Config::createDefault();
|
||||||
$this->assertIdentical($collector->getHTMLFormatted($config), $formatted_result);
|
$this->assertIdentical($collector->getHTMLFormatted($config), $formatted_result);
|
||||||
}
|
}
|
||||||
|
@ -7,6 +7,13 @@ class HTMLPurifier_LanguageTest extends UnitTestCase
|
|||||||
|
|
||||||
var $lang;
|
var $lang;
|
||||||
|
|
||||||
|
function generateEnLanguage() {
|
||||||
|
$factory = HTMLPurifier_LanguageFactory::instance();
|
||||||
|
$config = HTMLPurifier_Config::create(array('Core.Language' => 'en'));
|
||||||
|
$context = new HTMLPurifier_Context();
|
||||||
|
return $factory->create($config, $context);
|
||||||
|
}
|
||||||
|
|
||||||
function test_getMessage() {
|
function test_getMessage() {
|
||||||
$config = HTMLPurifier_Config::createDefault();
|
$config = HTMLPurifier_Config::createDefault();
|
||||||
$context = new HTMLPurifier_Context();
|
$context = new HTMLPurifier_Context();
|
||||||
@ -26,7 +33,7 @@ class HTMLPurifier_LanguageTest extends UnitTestCase
|
|||||||
$this->assertIdentical($lang->formatMessage('LanguageTest: Error', array(1=>'fatal', 32)), 'Error is fatal on line 32');
|
$this->assertIdentical($lang->formatMessage('LanguageTest: Error', array(1=>'fatal', 32)), 'Error is fatal on line 32');
|
||||||
}
|
}
|
||||||
|
|
||||||
function test_formatMessage_complexParameter() {
|
function test_formatMessage_tokenParameter() {
|
||||||
$config = HTMLPurifier_Config::createDefault();
|
$config = HTMLPurifier_Config::createDefault();
|
||||||
$context = new HTMLPurifier_Context();
|
$context = new HTMLPurifier_Context();
|
||||||
$generator = new HTMLPurifier_Generator(); // replace with mock if this gets icky
|
$generator = new HTMLPurifier_Generator(); // replace with mock if this gets icky
|
||||||
@ -43,6 +50,29 @@ class HTMLPurifier_LanguageTest extends UnitTestCase
|
|||||||
'Data Token: data>, data>, data>, 23');
|
'Data Token: data>, data>, data>, 23');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function test_listify() {
|
||||||
|
$lang = $this->generateEnLanguage();
|
||||||
|
$this->assertEqual($lang->listify(array('Item')), 'Item');
|
||||||
|
$this->assertEqual($lang->listify(array('Item', 'Item2')), 'Item and Item2');
|
||||||
|
$this->assertEqual($lang->listify(array('Item', 'Item2', 'Item3')), 'Item, Item2 and Item3');
|
||||||
|
}
|
||||||
|
|
||||||
|
function test_formatMessage_arrayParameter() {
|
||||||
|
$lang = $this->generateEnLanguage();
|
||||||
|
|
||||||
|
$array = array('Item1', 'Item2', 'Item3');
|
||||||
|
$this->assertIdentical(
|
||||||
|
$lang->formatMessage('LanguageTest: List', array(1=>$array)),
|
||||||
|
'Item1, Item2 and Item3'
|
||||||
|
);
|
||||||
|
|
||||||
|
$array = array('Key1' => 'Value1', 'Key2' => 'Value2');
|
||||||
|
$this->assertIdentical(
|
||||||
|
$lang->formatMessage('LanguageTest: Hash', array(1=>$array)),
|
||||||
|
'Key1 and Key2; Value1 and Value2'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
@ -52,6 +52,7 @@ $test_files[] = 'HTMLPurifier/AttrTransform/LangTest.php';
|
|||||||
$test_files[] = 'HTMLPurifier/AttrTransform/LengthTest.php';
|
$test_files[] = 'HTMLPurifier/AttrTransform/LengthTest.php';
|
||||||
$test_files[] = 'HTMLPurifier/AttrTransform/NameTest.php';
|
$test_files[] = 'HTMLPurifier/AttrTransform/NameTest.php';
|
||||||
$test_files[] = 'HTMLPurifier/AttrTypesTest.php';
|
$test_files[] = 'HTMLPurifier/AttrTypesTest.php';
|
||||||
|
$test_files[] = 'HTMLPurifier/AttrValidator_ErrorsTest.php';
|
||||||
$test_files[] = 'HTMLPurifier/ChildDef/ChameleonTest.php';
|
$test_files[] = 'HTMLPurifier/ChildDef/ChameleonTest.php';
|
||||||
$test_files[] = 'HTMLPurifier/ChildDef/CustomTest.php';
|
$test_files[] = 'HTMLPurifier/ChildDef/CustomTest.php';
|
||||||
$test_files[] = 'HTMLPurifier/ChildDef/OptionalTest.php';
|
$test_files[] = 'HTMLPurifier/ChildDef/OptionalTest.php';
|
||||||
|
Loading…
Reference in New Issue
Block a user