165 lines
3.1 KiB
PHP
165 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests\MediaWiki\Jobs;
|
|
|
|
use MediaWiki\MediaWikiServices;
|
|
use SMW\MediaWiki\Jobs\RefreshJob;
|
|
use SMW\Services\ServicesFactory as ApplicationFactory;
|
|
|
|
/**
|
|
* @covers \SMW\MediaWiki\Jobs\RefreshJob
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 1.9
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class RefreshJobTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
/** @var int */
|
|
protected $controlRefreshDataIndex;
|
|
|
|
private $applicationFactory;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$this->applicationFactory = ApplicationFactory::getInstance();
|
|
|
|
$store = $this->getMockBuilder( '\SMW\Store' )
|
|
->disableOriginalConstructor()
|
|
->getMockForAbstractClass();
|
|
|
|
$this->applicationFactory->registerObject( 'Store', $store );
|
|
}
|
|
|
|
protected function tearDown(): void {
|
|
$this->applicationFactory->clear();
|
|
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testCanConstruct() {
|
|
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$this->assertInstanceOf(
|
|
'SMW\MediaWiki\Jobs\RefreshJob',
|
|
new RefreshJob( $title )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider parameterDataProvider
|
|
*/
|
|
public function testRunJobOnMockStore( $parameters, $expected ) {
|
|
$title = MediaWikiServices::getInstance()->getTitleFactory()->newFromText( __METHOD__ );
|
|
|
|
$expectedToRun = $expected['spos'] === null ? $this->once() : $this->once();
|
|
|
|
$rebuilder = $this->getMockBuilder( '\SMW\SQLStore\Rebuilder\Rebuilder' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$rebuilder->expects( $this->any() )
|
|
->method( 'rebuild' )
|
|
->willReturn( $parameters['spos'] );
|
|
|
|
$store = $this->getMockBuilder( '\SMW\Store' )
|
|
->setMethods( [ 'refreshData' ] )
|
|
->getMockForAbstractClass();
|
|
|
|
$store->expects( $expectedToRun )
|
|
->method( 'refreshData' )
|
|
->willReturn( $rebuilder );
|
|
|
|
$this->applicationFactory->registerObject( 'Store', $store );
|
|
|
|
$instance = new RefreshJob( $title, $parameters );
|
|
$instance->isEnabledJobQueue( false );
|
|
|
|
$this->assertTrue( $instance->run() );
|
|
|
|
$this->assertEquals(
|
|
$expected['progress'],
|
|
$instance->getProgress(),
|
|
"Asserts that the getProgress() returns {$expected['progress']}"
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function parameterDataProvider() {
|
|
$provider = [];
|
|
|
|
// #0 Empty
|
|
$provider[] = [
|
|
[
|
|
'spos' => null
|
|
],
|
|
[
|
|
'progress' => 0,
|
|
'spos' => null
|
|
]
|
|
];
|
|
|
|
// #1 Initial
|
|
$provider[] = [
|
|
[
|
|
'spos' => 1,
|
|
'prog' => 0,
|
|
'rc' => 1
|
|
],
|
|
[
|
|
'progress' => 0,
|
|
'spos' => 1
|
|
]
|
|
];
|
|
|
|
// #2
|
|
$provider[] = [
|
|
[
|
|
'spos' => 1,
|
|
'run' => 1,
|
|
'prog' => 10,
|
|
'rc' => 1
|
|
],
|
|
[
|
|
'progress' => 10,
|
|
'spos' => 1
|
|
]
|
|
];
|
|
|
|
// #3 Initiates another run from the beginning
|
|
$provider[] = [
|
|
[
|
|
'spos' => 0,
|
|
'run' => 1,
|
|
'prog' => 10,
|
|
'rc' => 2
|
|
],
|
|
[
|
|
'progress' => 5,
|
|
'spos' => 0
|
|
]
|
|
];
|
|
|
|
return $provider;
|
|
}
|
|
|
|
/**
|
|
* @see Store::refreshData
|
|
*
|
|
* @since 1.9
|
|
*
|
|
* @param int &$index
|
|
*/
|
|
public function refreshDataCallback( &$index ) {
|
|
$this->controlRefreshDataIndex = $index;
|
|
}
|
|
|
|
}
|