1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<?php
use MediaWiki\Http\HttpRequestFactory;
use MediaWiki\Shell\ShellboxClientFactory;
use Shellbox\RPC\RpcClient;
/**
* @group Shell
* @covers \MediaWiki\Shell\ShellboxClientFactory
*/
class ShellboxClientFactoryTest extends MediaWikiUnitTestCase {
/** @dataProvider provideEnabledArgs */
public function testIsEnabled( ?array $urls, ?string $service, bool $expected ): void {
$shellboxClientFactory = new ShellboxClientFactory(
$this->createMock( HttpRequestFactory::class ),
$urls,
'key'
);
$actual = $shellboxClientFactory->isEnabled( $service );
$this->assertSame( $expected, $actual );
}
public static function provideEnabledArgs(): iterable {
yield 'not configured, default service' => [
'urls' => null,
'service' => null,
'expected' => false,
];
yield 'not configured, custom service' => [
'urls' => null,
'service' => 'custom',
'expected' => false,
];
yield 'default configured, default service' => [
'urls' => [ 'default' => 'http://example.com' ],
'service' => null,
'expected' => true,
];
yield 'default configured, custom service' => [
'urls' => [ 'default' => 'http://example.com' ],
'service' => 'custom',
'expected' => true,
];
yield 'custom configured, custom service' => [
'urls' => [ 'custom' => 'http://example.com' ],
'service' => 'custom',
'expected' => true,
];
yield 'custom disabled, default service' => [
'urls' => [
'default' => 'http://example.com',
'custom' => false,
],
'service' => 'default',
'expected' => true,
];
yield 'custom disabled, custom service' => [
'urls' => [
'default' => 'http://example.com',
'custom' => false,
],
'service' => 'custom',
'expected' => false,
];
}
public function testIsEnabledWithoutKey(): void {
$shellboxClientFactory = new ShellboxClientFactory(
$this->createMock( HttpRequestFactory::class ),
[ 'default' => 'http://example.com' ],
null
);
$this->assertFalse( $shellboxClientFactory->isEnabled() );
}
public function testGetRemoteRpcClientNotEnabled() {
$shellboxClientFactory = new ShellboxClientFactory(
$this->createMock( HttpRequestFactory::class ),
null,
'key'
);
$this->expectException( RuntimeException::class );
$shellboxClientFactory->getRemoteRpcClient();
}
public function testGetRpcClientNotEnabled() {
$shellboxClientFactory = new ShellboxClientFactory(
$this->createMock( HttpRequestFactory::class ),
null,
'key'
);
$this->assertInstanceOf( RpcClient::class, $shellboxClientFactory->getRpcClient() );
}
}
|