189 lines
4.0 KiB
PHP
189 lines
4.0 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests\SQLStore;
|
|
|
|
use SMW\SQLStore\PropertyTableDefinition;
|
|
use SMW\SQLStore\PropertyTableDefinitionBuilder;
|
|
use SMW\Tests\Utils\MwHooksHandler;
|
|
use SMWDataItem as DataItem;
|
|
|
|
/**
|
|
* @covers \SMW\SQLStore\PropertyTableDefinitionBuilder
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 1.9
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class PropertyTableDefinitionBuilderTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
private $propertyTypeFinder;
|
|
private $mwHooksHandler;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->mwHooksHandler = new MwHooksHandler();
|
|
$this->mwHooksHandler->deregisterListedHooks();
|
|
|
|
$this->propertyTypeFinder = $this->getMockBuilder( '\SMW\SQLStore\PropertyTypeFinder' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
}
|
|
|
|
protected function tearDown(): void {
|
|
$this->mwHooksHandler->restoreListedHooks();
|
|
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$dataItems = [];
|
|
$specials = [];
|
|
$fixed = [];
|
|
|
|
$this->assertInstanceOf(
|
|
PropertyTableDefinitionBuilder::class,
|
|
new PropertyTableDefinitionBuilder( $this->propertyTypeFinder )
|
|
);
|
|
}
|
|
|
|
public function testDataItemTypes() {
|
|
$dataItems = [ DataItem::TYPE_NUMBER => 'smw_di_number' ];
|
|
$specials = [];
|
|
$fixed = [];
|
|
|
|
$instance = new PropertyTableDefinitionBuilder(
|
|
$this->propertyTypeFinder
|
|
);
|
|
|
|
$instance->doBuild(
|
|
$dataItems,
|
|
$specials,
|
|
$fixed
|
|
);
|
|
|
|
$definition = $instance->newTableDefinition(
|
|
DataItem::TYPE_NUMBER, 'smw_di_number'
|
|
);
|
|
|
|
$definition->setTableType( PropertyTableDefinition::TYPE_CORE );
|
|
|
|
$expected = [
|
|
'smw_di_number' => $definition
|
|
];
|
|
|
|
$this->assertEquals(
|
|
$expected,
|
|
$instance->getTableDefinitions()
|
|
);
|
|
}
|
|
|
|
public function testUserDefinedFixedPropertyDeclaration() {
|
|
$propertyKey = 'foo bar';
|
|
$expectedKey = 'Foo_bar';
|
|
|
|
$dataItems = [];
|
|
$specials = [];
|
|
$fixed = [ $propertyKey ];
|
|
|
|
$this->propertyTypeFinder->expects( $this->any() )
|
|
->method( 'findTypeID' )
|
|
->willReturn( '_num' );
|
|
|
|
$instance = new PropertyTableDefinitionBuilder(
|
|
$this->propertyTypeFinder
|
|
);
|
|
|
|
$instance->doBuild(
|
|
$dataItems,
|
|
$specials,
|
|
$fixed
|
|
);
|
|
|
|
$tableName = $instance->createHashedTableNameFrom( $expectedKey );
|
|
$definition = $instance->newTableDefinition( DataItem::TYPE_NUMBER, $tableName, $expectedKey );
|
|
|
|
$definition->setTableType( PropertyTableDefinition::TYPE_CORE );
|
|
|
|
$expected = [
|
|
'definition' => [ $tableName => $definition ],
|
|
'tableId' => [ $expectedKey => $tableName, '_SKEY' => null ]
|
|
];
|
|
|
|
$this->assertEquals(
|
|
$expected['definition'],
|
|
$instance->getTableDefinitions()
|
|
);
|
|
|
|
$this->assertEquals(
|
|
$expected['tableId'],
|
|
$instance->getFixedPropertyTableIds()
|
|
);
|
|
}
|
|
|
|
public function testSpecialProperties() {
|
|
$propertyKey = '_MDAT';
|
|
|
|
$dataItems = [];
|
|
$specials = [ $propertyKey ];
|
|
$fixed = [];
|
|
|
|
$instance = new PropertyTableDefinitionBuilder(
|
|
$this->propertyTypeFinder
|
|
);
|
|
|
|
$instance->doBuild(
|
|
$dataItems,
|
|
$specials,
|
|
$fixed
|
|
);
|
|
|
|
$tableName = $instance->getTablePrefix() . strtolower( $propertyKey );
|
|
|
|
$definition = $instance->newTableDefinition( DataItem::TYPE_TIME, $tableName, $propertyKey );
|
|
$definition->setTableType( PropertyTableDefinition::TYPE_CORE );
|
|
|
|
$expected = [ $tableName => $definition ];
|
|
|
|
$this->assertEquals(
|
|
$expected,
|
|
$instance->getTableDefinitions()
|
|
);
|
|
}
|
|
|
|
public function testRedirects() {
|
|
$propertyKey = '_REDI';
|
|
|
|
$dataItems = [];
|
|
$specials = [ $propertyKey ];
|
|
$fixed = [];
|
|
|
|
$instance = new PropertyTableDefinitionBuilder(
|
|
$this->propertyTypeFinder
|
|
);
|
|
|
|
$instance->doBuild(
|
|
$dataItems,
|
|
$specials,
|
|
$fixed
|
|
);
|
|
|
|
$tableName = $instance->getTablePrefix() . strtolower( $propertyKey );
|
|
$definition = $instance->newTableDefinition( DataItem::TYPE_WIKIPAGE, $tableName, $propertyKey );
|
|
|
|
$expected = [ $tableName => $definition ];
|
|
$tableDefinitions = $instance->getTableDefinitions();
|
|
|
|
$this->assertTrue(
|
|
$tableDefinitions[$tableName]->isTableType( PropertyTableDefinition::TYPE_CORE )
|
|
);
|
|
|
|
$this->assertFalse(
|
|
$tableDefinitions[$tableName]->usesIdSubject()
|
|
);
|
|
}
|
|
|
|
}
|