Go to the documentation of this file.
22 'wgExtraNamespaces' => $wgExtraNamespaces,
51 $name =
'Help:ApiEditPageTest_testEdit';
57 'text' =>
'some text',
59 $apiResult = $apiResult[0];
62 $this->assertArrayHasKey(
'edit', $apiResult );
63 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
64 $this->assertEquals(
'Success', $apiResult[
'edit'][
'result'] );
66 $this->assertArrayHasKey(
'new', $apiResult[
'edit'] );
67 $this->assertArrayNotHasKey(
'nochange', $apiResult[
'edit'] );
69 $this->assertArrayHasKey(
'pageid', $apiResult[
'edit'] );
75 'text' =>
'some text',
78 $this->assertEquals(
'Success', $data[0][
'edit'][
'result'] );
80 $this->assertArrayNotHasKey(
'new', $data[0][
'edit'] );
81 $this->assertArrayHasKey(
'nochange', $data[0][
'edit'] );
87 'text' =>
'different text'
90 $this->assertEquals(
'Success', $data[0][
'edit'][
'result'] );
92 $this->assertArrayNotHasKey(
'new', $data[0][
'edit'] );
93 $this->assertArrayNotHasKey(
'nochange', $data[0][
'edit'] );
95 $this->assertArrayHasKey(
'oldrevid', $data[0][
'edit'] );
96 $this->assertArrayHasKey(
'newrevid', $data[0][
'edit'] );
97 $this->assertNotEquals(
98 $data[0][
'edit'][
'newrevid'],
99 $data[0][
'edit'][
'oldrevid'],
100 "revision id should change after edit"
110 'foo',
'append',
'bar',
"foobar"
113 'foo',
'prepend',
'bar',
"barfoo"
115 [ # 2: append to empty
page
116 '',
'append',
'foo',
"foo"
118 [ # 3: prepend to empty
page
119 '',
'prepend',
'foo',
"foo"
121 [ # 4: append to non-existing
page
122 null,
'append',
'foo',
"foo"
124 [ # 5: prepend to non-existing
page
125 null,
'prepend',
'foo',
"foo"
138 $name =
"Help:ApiEditPageTest_testEditAppend_$count";
141 if ( $text !==
null ) {
145 'text' => $text, ] );
147 $this->assertEquals(
'Success', $re[
'edit'][
'result'] );
154 $op .
'text' => $append, ] );
156 $this->assertEquals(
'Success', $re[
'edit'][
'result'] );
160 $content = $page->getContent();
161 $this->assertNotNull( $content,
'Page should have been created' );
163 $text = $content->getNativeData();
165 $this->assertEquals( $expected, $text );
172 $name =
'Help:ApiEditPageTest_testEditSection';
174 $text =
"==section 1==\ncontent 1\n==section 2==\ncontent2";
182 'text' =>
"==section 1==\nnew content 1",
184 $this->assertEquals(
'Success', $re[
'edit'][
'result'] );
188 $this->assertEquals(
"==section 1==\nnew content 1\n\n==section 2==\ncontent2", $newtext );
198 $this->fail(
"Should have raised an ApiUsageException" );
200 $this->assertTrue( self::apiExceptionHasCode(
$e,
'nosuchsection' ) );
211 $name =
'Help:ApiEditPageTest_testEditNewSection';
220 'summary' =>
'header',
223 $this->assertEquals(
'Success', $re[
'edit'][
'result'] );
228 $this->assertEquals(
"== header ==\n\ntest", $text );
237 'summary' =>
'header',
240 $this->assertEquals(
'Success', $re2[
'edit'][
'result'] );
244 $this->assertEquals(
"== header ==\n\ntest\n\n== header ==\n\ntest", $text );
255 $name =
"Help:ApiEditPageTest_testEdit_redirect_$count";
259 $rname =
"Help:ApiEditPageTest_testEdit_redirect_r$count";
265 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
267 $baseTime = $page->getRevision()->getTimestamp();
271 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
275 $rpage->doEditContent(
new WikitextContent(
"#REDIRECT [[$name]]\n\n[[Category:Test]]" ),
276 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
283 'text' =>
'nix bar!',
284 'basetimestamp' => $baseTime,
287 ],
null, self::$users[
'sysop']->getUser() );
289 $this->assertEquals(
'Success', $re[
'edit'][
'result'],
290 "no problems expected when following redirect" );
301 $name =
"Help:ApiEditPageTest_testEdit_redirectText_$count";
305 $rname =
"Help:ApiEditPageTest_testEdit_redirectText_r$count";
311 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
313 $baseTime = $page->getRevision()->getTimestamp();
317 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
321 $rpage->doEditContent(
new WikitextContent(
"#REDIRECT [[$name]]\n\n[[Category:Test]]" ),
322 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
330 'text' =>
'nix bar!',
331 'basetimestamp' => $baseTime,
333 ],
null, self::$users[
'sysop']->getUser() );
335 $this->fail(
'redirect-appendonly error expected' );
337 $this->assertTrue( self::apiExceptionHasCode( $ex,
'redirect-appendonly' ) );
346 $name =
"Help:ApiEditPageTest_testEditConflict_$count";
353 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
355 $baseTime = $page->getRevision()->getTimestamp();
359 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
367 'text' =>
'nix bar!',
368 'basetimestamp' => $baseTime,
369 ],
null, self::$users[
'sysop']->getUser() );
371 $this->fail(
'edit conflict expected' );
373 $this->assertTrue( self::apiExceptionHasCode( $ex,
'editconflict' ) );
385 $name =
"Help:ApiEditPageTest_testEditConflict_newSection_$count";
392 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
394 $baseTime = $page->getRevision()->getTimestamp();
398 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
405 'text' =>
'nix bar!',
406 'basetimestamp' => $baseTime,
408 ],
null, self::$users[
'sysop']->getUser() );
410 $this->assertEquals(
'Success', $re[
'edit'][
'result'],
411 "no edit conflict expected here" );
425 $name =
"Help:ApiEditPageTest_testEditConflict_redirect_bug41990_$count";
429 $rname =
"Help:ApiEditPageTest_testEditConflict_redirect_bug41990_r$count";
435 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
440 "testing 1",
EDIT_NEW,
false, self::$users[
'sysop']->getUser() );
445 "testing 2",
EDIT_UPDATE, $page->getLatest(), self::$users[
'uploader']->getUser() );
452 'text' =>
'nix bar!',
455 ],
null, self::$users[
'sysop']->getUser() );
457 $this->assertEquals(
'Success', $re[
'edit'][
'result'],
458 "no edit conflict expected here" );
468 $dbw->update(
'revision',
469 [
'rev_timestamp' => $dbw->timestamp( $timestamp ) ],
476 $this->setExpectedException(
478 'Direct editing via API is not supported for content model ' .
479 'testing used by Dummy:ApiEditPageTest_nonTextPageEdit'
484 'title' =>
'Dummy:ApiEditPageTest_nonTextPageEdit',
485 'text' =>
'{"animals":["kittens!"]}'
490 $name =
'DummyNonText:ApiEditPageTest_testNonTextEdit';
491 $data =
serialize(
'some bla bla text' );
502 $this->assertArrayHasKey(
'edit', $apiResult );
503 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
504 $this->assertEquals(
'Success', $apiResult[
'edit'][
'result'] );
506 $this->assertArrayHasKey(
'new', $apiResult[
'edit'] );
507 $this->assertArrayNotHasKey(
'nochange', $apiResult[
'edit'] );
509 $this->assertArrayHasKey(
'pageid', $apiResult[
'edit'] );
513 $this->assertEquals(
"testing-nontext", $page->getContentModel() );
514 $this->assertEquals( $data, $page->getContent()->serialize() );
523 $name =
'Help:' . __FUNCTION__;
524 $uploader = self::$users[
'uploader']->getUser();
525 $sysop = self::$users[
'sysop']->getUser();
529 'text' =>
'some text',
530 ],
null, $sysop )[0];
533 $this->assertArrayHasKey(
'edit', $apiResult );
534 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
535 $this->assertEquals(
'Success', $apiResult[
'edit'][
'result'] );
536 $this->assertArrayHasKey(
'contentmodel', $apiResult[
'edit'] );
538 $this->assertEquals(
'wikitext', $apiResult[
'edit'][
'contentmodel'] );
545 'contentmodel' =>
'json',
546 ],
null, $uploader )[0];
549 $this->assertArrayHasKey(
'edit', $apiResult );
550 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
551 $this->assertEquals(
'Success', $apiResult[
'edit'][
'result'] );
552 $this->assertArrayHasKey(
'contentmodel', $apiResult[
'edit'] );
553 $this->assertEquals(
'json', $apiResult[
'edit'][
'contentmodel'] );
558 'undo' => $apiResult[
'edit'][
'newrevid']
559 ],
null, $sysop )[0];
562 $this->assertArrayHasKey(
'edit', $apiResult );
563 $this->assertArrayHasKey(
'result', $apiResult[
'edit'] );
564 $this->assertEquals(
'Success', $apiResult[
'edit'][
'result'] );
565 $this->assertArrayHasKey(
'contentmodel', $apiResult[
'edit'] );
567 $this->assertEquals(
'wikitext', $apiResult[
'edit'][
'contentmodel'] );
when a variable name is used in a function
$wgNamespaceContentModels
Associative array mapping namespace IDs to the name of the content model pages in that namespace shou...
static newFromText( $text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Exception used to abort API execution with an error.
testEditConflict_newSection()
Ensure that editing using section=new will prevent simple conflicts.
testEditAppend( $text, $op, $append, $expected)
provideEditAppend
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetMagic':DEPRECATED! Use $magicWords in a file listed in $wgExtensionMessagesFiles instead. Use this to define synonyms of magic words depending of the language & $magicExtensions:associative array of magic words synonyms $lang:language code(string) 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetSpecialPageAliases':DEPRECATED! Use $specialPageAliases in a file listed in $wgExtensionMessagesFiles instead. Use to define aliases of special pages names depending of the language & $specialPageAliases:associative array of magic words synonyms $lang:language code(string) 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Class representing a MediaWiki article and history.
static provideEditAppend()
Allows to change the fields on the form that will be generated $name
testSupportsDirectApiEditing_withContentHandlerOverride()
you have access to all of the normal MediaWiki so you can get a DB use the cache
Tests for MediaWiki api.php?action=edit.
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
testEditSection()
Test editing of sections.
testEditConflict_bug41990()
namespace and then decline to actually register it file or subcat img or subcat $title
static factory(Title $title)
Create a WikiPage object of the appropriate class for the given title.
$wgContentHandlers
Plugins for page content model handling.
testEdit_redirect()
Ensure we can edit through a redirect, if adding a section.
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
when a variable name is used in a it is silently declared as a new masking the global
getLatest()
Get the page_latest field.
Content object for wiki text pages.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
static makeContent( $text, Title $title=null, $modelId=null, $format=null)
Convenience function for creating a Content object from a given textual representation.
doLogin( $testUser='sysop')
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException' returning false will NOT prevent logging $e
testUndoAfterContentModelChange()
This test verifies that after changing the content model of a page, undoing that edit via the API wil...
testEdit_redirectText()
Ensure we cannot edit through a redirect, if attempting to overwrite content.
static getCanonicalNamespaces( $rebuild=false)
Returns array of all defined namespaces with their canonical (English) names.
testEditNewSection()
Test action=edit§ion=new Run it twice so we test adding a new section on a page that doesn't exis...
doApiRequestWithToken(array $params, array $session=null, User $user=null)
Add an edit token to the API request This is cheating a bit – we grab a token in the correct format a...
testCheckDirectApiEditingDisallowed_forNonTextContent()
forceRevisionDate(WikiPage $page, $timestamp)
$wgExtraNamespaces
Additional namespaces.
this class mediates it Skin Encapsulates a look and feel for the wiki All of the functions that render HTML and make choices about how to render it are here and are called from various other places when and is meant to be subclassed with other skins that may override some of its functions The User object contains a reference to a and so rather than having a global skin object we just rely on the global User and get the skin with $wgUser and also has some character encoding functions and other locale stuff The current user interface language is instantiated as and the content language as $wgContLang