mediawiki-extensions-Templa.../tests/phpunit/unit/TemplateStylesMatcherFactoryTest.php
Amir Sarabadani 84591b3505 Make unit tests follow the new structure
Change-Id: Iad546e528c2df86866afcf2f49df2c7209563bc7
2019-07-21 23:05:08 +02:00

69 lines
2.2 KiB
PHP

<?php
use Wikimedia\CSS\Objects\ComponentValueList;
use Wikimedia\CSS\Objects\Token;
/**
* @group TemplateStyles
* @covers TemplateStylesMatcherFactory
*/
class TemplateStylesMatcherFactoryTest extends MediaWikiUnitTestCase {
/**
* @dataProvider provideUrls
* @param string $type
* @param string $url
* @param bool $expect
*/
public function testUrls( $type, $url, $expect ) {
$factory = new TemplateStylesMatcherFactory( [
'test1' => [
'<^http://example\.com/test1/>',
],
'test2' => [
'<^http://example\.com/test2/A/>',
'<^http://example\.com/test2/B/>',
],
'anything' => [
'<.>',
],
] );
$list = new ComponentValueList( [
new Token( Token::T_STRING, $url )
] );
$this->assertSame( $expect, (bool)$factory->urlstring( $type )->match( $list ) );
$list = new ComponentValueList( [
new Token( Token::T_URL, $url )
] );
$this->assertSame( $expect, (bool)$factory->url( $type )->match( $list ) );
}
public static function provideUrls() {
return [
[ 'test1', 'http://example.com/test1/foobar', true ],
[ 'test2', 'http://example.com/test1/foobar', false ],
[ 'test2', 'http://example.com/test2/A/foobar', true ],
[ 'test2', 'http://example.com/test2/B/foobar', true ],
[ 'test2', 'http://example.com/test2/C/foobar', false ],
[ 'test3', 'http://example.com/test3/foobar', false ],
[ 'test1', 'http://example.com/test1/../../etc/password', false ],
[ 'test1', 'http://example.com/test1/..%2F..%2Fetc%2Fpassword', false ],
[ 'test1', 'http://example.com/test1/etc\\password', false ],
[ 'test1', 'http://example.com/test%31/foobar', true ],
[ 'test1', 'http://example.com/test1/x=/%2E/foobar', false ],
[ 'test1', 'http://example.com/test1/?x=/%2E/foobar', true ],
[ 'test1', 'http://example.com/test1/%3Fx=/%2E/foobar', false ],
[ 'test1', 'http://example.com/test1/#x=/%2E/foobar', true ],
[ 'test1', 'http://example.com/test1/%23x=/%2E/foobar', false ],
[ 'anything', 'totally bogus', true ],
[ 'anything', '/dotdot/../still/fails/though', false ],
[ 'anything', '../still/fails/though', false ],
[ 'anything', 'still/fails/..', false ],
[ 'anything', '..', false ],
];
}
}