89 lines
2.0 KiB
PHP
89 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests;
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use SMW\DIWikiPage;
|
|
use SMW\SpecialConcepts;
|
|
|
|
/**
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 1.9
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class SpecialConceptsTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
private $stringValidator;
|
|
private $testEnvironment;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->testEnvironment = new TestEnvironment();
|
|
$this->stringValidator = $this->testEnvironment->newValidatorFactory()->newStringValidator();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$this->assertInstanceOf(
|
|
SpecialConcepts::class,
|
|
new SpecialConcepts()
|
|
);
|
|
}
|
|
|
|
public function testExecute() {
|
|
$expected = 'p class="smw-special-concept-docu plainlinks"';
|
|
|
|
$outputPage = $this->getMockBuilder( '\MediaWiki\Output\OutputPage' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$outputPage->expects( $this->atLeastOnce() )
|
|
->method( 'addHtml' )
|
|
->with( $this->stringContains( $expected ) );
|
|
|
|
$query = '';
|
|
$instance = new SpecialConcepts();
|
|
|
|
$instance->getContext()->setTitle(
|
|
MediaWikiServices::getInstance()->getTitleFactory()->newFromText( 'SemanticMadiaWiki' )
|
|
);
|
|
|
|
$oldOutput = $instance->getOutput();
|
|
|
|
$instance->getContext()->setOutput( $outputPage );
|
|
$instance->execute( $query );
|
|
|
|
// Context is static avoid any succeeding tests to fail
|
|
$instance->getContext()->setOutput( $oldOutput );
|
|
}
|
|
|
|
/**
|
|
* @depends testExecute
|
|
*/
|
|
public function testGetHtmlForAnEmptySubject() {
|
|
$instance = new SpecialConcepts();
|
|
|
|
$this->stringValidator->assertThatStringContains(
|
|
'div class="smw-special-concept-empty"',
|
|
$instance->getHtml( [], 0, 0 )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @depends testGetHtmlForAnEmptySubject
|
|
*/
|
|
public function testGetHtmlForSingleSubject() {
|
|
$subject = DIWikiPage::newFromText( __METHOD__ );
|
|
$instance = new SpecialConcepts();
|
|
|
|
$this->stringValidator->assertThatStringContains(
|
|
'div class="smw-special-concept-count"',
|
|
$instance->getHtml( [ $subject ], 1, 0 )
|
|
);
|
|
}
|
|
|
|
}
|