From: Platonides Date: Sun, 27 Nov 2011 16:12:20 +0000 (+0000) Subject: Test to ensure that after adding a category to a template, the articles get moved... X-Git-Tag: 1.31.0-rc.0~26272 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=eb43fae8d3f904265ee914689b5e0e370d68c4d2;p=lhc%2Fweb%2Fwiklou.git Test to ensure that after adding a category to a template, the articles get moved into that category. 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?). --- diff --git a/tests/phpunit/includes/TemplateCategoriesTest.php b/tests/phpunit/includes/TemplateCategoriesTest.php new file mode 100644 index 0000000000..0a6e18c442 --- /dev/null +++ b/tests/phpunit/includes/TemplateCategoriesTest.php @@ -0,0 +1,32 @@ +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() ) ); + } + +}