2010-12-14 16:26:35 +00:00
< ? php
2010-12-28 18:17:16 +00:00
class SanitizerTest extends MediaWikiTestCase {
2010-12-14 16:26:35 +00:00
2012-10-08 10:56:20 +00:00
protected function setUp () {
parent :: setUp ();
2010-12-14 16:26:35 +00:00
AutoLoader :: loadClass ( 'Sanitizer' );
}
function testDecodeNamedEntities () {
$this -> assertEquals (
" \xc3 \xa9 cole " ,
Sanitizer :: decodeCharReferences ( 'école' ),
'decode named entities'
);
}
function testDecodeNumericEntities () {
$this -> assertEquals (
" \xc4 \x88 io bonas dans l' \xc3 \xa9 cole! " ,
Sanitizer :: decodeCharReferences ( " Ĉio bonas dans l'école! " ),
'decode numeric entities'
);
}
function testDecodeMixedEntities () {
$this -> assertEquals (
" \xc4 \x88 io bonas dans l' \xc3 \xa9 cole! " ,
Sanitizer :: decodeCharReferences ( " Ĉio bonas dans l'école! " ),
'decode mixed numeric/named entities'
);
}
function testDecodeMixedComplexEntities () {
$this -> assertEquals (
" \xc4 \x88 io bonas dans l' \xc3 \xa9 cole! (mais pas Ĉio dans l'école) " ,
Sanitizer :: decodeCharReferences (
" Ĉio bonas dans l'école! (mais pas &#x108;io dans l'&eacute;cole) "
),
'decode mixed complex entities'
);
}
function testInvalidAmpersand () {
$this -> assertEquals (
'a & b' ,
Sanitizer :: decodeCharReferences ( 'a & b' ),
'Invalid ampersand'
);
}
function testInvalidEntities () {
$this -> assertEquals (
'&foo;' ,
Sanitizer :: decodeCharReferences ( '&foo;' ),
'Invalid named entity'
);
}
function testInvalidNumberedEntities () {
$this -> assertEquals ( UTF8_REPLACEMENT , Sanitizer :: decodeCharReferences ( " � " ), 'Invalid numbered entity' );
}
2012-08-06 10:02:49 +00:00
/**
* @ cover Sanitizer :: removeHTMLtags
* @ dataProvider provideHtml5Tags
*
* @ param String $tag Name of an HTML5 element ( ie : 'video' )
* @ param Boolean $escaped Wheter sanitizer let the tag in or escape it ( ie : '<video>' )
*/
function testRemovehtmltagsOnHtml5Tags ( $tag , $escaped ) {
2012-12-09 10:03:03 +00:00
$this -> setMwGlobals ( array (
# Enable HTML5 mode
'wgHtml5' => true ,
'wgUseTidy' => false
));
2012-08-06 10:02:49 +00:00
if ( $escaped ) {
$this -> assertEquals ( " < $tag > " ,
Sanitizer :: removeHTMLtags ( " < $tag > " )
);
} else {
$this -> assertEquals ( " < $tag ></ $tag > \n " ,
Sanitizer :: removeHTMLtags ( " < $tag > " )
);
}
}
/**
* Provide HTML5 tags
*/
function provideHtml5Tags () {
$ESCAPED = true ; # We want tag to be escaped
$VERBATIM = false ; # We want to keep the tag
return array (
array ( 'data' , $VERBATIM ),
array ( 'mark' , $VERBATIM ),
array ( 'time' , $VERBATIM ),
array ( 'video' , $ESCAPED ),
);
}
2010-12-14 16:26:35 +00:00
function testSelfClosingTag () {
2012-12-09 10:03:03 +00:00
$this -> setMwGlobals ( array (
'wgUseTidy' => false
));
2010-12-14 16:26:35 +00:00
$this -> assertEquals (
'<div>Hello world</div>' ,
Sanitizer :: removeHTMLtags ( '<div>Hello world</div />' ),
'Self-closing closing div'
);
}
2011-02-19 20:16:54 +00:00
function testDecodeTagAttributes () {
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=bar' ), array ( 'foo' => 'bar' ), 'Unquoted attribute' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( ' foo = bar ' ), array ( 'foo' => 'bar' ), 'Spaced attribute' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo="bar"' ), array ( 'foo' => 'bar' ), 'Double-quoted attribute' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=\'bar\'' ), array ( 'foo' => 'bar' ), 'Single-quoted attribute' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=\'bar\' baz="foo"' ), array ( 'foo' => 'bar' , 'baz' => 'foo' ), 'Several attributes' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=\'bar\' baz="foo"' ), array ( 'foo' => 'bar' , 'baz' => 'foo' ), 'Several attributes' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=\'bar\' baz="foo"' ), array ( 'foo' => 'bar' , 'baz' => 'foo' ), 'Several attributes' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( ':foo=\'bar\'' ), array ( ':foo' => 'bar' ), 'Leading :' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( '_foo=\'bar\'' ), array ( '_foo' => 'bar' ), 'Leading _' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'Foo=\'bar\'' ), array ( 'foo' => 'bar' ), 'Leading capital' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'FOO=BAR' ), array ( 'foo' => 'BAR' ), 'Attribute keys are normalized to lowercase' );
# Invalid beginning
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( '-foo=bar' ), array (), 'Leading - is forbidden' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( '.foo=bar' ), array (), 'Leading . is forbidden' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo-bar=bar' ), array ( 'foo-bar' => 'bar' ), 'A - is allowed inside the attribute' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo-=bar' ), array ( 'foo-' => 'bar' ), 'A - is allowed inside the attribute' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo.bar=baz' ), array ( 'foo.bar' => 'baz' ), 'A . is allowed inside the attribute' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo.=baz' ), array ( 'foo.' => 'baz' ), 'A . is allowed as last character' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo6=baz' ), array ( 'foo6' => 'baz' ), 'Numbers are allowed' );
# This bit is more relaxed than XML rules, but some extensions use it, like ProofreadPage (see bug 27539)
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( '1foo=baz' ), array ( '1foo' => 'baz' ), 'Leading numbers are allowed' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo$=baz' ), array (), 'Symbols are not allowed' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo@=baz' ), array (), 'Symbols are not allowed' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo~=baz' ), array (), 'Symbols are not allowed' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=1[#^`*%w/(' ), array ( 'foo' => '1[#^`*%w/(' ), 'All kind of characters are allowed as values' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo="1[#^`*%\'w/("' ), array ( 'foo' => '1[#^`*%\'w/(' ), 'Double quotes are allowed if quoted by single quotes' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=\'1[#^`*%"w/(\'' ), array ( 'foo' => '1[#^`*%"w/(' ), 'Single quotes are allowed if quoted by double quotes' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=&"' ), array ( 'foo' => '&"' ), 'Special chars can be provided as entities' );
$this -> assertEquals ( Sanitizer :: decodeTagAttributes ( 'foo=&foobar;' ), array ( 'foo' => '&foobar;' ), 'Entity-like items are accepted' );
}
2011-09-25 04:08:23 +00:00
2012-06-29 16:24:20 +00:00
/**
* @ dataProvider provideDeprecatedAttributes
2012-11-22 10:23:13 +00:00
* @ cover Sanitizer :: fixTagAttributes
2012-06-29 16:24:20 +00:00
*/
2012-11-22 10:23:13 +00:00
function testDeprecatedAttributesUnaltered ( $inputAttr , $inputEl , $message = '' ) {
$this -> assertEquals ( " $inputAttr " ,
Sanitizer :: fixTagAttributes ( $inputAttr , $inputEl ),
$message
);
2012-10-08 10:56:20 +00:00
}
public static function provideDeprecatedAttributes () {
2012-11-22 10:23:13 +00:00
/** array( <attribute>, <element>, [message] ) */
2012-06-29 16:24:20 +00:00
return array (
2012-11-01 18:08:54 +00:00
array ( 'clear="left"' , 'br' ),
array ( 'clear="all"' , 'br' ),
array ( 'width="100"' , 'td' ),
array ( 'nowrap="true"' , 'td' ),
array ( 'nowrap=""' , 'td' ),
array ( 'align="right"' , 'td' ),
array ( 'align="center"' , 'table' ),
array ( 'align="left"' , 'tr' ),
array ( 'align="center"' , 'div' ),
array ( 'align="left"' , 'h1' ),
array ( 'align="left"' , 'span' ),
2012-06-29 16:24:20 +00:00
);
2011-09-25 04:08:23 +00:00
}
2011-10-24 08:39:58 +00:00
/**
* @ dataProvider provideCssCommentsFixtures
2012-11-22 10:23:13 +00:00
* @ cover Sanitizer :: checkCss
2011-10-24 08:39:58 +00:00
*/
function testCssCommentsChecking ( $expected , $css , $message = '' ) {
2012-11-22 10:23:13 +00:00
$this -> assertEquals ( $expected ,
2011-10-24 08:39:58 +00:00
Sanitizer :: checkCss ( $css ),
$message
);
}
2012-10-08 10:56:20 +00:00
public static function provideCssCommentsFixtures () {
2011-10-24 08:39:58 +00:00
/** array( <expected>, <css>, [message] ) */
return array (
array ( ' ' , '/**/' ),
array ( ' ' , '/****/' ),
array ( ' ' , '/* comment */' ),
array ( ' ' , " \\ 2f \\ 2a foo \\ 2a \\ 2f " ,
'Backslash-escaped comments must be stripped (bug 28450)' ),
array ( '' , '/* unfinished comment structure' ,
'Remove anything after a comment-start token' ),
array ( '' , " \\ 2f \\ 2a unifinished comment' " ,
'Remove anything after a backslash-escaped comment-start token' ),
2012-09-21 16:51:08 +00:00
array ( '/* insecure input */' , 'filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'asdf.png\',sizingMethod=\'scale\');' ),
array ( '/* insecure input */' , '-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'asdf.png\',sizingMethod=\'scale\')";' ),
array ( '/* insecure input */' , 'width: expression(1+1);' ),
array ( '/* insecure input */' , 'background-image: image(asdf.png);' ),
array ( '/* insecure input */' , 'background-image: -webkit-image(asdf.png);' ),
array ( '/* insecure input */' , 'background-image: -moz-image(asdf.png);' ),
2012-10-19 08:12:56 +00:00
array ( '/* insecure input */' , 'background-image: image-set("asdf.png" 1x, "asdf.png" 2x);' ),
array ( '/* insecure input */' , 'background-image: -webkit-image-set("asdf.png" 1x, "asdf.png" 2x);' ),
array ( '/* insecure input */' , 'background-image: -moz-image-set("asdf.png" 1x, "asdf.png" 2x);' ),
2011-10-24 08:39:58 +00:00
);
}
2010-12-14 16:26:35 +00:00
}