MediaWiki  1.27.2
TemplateCategoriesTest.php
Go to the documentation of this file.
1 <?php
2 
6 require __DIR__ . "/../../../maintenance/runJobs.php";
7 
9 
13  public function testTemplateCategories() {
14  $user = new User();
15  $user->mRights = [ 'createpage', 'edit', 'purge', 'delete' ];
16 
17  $title = Title::newFromText( "Categorized from template" );
19  $page->doEditContent(
20  new WikitextContent( '{{Categorising template}}' ),
21  'Create a page with a template',
22  0,
23  false,
24  $user
25  );
26 
27  $this->assertEquals(
28  [],
29  $title->getParentCategories(),
30  'Verify that the category doesn\'t contain the page before the template is created'
31  );
32 
33  // Create template
34  $template = WikiPage::factory( Title::newFromText( 'Template:Categorising template' ) );
35  $template->doEditContent(
36  new WikitextContent( '[[Category:Solved bugs]]' ),
37  'Add a category through a template',
38  0,
39  false,
40  $user
41  );
42 
43  // Run the job queue
45  $jobs = new RunJobs;
46  $jobs->loadParamsAndArgs( null, [ 'quiet' => true ], null );
47  $jobs->execute();
48 
49  // Make sure page is in the category
50  $this->assertEquals(
51  [ 'Category:Solved_bugs' => $title->getPrefixedText() ],
52  $title->getParentCategories(),
53  'Verify that the page is in the category after the template is created'
54  );
55 
56  // Edit the template
57  $template->doEditContent(
58  new WikitextContent( '[[Category:Solved bugs 2]]' ),
59  'Change the category added by the template',
60  0,
61  false,
62  $user
63  );
64 
65  // Run the job queue
67  $jobs = new RunJobs;
68  $jobs->loadParamsAndArgs( null, [ 'quiet' => true ], null );
69  $jobs->execute();
70 
71  // Make sure page is in the right category
72  $this->assertEquals(
73  [ 'Category:Solved_bugs_2' => $title->getPrefixedText() ],
74  $title->getParentCategories(),
75  'Verify that the page is in the right category after the template is edited'
76  );
77 
78  // Now delete the template
79  $error = '';
80  $template->doDeleteArticleReal( 'Delete the template', false, 0, true, $error, $user );
81 
82  // Run the job queue
84  $jobs = new RunJobs;
85  $jobs->loadParamsAndArgs( null, [ 'quiet' => true ], null );
86  $jobs->execute();
87 
88  // Make sure the page is no longer in the category
89  $this->assertEquals(
90  [],
91  $title->getParentCategories(),
92  'Verify that the page is no longer in the category after template deletion'
93  );
94 
95  }
96 }
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
Definition: WikiPage.php:99
loadParamsAndArgs($self=null, $opts=null, $args=null)
Process command line arguments $mOptions becomes an array with keys set to the option names $mArgs be...
testTemplateCategories()
Title::getParentCategories.
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:277
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping $template
Definition: hooks.txt:762
Base class that store and restore the Language objects.
Maintenance script that runs pending jobs.
Definition: runJobs.php:33
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
Content object for wiki text pages.
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
do that in ParserLimitReportFormat instead use this to modify the parameters of the image and a DIV can begin in one section and end in another Make sure your code can handle that case gracefully See the EditSectionClearerLink extension for an example zero but section is usually empty its values are the globals values before the output is cached $page
Definition: hooks.txt:2338
static destroySingletons()
Destroy the singleton instances.