111 lines
2.4 KiB
PHP
111 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests\MediaWiki\Specials;
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use MediaWiki\Request\FauxRequest;
|
|
use SMW\MediaWiki\Specials\SpecialPageProperty;
|
|
use SMW\Tests\TestEnvironment;
|
|
|
|
/**
|
|
* @covers \SMW\MediaWiki\Specials\SpecialPageProperty
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 3.0
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class SpecialPagePropertyTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
private $testEnvironment;
|
|
private $stringValidator;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->testEnvironment = new TestEnvironment();
|
|
|
|
$store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
|
|
->disableOriginalConstructor()
|
|
->setMethods( [ 'getPropertyValues', 'service' ] )
|
|
->getMock();
|
|
|
|
$store->expects( $this->any() )
|
|
->method( 'getPropertyValues' )
|
|
->willReturn( [] );
|
|
|
|
$this->testEnvironment->registerObject( 'Store', $store );
|
|
$this->stringValidator = $this->testEnvironment->newValidatorFactory()->newStringValidator();
|
|
}
|
|
|
|
protected function tearDown(): void {
|
|
$this->testEnvironment->tearDown();
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$this->assertInstanceOf(
|
|
'\SMW\MediaWiki\Specials\SpecialPageProperty',
|
|
new SpecialPageProperty()
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider queryParameterProvider
|
|
*/
|
|
public function testQueryParameter( $query, $expected ) {
|
|
$instance = new SpecialPageProperty();
|
|
|
|
$instance->getContext()->setTitle(
|
|
MediaWikiServices::getInstance()->getTitleFactory()->newFromText( 'PageProperty' )
|
|
);
|
|
|
|
$instance->execute( $query );
|
|
|
|
$this->stringValidator->assertThatStringContains(
|
|
$expected,
|
|
$instance->getOutput()->getHtml()
|
|
);
|
|
}
|
|
|
|
public function testRequestParameter() {
|
|
$request = [
|
|
'type' => 'Has subobject',
|
|
'from' => 'Bar'
|
|
];
|
|
|
|
$expected = [
|
|
'value="Has subobject"', 'value="Bar"'
|
|
];
|
|
|
|
$instance = new SpecialPageProperty();
|
|
|
|
$instance->getContext()->setTitle(
|
|
MediaWikiServices::getInstance()->getTitleFactory()->newFromText( 'PageProperty' )
|
|
);
|
|
|
|
$instance->getContext()->setRequest(
|
|
new FauxRequest( $request, true )
|
|
);
|
|
|
|
$instance->execute( null );
|
|
|
|
$this->stringValidator->assertThatStringContains(
|
|
$expected,
|
|
$instance->getOutput()->getHtml()
|
|
);
|
|
}
|
|
|
|
public function queryParameterProvider() {
|
|
# 0
|
|
$provider[] = [
|
|
'Has page::Has prop',
|
|
[ 'type=Has+prop', 'from=Has+page' ]
|
|
];
|
|
|
|
return $provider;
|
|
}
|
|
|
|
}
|