119 lines
2.5 KiB
PHP
119 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests;
|
|
|
|
use SMW\QueryFactory;
|
|
use SMW\StringCondition;
|
|
|
|
/**
|
|
* @covers \SMW\QueryFactory
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 2.4
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class QueryFactoryTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
public function testCanConstruct() {
|
|
$this->assertInstanceOf(
|
|
'\SMW\QueryFactory',
|
|
new QueryFactory()
|
|
);
|
|
}
|
|
|
|
public function testCanConstructProfileAnnotatorFactory() {
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\Query\ProfileAnnotatorFactory',
|
|
$instance->newProfileAnnotatorFactory()
|
|
);
|
|
}
|
|
|
|
public function testCanConstructQuery() {
|
|
$description = $this->getMockBuilder( '\SMW\Query\Language\Description' )
|
|
->disableOriginalConstructor()
|
|
->getMockForAbstractClass();
|
|
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMWQuery',
|
|
$instance->newQuery( $description )
|
|
);
|
|
}
|
|
|
|
public function testCanConstructDescriptionFactory() {
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\Query\DescriptionFactory',
|
|
$instance->newDescriptionFactory()
|
|
);
|
|
}
|
|
|
|
public function testCanConstructPrintRequestFactory() {
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\Query\PrintRequestFactory',
|
|
$instance->newPrintRequestFactory()
|
|
);
|
|
}
|
|
|
|
public function testCanConstructRequestOptions() {
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\RequestOptions',
|
|
$instance->newRequestOptions()
|
|
);
|
|
}
|
|
|
|
public function testCanConstructStringCondition() {
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\StringCondition',
|
|
$instance->newStringCondition( '', StringCondition::STRCOND_PRE )
|
|
);
|
|
}
|
|
|
|
public function testCanConstructQueryParser() {
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\Query\Parser',
|
|
$instance->newQueryParser()
|
|
);
|
|
}
|
|
|
|
public function testCanConstructQueryResult() {
|
|
$description = $this->getMockBuilder( '\SMW\Query\Language\Description' )
|
|
->disableOriginalConstructor()
|
|
->getMockForAbstractClass();
|
|
|
|
$store = $this->getMockBuilder( '\SMW\Store' )
|
|
->disableOriginalConstructor()
|
|
->getMockForAbstractClass();
|
|
|
|
$query = $this->getMockBuilder( '\SMWQuery' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$query->expects( $this->once() )
|
|
->method( 'getDescription' )
|
|
->willReturn( $description );
|
|
|
|
$instance = new QueryFactory();
|
|
|
|
$this->assertInstanceOf(
|
|
'\SMW\Query\QueryResult',
|
|
$instance->newQueryResult( $store, $query )
|
|
);
|
|
}
|
|
|
|
}
|