mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
5c12ed983f
* MathDebug was intended to provide advanced debugging functionality for the math extension. However, the interesting debugging and logging feature never made it from the debug branch to the master. * The current debug functionality is mostly useless. Only some values are written to memory and never used thereafter. * This change moves the existing functionality to the MathSearch extension and introduced the required hook for that. Details: * $wgMathDebug is removed * A new Hook MathRenderingResultRetrieved is created * The math rendering object is printed to the svg error page if wgDebugComments is active (instead of wgMathDebug) Change-Id: I6fad69b5d9b9ca8a7d12c7e410d3ae6180fbddbf
116 lines
4 KiB
PHP
116 lines
4 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Test the database access and core functionality of MathRenderer.
|
|
*
|
|
* @group Math
|
|
* @group Database //Used by needsDB
|
|
*/
|
|
class MathDatabaseTest extends MediaWikiTestCase {
|
|
/**
|
|
* @var MathRenderer
|
|
*/
|
|
private $renderer;
|
|
const SOME_TEX = "a+b";
|
|
const SOME_HTML = "a<sub>b</sub> and so on";
|
|
const SOME_MATHML = "iℏ∂_tΨ=H^Ψ<mrow><\ci>";
|
|
const SOME_CONSERVATIVENESS = 2;
|
|
const SOME_OUTPUTHASH = 'C65c884f742c8591808a121a828bc09f8<';
|
|
|
|
|
|
/**
|
|
* creates a new database connection and a new math renderer
|
|
* TODO: Check if there is a way to get database access without creating
|
|
* the connection to the database explicitly
|
|
* function addDBData() {
|
|
* $this->tablesUsed[] = 'math';
|
|
* }
|
|
* was not sufficient.
|
|
*/
|
|
protected function setup() {
|
|
parent::setUp();
|
|
// TODO: figure out why this is necessary
|
|
$this->db = wfGetDB( DB_MASTER );
|
|
// Create a new instance of MathSource
|
|
$this->renderer = new MathTexvc( self::SOME_TEX );
|
|
$this->tablesUsed[] = 'math';
|
|
}
|
|
|
|
/**
|
|
* Checks the tex and hash functions
|
|
* @covers MathRenderer::getInputHash()
|
|
*/
|
|
public function testInputHash() {
|
|
$expectedhash = $this->db->encodeBlob( pack( "H32", md5( self::SOME_TEX ) ) );
|
|
$this->assertEquals( $expectedhash, $this->renderer->getInputHash() );
|
|
}
|
|
|
|
/**
|
|
* Helper function to set the current state of the sample renderer instance to the test values
|
|
*/
|
|
public function setValues() {
|
|
// set some values
|
|
$this->renderer->setTex( self::SOME_TEX );
|
|
$this->renderer->setMathml( self::SOME_MATHML );
|
|
$this->renderer->setHtml( self::SOME_HTML );
|
|
$this->renderer->setOutputHash( self::SOME_OUTPUTHASH );
|
|
}
|
|
|
|
/**
|
|
* Checks database access. Writes an entry and reads it back.
|
|
* @covers MathRenderer::writeDatabaseEntry()
|
|
* @covers MathRenderer::readDatabaseEntry()
|
|
*/
|
|
public function testDBBasics() {
|
|
$this->setValues();
|
|
$this->renderer->writeToDatabase( $this->db );
|
|
$renderer2 = new MathTexvc( self::SOME_TEX );
|
|
$this->assertTrue( $renderer2->readFromDatabase(), 'Reading from database failed' );
|
|
// comparing the class object does now work due to null values etc.
|
|
$this->assertEquals( $this->renderer->getTex(), $renderer2->getTex(), "test if tex is the same" );
|
|
$this->assertEquals( $this->renderer->getMathml(), $renderer2->getMathml(), "Check MathML encoding" );
|
|
$this->assertEquals( $this->renderer->getHtml(), $renderer2->getHtml(), 'test if HTML is the same' );
|
|
}
|
|
|
|
|
|
/**
|
|
* Checks the creation of the math table.
|
|
* @covers MathHooks::onLoadExtensionSchemaUpdates
|
|
*/
|
|
public function testCreateTable() {
|
|
$this->setMwGlobals( 'wgMathValidModes', array( MW_MATH_PNG ) );
|
|
$this->db->dropTable( "math", __METHOD__ );
|
|
$dbu = DatabaseUpdater::newForDB( $this->db );
|
|
$dbu->doUpdates( array( "extensions" ) );
|
|
$this->expectOutputRegex( '/(.*)Creating math table(.*)/' );
|
|
$this->setValues();
|
|
$this->renderer->writeToDatabase();
|
|
$res = $this->db->select( "math", "*" );
|
|
$row = $res->fetchRow();
|
|
$this->assertEquals( 10, sizeof( $row ) );
|
|
}
|
|
|
|
/*
|
|
* This test checks if no additional write operation
|
|
* is performed, if the entry already existed in the database.
|
|
*/
|
|
public function testNoWrite() {
|
|
$this->setValues();
|
|
$inputHash = $this->renderer->getInputHash();
|
|
$this->assertTrue( $this->renderer->isChanged() );
|
|
$this->assertTrue( $this->renderer->writeCache(), "Write new entry" );
|
|
$res = $this->db->selectField( "math", "math_inputhash",
|
|
array( "math_inputhash" => $inputHash ) );
|
|
$this->assertTrue( $res !== false, "Check database entry" );
|
|
$this->assertTrue( $this->renderer->readFromDatabase(), "Read entry from database" );
|
|
$this->assertFalse( $this->renderer->isChanged() );
|
|
// modify the database entry manually
|
|
$this->db->delete( "math", array( "math_inputhash" => $inputHash ) );
|
|
// the renderer should not be aware of the modification and should not recreate the entry
|
|
$this->assertFalse( $this->renderer->writeCache() );
|
|
// as a result no entry can be found in the database.
|
|
$this->assertFalse( $this->renderer->readFromDatabase() );
|
|
|
|
}
|
|
}
|