wiki.techinc.nl/tests/phpunit/includes/TitleMethodsTest.php
daniel cbc2014b2d Use integers for content_model and content_format.
Representing content_model and content_format as integers in the
database was suggested by Asher mainly to save space.

This change entails some refactoring and renaming, but no big
change in logic.
2012-05-14 10:22:52 +02:00

277 lines
8.4 KiB
PHP

<?php
/**
* @group ContentHandler
*/
class TitleMethodsTest extends MediaWikiTestCase {
public function setup() {
global $wgExtraNamespaces, $wgNamespaceContentModels, $wgContLang;
$wgExtraNamespaces[ 12302 ] = 'TEST-JS';
$wgExtraNamespaces[ 12303 ] = 'TEST-JS_TALK';
$wgNamespaceContentModels[ 12302 ] = CONTENT_MODEL_JAVASCRIPT;
MWNamespace::getCanonicalNamespaces( true ); # reset namespace cache
$wgContLang->resetNamespaces(); # reset namespace cache
}
public function teardown() {
global $wgExtraNamespaces, $wgNamespaceContentModels, $wgContLang;
unset( $wgExtraNamespaces[ 12302 ] );
unset( $wgExtraNamespaces[ 12303 ] );
unset( $wgNamespaceContentModels[ 12302 ] );
MWNamespace::getCanonicalNamespaces( true ); # reset namespace cache
$wgContLang->resetNamespaces(); # reset namespace cache
}
public function dataEquals() {
return array(
array( 'Main Page', 'Main Page', true ),
array( 'Main Page', 'Not The Main Page', false ),
array( 'Main Page', 'Project:Main Page', false ),
array( 'File:Example.png', 'Image:Example.png', true ),
array( 'Special:Version', 'Special:Version', true ),
array( 'Special:Version', 'Special:Recentchanges', false ),
array( 'Special:Version', 'Main Page', false ),
);
}
/**
* @dataProvider dataEquals
*/
public function testEquals( $titleA, $titleB, $expectedBool ) {
$titleA = Title::newFromText( $titleA );
$titleB = Title::newFromText( $titleB );
$this->assertEquals( $expectedBool, $titleA->equals( $titleB ) );
$this->assertEquals( $expectedBool, $titleB->equals( $titleA ) );
}
public function dataInNamespace() {
return array(
array( 'Main Page', NS_MAIN, true ),
array( 'Main Page', NS_TALK, false ),
array( 'Main Page', NS_USER, false ),
array( 'User:Foo', NS_USER, true ),
array( 'User:Foo', NS_USER_TALK, false ),
array( 'User:Foo', NS_TEMPLATE, false ),
array( 'User_talk:Foo', NS_USER_TALK, true ),
array( 'User_talk:Foo', NS_USER, false ),
);
}
/**
* @dataProvider dataInNamespace
*/
public function testInNamespace( $title, $ns, $expectedBool ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedBool, $title->inNamespace( $ns ) );
}
public function testInNamespaces() {
$mainpage = Title::newFromText( 'Main Page' );
$this->assertTrue( $mainpage->inNamespaces( NS_MAIN, NS_USER ) );
$this->assertTrue( $mainpage->inNamespaces( array( NS_MAIN, NS_USER ) ) );
$this->assertTrue( $mainpage->inNamespaces( array( NS_USER, NS_MAIN ) ) );
$this->assertFalse( $mainpage->inNamespaces( array( NS_PROJECT, NS_TEMPLATE ) ) );
}
public function dataHasSubjectNamespace() {
return array(
array( 'Main Page', NS_MAIN, true ),
array( 'Main Page', NS_TALK, true ),
array( 'Main Page', NS_USER, false ),
array( 'User:Foo', NS_USER, true ),
array( 'User:Foo', NS_USER_TALK, true ),
array( 'User:Foo', NS_TEMPLATE, false ),
array( 'User_talk:Foo', NS_USER_TALK, true ),
array( 'User_talk:Foo', NS_USER, true ),
);
}
/**
* @dataProvider dataHasSubjectNamespace
*/
public function testHasSubjectNamespace( $title, $ns, $expectedBool ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedBool, $title->hasSubjectNamespace( $ns ) );
}
public function dataGetContentModel() {
return array(
array( 'Foo', CONTENT_MODEL_WIKITEXT ),
array( 'Foo.js', CONTENT_MODEL_WIKITEXT ),
array( 'Foo/bar.js', CONTENT_MODEL_WIKITEXT ),
array( 'User:Foo', CONTENT_MODEL_WIKITEXT ),
array( 'User:Foo.js', CONTENT_MODEL_WIKITEXT ),
array( 'User:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ),
array( 'User:Foo/bar.css', CONTENT_MODEL_CSS ),
array( 'User talk:Foo/bar.css', CONTENT_MODEL_WIKITEXT ),
array( 'User:Foo/bar.js.xxx', CONTENT_MODEL_WIKITEXT ),
array( 'User:Foo/bar.xxx', CONTENT_MODEL_WIKITEXT ),
array( 'MediaWiki:Foo.js', CONTENT_MODEL_JAVASCRIPT ),
array( 'MediaWiki:Foo.css', CONTENT_MODEL_CSS ),
array( 'MediaWiki:Foo/bar.css', CONTENT_MODEL_CSS ),
array( 'MediaWiki:Foo.JS', CONTENT_MODEL_WIKITEXT ),
array( 'MediaWiki:Foo.CSS', CONTENT_MODEL_WIKITEXT ),
array( 'MediaWiki:Foo.css.xxx', CONTENT_MODEL_WIKITEXT ),
array( 'TEST-JS:Foo', CONTENT_MODEL_JAVASCRIPT ),
array( 'TEST-JS:Foo.js', CONTENT_MODEL_JAVASCRIPT ),
array( 'TEST-JS:Foo/bar.js', CONTENT_MODEL_JAVASCRIPT ),
array( 'TEST-JS_TALK:Foo.js', CONTENT_MODEL_WIKITEXT ),
);
}
/**
* @dataProvider dataGetContentModel
*/
public function testGetContentModel( $title, $expectedModelId ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedModelId, $title->getContentModel() );
}
/**
* @dataProvider dataGetContentModel
*/
public function testHasContentModel( $title, $expectedModelId ) {
$title = Title::newFromText( $title );
$this->assertTrue( $title->hasContentModel( $expectedModelId ) );
}
public function dataIsCssOrJsPage() {
return array(
array( 'Foo', false ),
array( 'Foo.js', false ),
array( 'Foo/bar.js', false ),
array( 'User:Foo', false ),
array( 'User:Foo.js', false ),
array( 'User:Foo/bar.js', false ),
array( 'User:Foo/bar.css', false ),
array( 'User talk:Foo/bar.css', false ),
array( 'User:Foo/bar.js.xxx', false ),
array( 'User:Foo/bar.xxx', false ),
array( 'MediaWiki:Foo.js', true ),
array( 'MediaWiki:Foo.css', true ),
array( 'MediaWiki:Foo.JS', false ),
array( 'MediaWiki:Foo.CSS', false ),
array( 'MediaWiki:Foo.css.xxx', false ),
array( 'TEST-JS:Foo', false ),
array( 'TEST-JS:Foo.js', false ),
);
}
/**
* @dataProvider dataIsCssOrJsPage
*/
public function testIsCssOrJsPage( $title, $expectedBool ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedBool, $title->isCssOrJsPage() );
}
public function dataIsCssJsSubpage() {
return array(
array( 'Foo', false ),
array( 'Foo.js', false ),
array( 'Foo/bar.js', false ),
array( 'User:Foo', false ),
array( 'User:Foo.js', false ),
array( 'User:Foo/bar.js', true ),
array( 'User:Foo/bar.css', true ),
array( 'User talk:Foo/bar.css', false ),
array( 'User:Foo/bar.js.xxx', false ),
array( 'User:Foo/bar.xxx', false ),
array( 'MediaWiki:Foo.js', false ),
array( 'User:Foo/bar.JS', false ),
array( 'User:Foo/bar.CSS', false ),
array( 'TEST-JS:Foo', false ),
array( 'TEST-JS:Foo.js', false ),
);
}
/**
* @dataProvider dataIsCssJsSubpage
*/
public function testIsCssJsSubpage( $title, $expectedBool ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedBool, $title->isCssJsSubpage() );
}
public function dataIsCssSubpage() {
return array(
array( 'Foo', false ),
array( 'Foo.css', false ),
array( 'User:Foo', false ),
array( 'User:Foo.js', false ),
array( 'User:Foo.css', false ),
array( 'User:Foo/bar.js', false ),
array( 'User:Foo/bar.css', true ),
);
}
/**
* @dataProvider dataIsCssSubpage
*/
public function testIsCssSubpage( $title, $expectedBool ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedBool, $title->isCssSubpage() );
}
public function dataIsJsSubpage() {
return array(
array( 'Foo', false ),
array( 'Foo.css', false ),
array( 'User:Foo', false ),
array( 'User:Foo.js', false ),
array( 'User:Foo.css', false ),
array( 'User:Foo/bar.js', true ),
array( 'User:Foo/bar.css', false ),
);
}
/**
* @dataProvider dataIsJsSubpage
*/
public function testIsJsSubpage( $title, $expectedBool ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedBool, $title->isJsSubpage() );
}
public function dataIsWikitextPage() {
return array(
array( 'Foo', true ),
array( 'Foo.js', true ),
array( 'Foo/bar.js', true ),
array( 'User:Foo', true ),
array( 'User:Foo.js', true ),
array( 'User:Foo/bar.js', false ),
array( 'User:Foo/bar.css', false ),
array( 'User talk:Foo/bar.css', true ),
array( 'User:Foo/bar.js.xxx', true ),
array( 'User:Foo/bar.xxx', true ),
array( 'MediaWiki:Foo.js', false ),
array( 'MediaWiki:Foo.css', false ),
array( 'MediaWiki:Foo/bar.css', false ),
array( 'User:Foo/bar.JS', true ),
array( 'User:Foo/bar.CSS', true ),
array( 'TEST-JS:Foo', false ),
array( 'TEST-JS:Foo.js', false ),
array( 'TEST-JS_TALK:Foo.js', true ),
);
}
/**
* @dataProvider dataIsWikitextPage
*/
public function testIsWikitextPage( $title, $expectedBool ) {
$title = Title::newFromText( $title );
$this->assertEquals( $expectedBool, $title->isWikitextPage() );
}
}