mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-12-18 10:30:51 +00:00
Replace uses of deprecated ParserOutput::getText()
Bug: T293512 Change-Id: I966b0bcac5b5a9ae09f8243dd1fcee2e7c731515
This commit is contained in:
parent
d50764230c
commit
ace0b1412f
|
@ -90,7 +90,7 @@ class ParserIntegrationTests extends MediaWikiIntegrationTestCase {
|
||||||
$parserOptions1->setOption( 'math', MathConfig::MODE_SOURCE );
|
$parserOptions1->setOption( 'math', MathConfig::MODE_SOURCE );
|
||||||
$render = $parserOutputAccess->getCachedParserOutput( $page, $parserOptions1 );
|
$render = $parserOutputAccess->getCachedParserOutput( $page, $parserOptions1 );
|
||||||
$this->assertNotNull( $render );
|
$this->assertNotNull( $render );
|
||||||
$this->assertStringContainsString( "<render>source:TEST_FORMULA</render>", $render->getText() );
|
$this->assertStringContainsString( "<render>source:TEST_FORMULA</render>", $render->getRawText() );
|
||||||
|
|
||||||
// Now render with 'mathml' and make sure we didn't get the cached output
|
// Now render with 'mathml' and make sure we didn't get the cached output
|
||||||
$parserOptions2 = ParserOptions::newCanonical( 'canonical' );
|
$parserOptions2 = ParserOptions::newCanonical( 'canonical' );
|
||||||
|
@ -108,7 +108,7 @@ class ParserIntegrationTests extends MediaWikiIntegrationTestCase {
|
||||||
$this->assertNotNull( $cachedWithDummy1 );
|
$this->assertNotNull( $cachedWithDummy1 );
|
||||||
$this->assertStringContainsString(
|
$this->assertStringContainsString(
|
||||||
"<render>source:TEST_FORMULA</render>",
|
"<render>source:TEST_FORMULA</render>",
|
||||||
$cachedWithDummy1->getText()
|
$cachedWithDummy1->getRawText()
|
||||||
);
|
);
|
||||||
|
|
||||||
// Fetch from cache with mathml
|
// Fetch from cache with mathml
|
||||||
|
@ -116,7 +116,7 @@ class ParserIntegrationTests extends MediaWikiIntegrationTestCase {
|
||||||
$this->assertNotNull( $cachedWithDummy2 );
|
$this->assertNotNull( $cachedWithDummy2 );
|
||||||
$this->assertStringContainsString(
|
$this->assertStringContainsString(
|
||||||
"<render>mathml:TEST_FORMULA</render>",
|
"<render>mathml:TEST_FORMULA</render>",
|
||||||
$cachedWithDummy2->getText()
|
$cachedWithDummy2->getRawText()
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -131,7 +131,7 @@ class ParserIntegrationTests extends MediaWikiIntegrationTestCase {
|
||||||
PageReferenceValue::localReference( NS_MAIN, __METHOD__ ),
|
PageReferenceValue::localReference( NS_MAIN, __METHOD__ ),
|
||||||
$po
|
$po
|
||||||
)
|
)
|
||||||
->getText();
|
->getRawText();
|
||||||
$this->assertStringMatchesFormat( '%A<a%S><render>mathml:formula</render></a>%A', $res );
|
$this->assertStringMatchesFormat( '%A<a%S><render>mathml:formula</render></a>%A', $res );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue