Articles containing [[es:Plantilla:Ficha_de_película]] showed the categories at the bottom, but were not in categorylinks (solved by a doing a null edit to the template and waiting for the job queue, but how did that situation happen to begin with?).
32 lines
1,018 B
PHP
32 lines
1,018 B
PHP
<?php
|
|
|
|
/**
|
|
* @group Database
|
|
*/
|
|
require dirname( __FILE__ ) . "/../../../maintenance/runJobs.php";
|
|
|
|
class TemplateCategoriesTest extends MediaWikiLangTestCase {
|
|
|
|
function testTemplateCategories() {
|
|
global $wgUser;
|
|
|
|
$title = Title::newFromText( "Categorized from template" );
|
|
$article = new Article( $title );
|
|
$wgUser = new User();
|
|
$wgUser->mRights['*'] = array( 'createpage', 'edit', 'purge' );
|
|
|
|
$status = $article->doEdit( '{{Categorising template}}', 'Create a page with a template', 0 );
|
|
$this->assertEquals( $title->getParentCategories(), array() );
|
|
|
|
$template = new Article( Title::newFromText( 'Template:Categorising template' ) );
|
|
$status = $template->doEdit( '[[Category:Solved bugs]]', 'Add a category through a template', 0 );
|
|
|
|
// Run the job queue
|
|
$jobs = new RunJobs;
|
|
$jobs->loadParamsAndArgs( null, array( 'quiet' => true ), null );
|
|
$jobs->execute();
|
|
|
|
$this->assertEquals( $title->getParentCategories(), array( 'Category:Solved_bugs' => $title->getPrefixedText() ) );
|
|
}
|
|
|
|
}
|