479 lines
11 KiB
PHP
479 lines
11 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests;
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use MediaWiki\Parser\ParserOptions;
|
|
use MediaWiki\Parser\ParserOutput;
|
|
use MediaWiki\Title\Title;
|
|
use SMW\DataValueFactory;
|
|
use SMW\DIWikiPage;
|
|
use SMW\ParserData;
|
|
use SMW\SemanticData;
|
|
|
|
/**
|
|
* @covers \SMW\ParserData
|
|
* @group semantic-mediawiki
|
|
* @group Database
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 1.9
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class ParserDataTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
private $semanticDataValidator;
|
|
private $dataValueFactory;
|
|
private $revisionGuard;
|
|
private $testEnvironment;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->testEnvironment = new TestEnvironment();
|
|
|
|
$this->semanticDataValidator = $this->testEnvironment->getUtilityFactory()->newValidatorFactory()->newSemanticDataValidator();
|
|
$this->dataValueFactory = DataValueFactory::getInstance();
|
|
|
|
$this->revisionGuard = $this->getMockBuilder( '\SMW\MediaWiki\RevisionGuard' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->testEnvironment->registerObject( 'RevisionGuard', $this->revisionGuard );
|
|
}
|
|
|
|
protected function tearDown(): void {
|
|
$this->testEnvironment->tearDown();
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$title->expects( $this->once() )
|
|
->method( 'getNamespace' )
|
|
->willReturn( -1 );
|
|
|
|
$parserOutput = $this->getMockBuilder( ParserOutput::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\ParserData',
|
|
new ParserData( $title, $parserOutput )
|
|
);
|
|
}
|
|
|
|
public function testInitialDataIsEmpty() {
|
|
$title = MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ );
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
|
|
$this->assertTrue(
|
|
$instance->getSemanticData()->isEmpty()
|
|
);
|
|
}
|
|
|
|
public function testUpdateJobState() {
|
|
$title = MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ );
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
|
|
$instance->setOption( ParserData::OPT_CREATE_UPDATE_JOB, false );
|
|
|
|
$this->assertFalse(
|
|
$instance->getOption( ParserData::OPT_CREATE_UPDATE_JOB )
|
|
);
|
|
}
|
|
|
|
public function testGetterInstances() {
|
|
$title = MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ );
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
|
|
$this->assertInstanceOf(
|
|
Title::class,
|
|
$instance->getTitle()
|
|
);
|
|
|
|
$this->assertInstanceOf(
|
|
ParserOutput::class,
|
|
$instance->getOutput()
|
|
);
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\DIWikiPage',
|
|
$instance->getSubject()
|
|
);
|
|
}
|
|
|
|
public function testAddDataVlaueAndClear() {
|
|
$title = MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ );
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
|
|
$this->assertTrue(
|
|
$instance->getSemanticData()->isEmpty()
|
|
);
|
|
|
|
$instance->addDataValue(
|
|
$this->dataValueFactory->newDataValueByText( 'Foo', 'Bar' )
|
|
);
|
|
|
|
$this->assertFalse(
|
|
$instance->getSemanticData()->isEmpty()
|
|
);
|
|
|
|
$instance->setEmptySemanticData();
|
|
|
|
$this->assertTrue(
|
|
$instance->getSemanticData()->isEmpty()
|
|
);
|
|
}
|
|
|
|
public function testAddDataValueAndPushSemanticDataToParserOutput() {
|
|
$titleFactory = MediaWikiServices::getInstance()->getTitleFactory();
|
|
|
|
$title = $titleFactory->newFromText( __METHOD__ );
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
|
|
$instance->addDataValue(
|
|
$this->dataValueFactory->newDataValueByText( 'Foo', 'Bar' )
|
|
);
|
|
|
|
$this->assertFalse( $instance->getSemanticData()->isEmpty() );
|
|
$instance->pushSemanticDataToParserOutput();
|
|
|
|
$title = $titleFactory->newFromText( __METHOD__ . '-1' );
|
|
|
|
$newInstance = new ParserData( $title, $instance->getOutput() );
|
|
|
|
$this->assertEquals(
|
|
$instance->getSemanticData()->getHash(),
|
|
$newInstance->getSemanticData()->getHash()
|
|
);
|
|
}
|
|
|
|
public function testSetGetSemanticData() {
|
|
$titleFactory = MediaWikiServices::getInstance()->getTitleFactory();
|
|
|
|
$title = $titleFactory->newFromText( __METHOD__ );
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
|
|
$this->assertTrue( $instance->getSemanticData()->isEmpty() );
|
|
|
|
$semanticData = new SemanticData(
|
|
DIWikiPage::newFromTitle( $titleFactory->newFromText( __METHOD__ ) )
|
|
);
|
|
|
|
$semanticData->addDataValue(
|
|
$this->dataValueFactory->newDataValueByText( 'Foo', 'Bar' )
|
|
);
|
|
|
|
$instance->setSemanticData( $semanticData );
|
|
|
|
$this->assertFalse( $instance->getSemanticData()->isEmpty() );
|
|
|
|
$this->assertEquals(
|
|
$semanticData->getHash(),
|
|
$instance->getSemanticData()->getHash()
|
|
);
|
|
}
|
|
|
|
public function getPropertyValueDataProvider() {
|
|
return [
|
|
[ 'Foo', 'Bar', 0, 1 ],
|
|
[ '-Foo', 'Bar', 1, 0 ],
|
|
[ '_Foo', 'Bar', 1, 0 ],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getPropertyValueDataProvider
|
|
*/
|
|
public function testAddDataValue( $propertyName, $value, $errorCount, $propertyCount ) {
|
|
$title = MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ );
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
|
|
$instance->addDataValue(
|
|
$this->dataValueFactory->newDataValueByText(
|
|
$propertyName,
|
|
$value
|
|
)
|
|
);
|
|
|
|
if ( $errorCount > 0 ) {
|
|
return $this->assertCount( $errorCount, $instance->getSemanticData()->getErrors() );
|
|
}
|
|
|
|
$expected = [
|
|
'propertyCount' => $propertyCount,
|
|
'propertyLabels' => $propertyName,
|
|
'propertyValues' => $value
|
|
];
|
|
|
|
$this->semanticDataValidator->assertThatPropertiesAreSet(
|
|
$expected,
|
|
$instance->getSemanticData()
|
|
);
|
|
}
|
|
|
|
public function testUpdateStore() {
|
|
$idTable = $this->getMockBuilder( '\stdClass' )
|
|
->setMethods( [ 'exists', 'findAssociatedRev' ] )
|
|
->getMock();
|
|
|
|
$idTable->expects( $this->any() )
|
|
->method( 'exists' )
|
|
->willReturn( true );
|
|
|
|
$idTable->expects( $this->any() )
|
|
->method( 'findAssociatedRev' )
|
|
->willReturn( 42 );
|
|
|
|
$store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
|
|
->disableOriginalConstructor()
|
|
->setMethods( [ 'clearData', 'getObjectIds' ] )
|
|
->getMock();
|
|
|
|
$store->expects( $this->once() )
|
|
->method( 'clearData' );
|
|
|
|
$store->expects( $this->any() )
|
|
->method( 'getObjectIds' )
|
|
->willReturn( $idTable );
|
|
|
|
$this->testEnvironment->registerObject( 'Store', $store );
|
|
|
|
$instance = new ParserData(
|
|
MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ ),
|
|
new ParserOutput()
|
|
);
|
|
|
|
$this->assertTrue(
|
|
$instance->updateStore()
|
|
);
|
|
}
|
|
|
|
public function testSkipUpdateOnMatchedMarker() {
|
|
$this->revisionGuard->expects( $this->once() )
|
|
->method( 'isSkippableUpdate' )
|
|
->willReturn( true );
|
|
|
|
$this->testEnvironment->registerObject( 'RevisionGuard', $this->revisionGuard );
|
|
|
|
$title = $this->getMockBuilder( Title::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$title->expects( $this->any() )
|
|
->method( 'getNamespace' )
|
|
->willReturn( NS_MAIN );
|
|
|
|
$title->expects( $this->any() )
|
|
->method( 'getLatestRevID' )
|
|
->willReturn( 42 );
|
|
|
|
$logger = $this->getMockBuilder( '\Psr\Log\LoggerInterface' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$instance = new ParserData(
|
|
$title,
|
|
new ParserOutput()
|
|
);
|
|
|
|
$instance->setLogger( $logger );
|
|
|
|
$this->assertFalse(
|
|
$instance->updateStore()
|
|
);
|
|
}
|
|
|
|
public function testHasSemanticData() {
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData(
|
|
MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ ),
|
|
$parserOutput
|
|
);
|
|
|
|
$this->assertFalse(
|
|
$instance->hasSemanticData( $parserOutput )
|
|
);
|
|
|
|
$instance->addDataValue(
|
|
$this->dataValueFactory->newDataValueByText(
|
|
'Foo',
|
|
'Bar'
|
|
)
|
|
);
|
|
|
|
$instance->markParserOutput();
|
|
|
|
$this->assertTrue(
|
|
$instance->hasSemanticData( $parserOutput )
|
|
);
|
|
}
|
|
|
|
public function testImportFromParserOutput() {
|
|
$titleFactory = MediaWikiServices::getInstance()->getTitleFactory();
|
|
|
|
$import = new ParserData(
|
|
$titleFactory->newFromText( __METHOD__ ),
|
|
new ParserOutput()
|
|
);
|
|
|
|
$import->addDataValue(
|
|
$this->dataValueFactory->newDataValueByText(
|
|
'Foo',
|
|
'Bar'
|
|
)
|
|
);
|
|
|
|
$import->pushSemanticDataToParserOutput();
|
|
|
|
$instance = new ParserData(
|
|
$titleFactory->newFromText( __METHOD__ ),
|
|
new ParserOutput()
|
|
);
|
|
|
|
$instance->importFromParserOutput( null );
|
|
|
|
$this->assertNotEquals(
|
|
$import->getSemanticData()->getHash(),
|
|
$instance->getSemanticData()->getHash()
|
|
);
|
|
|
|
$instance->importFromParserOutput( $import->getOutput() );
|
|
|
|
$this->assertEquals(
|
|
$import->getSemanticData()->getHash(),
|
|
$instance->getSemanticData()->getHash()
|
|
);
|
|
}
|
|
|
|
public function testAddLimitReport() {
|
|
$title = $this->getMockBuilder( Title::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$title->expects( $this->once() )
|
|
->method( 'getNamespace' )
|
|
->willReturn( -1 );
|
|
|
|
$parserOutput = $this->getMockBuilder( ParserOutput::class )
|
|
->disableOriginalConstructor()
|
|
->setMethods( [ 'setLimitReportData' ] )
|
|
->getMock();
|
|
|
|
$parserOutput->expects( $this->once() )
|
|
->method( 'setLimitReportData' )
|
|
->with(
|
|
$this->stringContains( 'smw-limitreport-Foo' ),
|
|
$this->stringContains( 'Bar' ) );
|
|
|
|
$instance = new ParserData( $title, $parserOutput );
|
|
$instance->addLimitReport( 'Foo', 'Bar' );
|
|
}
|
|
|
|
public function testIsBlocked() {
|
|
$title = $this->getMockBuilder( Title::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$title->expects( $this->once() )
|
|
->method( 'getNamespace' )
|
|
->willReturn( -1 );
|
|
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData(
|
|
$title,
|
|
$parserOutput
|
|
);
|
|
|
|
$this->assertFalse(
|
|
$instance->isBlocked()
|
|
);
|
|
|
|
$parserOutput->setExtensionData( ParserData::ANNOTATION_BLOCK, true );
|
|
|
|
$this->assertTrue(
|
|
$instance->isBlocked()
|
|
);
|
|
}
|
|
|
|
public function testSetGetOption() {
|
|
$title = $this->getMockBuilder( Title::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$title->expects( $this->once() )
|
|
->method( 'getNamespace' )
|
|
->willReturn( -1 );
|
|
|
|
$parserOutput = new ParserOutput();
|
|
|
|
$instance = new ParserData(
|
|
$title,
|
|
$parserOutput
|
|
);
|
|
|
|
$instance->setOption( $instance::NO_QUERY_DEPENDENCY_TRACE, true );
|
|
|
|
$this->assertTrue(
|
|
$instance->getOption( $instance::NO_QUERY_DEPENDENCY_TRACE )
|
|
);
|
|
}
|
|
|
|
public function testAddExtraParserKey() {
|
|
$parserOptions = $this->getMockBuilder( ParserOptions::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$parserOptions->expects( $this->once() )
|
|
->method( 'addExtraKey' )
|
|
->with( $this->stringContains( 'Foo' ) );
|
|
|
|
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$title->expects( $this->once() )
|
|
->method( 'getNamespace' )
|
|
->willReturn( -1 );
|
|
|
|
$parserOutput = $this->getMockBuilder( ParserOutput::class )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$parserOutput->expects( $this->once() )
|
|
->method( 'recordOption' )
|
|
->with( $this->stringContains( 'userlang' ) );
|
|
|
|
$instance = new ParserData(
|
|
$title,
|
|
$parserOutput
|
|
);
|
|
|
|
$instance->setParserOptions( $parserOptions );
|
|
$instance->addExtraParserKey( 'Foo' );
|
|
$instance->addExtraParserKey( 'userlang' );
|
|
}
|
|
|
|
}
|