X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=tests%2Fphpunit%2Fincludes%2Fpage%2FWikiPageTest.php;h=a9f74b6472a620005917be2f2d604810bfde81e8;hp=556a34813c8e2041f7f495b39e6e6a4354f96bb2;hb=fb79f30319b9ad2a7eb0f5f4d1668143ec8f963e;hpb=80479a45f588fa4f853e309abb5c85cb00156103 diff --git a/tests/phpunit/includes/page/WikiPageTest.php b/tests/phpunit/includes/page/WikiPageTest.php index 556a34813c..a9f74b6472 100644 --- a/tests/phpunit/includes/page/WikiPageTest.php +++ b/tests/phpunit/includes/page/WikiPageTest.php @@ -117,7 +117,7 @@ class WikiPageTest extends MediaWikiLangTestCase { $id = $page->getId(); # ------------------------ - $dbr = wfGetDB( DB_SLAVE ); + $dbr = wfGetDB( DB_REPLICA ); $res = $dbr->select( 'pagelinks', '*', [ 'pl_from' => $id ] ); $n = $res->numRows(); $res->free(); @@ -147,7 +147,7 @@ class WikiPageTest extends MediaWikiLangTestCase { $this->assertTrue( $content->equals( $retrieved ), 'retrieved content doesn\'t equal original' ); # ------------------------ - $dbr = wfGetDB( DB_SLAVE ); + $dbr = wfGetDB( DB_REPLICA ); $res = $dbr->select( 'pagelinks', '*', [ 'pl_from' => $id ] ); $n = $res->numRows(); $res->free(); @@ -195,7 +195,7 @@ class WikiPageTest extends MediaWikiLangTestCase { $jobs->execute(); # ------------------------ - $dbr = wfGetDB( DB_SLAVE ); + $dbr = wfGetDB( DB_REPLICA ); $res = $dbr->select( 'pagelinks', '*', [ 'pl_from' => $id ] ); $n = $res->numRows(); $res->free(); @@ -225,7 +225,7 @@ class WikiPageTest extends MediaWikiLangTestCase { $jobs->execute(); # ------------------------ - $dbr = wfGetDB( DB_SLAVE ); + $dbr = wfGetDB( DB_REPLICA ); $res = $dbr->select( 'pagelinks', '*', [ 'pl_from' => $id ] ); $n = $res->numRows(); $res->free(); @@ -625,15 +625,15 @@ more stuff return [ [ 'Help:WikiPageTest_testReplaceSection', CONTENT_MODEL_WIKITEXT, - WikiPageTest::$sections, + self::$sections, "0", "No more", null, - trim( preg_replace( '/^Intro/sm', 'No more', WikiPageTest::$sections ) ) + trim( preg_replace( '/^Intro/sm', 'No more', self::$sections ) ) ], [ 'Help:WikiPageTest_testReplaceSection', CONTENT_MODEL_WIKITEXT, - WikiPageTest::$sections, + self::$sections, "", "No more", null, @@ -641,29 +641,29 @@ more stuff ], [ 'Help:WikiPageTest_testReplaceSection', CONTENT_MODEL_WIKITEXT, - WikiPageTest::$sections, + self::$sections, "2", "== TEST ==\nmore fun", null, trim( preg_replace( '/^== test ==.*== foo ==/sm', "== TEST ==\nmore fun\n\n== foo ==", - WikiPageTest::$sections ) ) + self::$sections ) ) ], [ 'Help:WikiPageTest_testReplaceSection', CONTENT_MODEL_WIKITEXT, - WikiPageTest::$sections, + self::$sections, "8", "No more", null, - trim( WikiPageTest::$sections ) + trim( self::$sections ) ], [ 'Help:WikiPageTest_testReplaceSection', CONTENT_MODEL_WIKITEXT, - WikiPageTest::$sections, + self::$sections, "new", "No more", "New", - trim( WikiPageTest::$sections ) . "\n\n== New ==\n\nNo more" + trim( self::$sections ) . "\n\n== New ==\n\nNo more" ], ]; } @@ -827,7 +827,7 @@ more stuff # we are having issues with doRollback spuriously failing. Apparently # the last revision somehow goes missing or not committed under some # circumstances. So, make sure the last revision has the right user name. - $dbr = wfGetDB( DB_SLAVE ); + $dbr = wfGetDB( DB_REPLICA ); $this->assertEquals( 3, Revision::countByPageId( $dbr, $page->getId() ) ); $page = new WikiPage( $page->getTitle() );