gplx/mediawiki/extensions/SemanticMediaWiki/tests/phpunit/MediaWiki/Api/TaskTest.php

247 lines
5.3 KiB
PHP

<?php
namespace SMW\Tests\MediaWiki\Api;
use SMW\MediaWiki\Api\Task;
use SMW\Tests\TestEnvironment;
/**
* @covers \SMW\MediaWiki\Api\Task
* @group semantic-mediawiki
*
* @license GPL-2.0-or-later
* @since 3.0
*
* @author mwjames
*/
class TaskTest extends \PHPUnit\Framework\TestCase {
private $apiFactory;
private $testEnvironment;
protected function setUp(): void {
parent::setUp();
$this->testEnvironment = new TestEnvironment();
$this->apiFactory = $this->testEnvironment->getUtilityFactory()->newMwApiFactory();
}
protected function tearDown(): void {
$this->testEnvironment->tearDown();
parent::tearDown();
}
public function testCanConstruct() {
$instance = new Task(
$this->apiFactory->newApiMain( [] ),
'smwtask'
);
$this->assertInstanceOf(
Task::class,
$instance
);
}
public function testUpdateTask() {
$updateJob = $this->getMockBuilder( '\SMW\MediaWiki\Jobs\UpdateJob' )
->disableOriginalConstructor()
->getMock();
$updateJob->expects( $this->atLeastOnce() )
->method( 'run' );
$jobFactory = $this->getMockBuilder( '\SMW\MediaWiki\JobFactory' )
->disableOriginalConstructor()
->getMock();
$jobFactory->expects( $this->atLeastOnce() )
->method( 'newUpdateJob' )
->willReturn( $updateJob );
$this->testEnvironment->registerObject( 'JobFactory', $jobFactory );
$instance = new Task(
$this->apiFactory->newApiMain( [
'action' => 'smwtask',
'task' => 'update',
'params' => json_encode( [ 'subject' => 'Foo#0##', 'ref' => [ 'Bar' ] ] ),
'token' => 'foo'
]
),
'smwtask'
);
$instance->execute();
}
public function testDupLookupTask() {
$cache = $this->getMockBuilder( '\Onoi\Cache\Cache' )
->disableOriginalConstructor()
->getMock();
$cache->expects( $this->once() )
->method( 'fetch' )
->willReturn( false );
$cache->expects( $this->once() )
->method( 'save' );
$entityTable = $this->getMockBuilder( '\SMW\SQLStore\EntityStore\EntityIdManager' )
->disableOriginalConstructor()
->getMock();
$entityTable->expects( $this->atLeastOnce() )
->method( 'findDuplicates' )
->willReturn( [] );
$store = $this->getMockBuilder( '\SMW\SQLStore\SQLStore' )
->disableOriginalConstructor()
->getMock();
$store->expects( $this->atLeastOnce() )
->method( 'getObjectIds' )
->willReturn( $entityTable );
$this->testEnvironment->registerObject( 'Store', $store );
$this->testEnvironment->registerObject( 'Cache', $cache );
$instance = new Task(
$this->apiFactory->newApiMain(
[
'action' => 'smwtask',
'task' => 'duplicate-lookup',
'params' => json_encode( [] ),
'token' => 'foo'
]
),
'smwtask'
);
$instance->execute();
}
public function testGenericJobTask() {
$nullJob = $this->getMockBuilder( '\SMW\MediaWiki\Jobs\NullJob' )
->disableOriginalConstructor()
->getMock();
$nullJob->expects( $this->atLeastOnce() )
->method( 'insert' );
$jobFactory = $this->getMockBuilder( '\SMW\MediaWiki\JobFactory' )
->disableOriginalConstructor()
->getMock();
$jobFactory->expects( $this->atLeastOnce() )
->method( 'newByType' )
->with(
'Foobar',
$this->anything(),
$this->anything() )
->willReturn( $nullJob );
$this->testEnvironment->registerObject( 'JobFactory', $jobFactory );
$instance = new Task(
$this->apiFactory->newApiMain(
[
'action' => 'smwtask',
'task' => 'insert-job',
'params' => json_encode(
[
'subject' => 'Foo#0##',
'job' => 'Foobar'
]
),
'token' => 'foo'
]
),
'smwtask'
);
$instance->execute();
}
public function testRunJobListTask() {
$title = $this->getMockBuilder( '\MediaWiki\Title\Title' )
->disableOriginalConstructor()
->getMock();
$jobQueue = $this->getMockBuilder( '\SMW\MediaWiki\JobQueue' )
->disableOriginalConstructor()
->getMock();
$jobQueue->expects( $this->atLeastOnce() )
->method( 'runFromQueue' )
->with( [ 'FooJob' => 1 ] )
->willReturn( '--job-done' );
$this->testEnvironment->registerObject( 'JobQueue', $jobQueue );
$instance = new Task(
$this->apiFactory->newApiMain(
[
'action' => 'smwtask',
'task' => 'run-joblist',
'params' => json_encode(
[
'subject' => 'Foo#0##',
'jobs' => [ 'FooJob' => 1 ]
]
),
'token' => 'foo'
]
),
'smwtask'
);
$instance->execute();
}
public function testCheckQueryTask() {
$queryResult = $this->getMockBuilder( '\SMW\Query\QueryResult' )
->disableOriginalConstructor()
->getMock();
$store = $this->getMockBuilder( '\SMW\Store' )
->disableOriginalConstructor()
->getMockForAbstractClass();
$store->expects( $this->atLeastOnce() )
->method( 'getQueryResult' )
->willReturn( $queryResult );
$this->testEnvironment->registerObject( 'Store', $store );
$instance = new Task(
$this->apiFactory->newApiMain(
[
'action' => 'smwtask',
'task' => 'check-query',
'params' => json_encode(
[
'subject' => 'Foo#0##',
'query' => [
'query_hash_1#result_hash_2' => [
'parameters' => [
'limit' => 5,
'offset' => 0,
'querymode' => 1
],
'conditions' => ''
]
]
]
),
'token' => 'foo'
]
),
'smwtask'
);
$instance->execute();
}
}