73 lines
1.4 KiB
PHP
73 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace SMW\Tests\Connection;
|
|
|
|
use SMW\Connection\ConnRef;
|
|
use SMW\Tests\PHPUnitCompat;
|
|
|
|
/**
|
|
* @covers \SMW\Connection\ConnRef
|
|
* @group semantic-mediawiki
|
|
*
|
|
* @license GPL-2.0-or-later
|
|
* @since 3.0
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class ConnRefTest extends \PHPUnit\Framework\TestCase {
|
|
|
|
use PHPUnitCompat;
|
|
|
|
public function testCanConstruct() {
|
|
$this->assertInstanceOf(
|
|
ConnRef::class,
|
|
new ConnRef( [] )
|
|
);
|
|
}
|
|
|
|
public function testGetAndReleaseConnection() {
|
|
$connectionProvider = $this->getMockBuilder( '\SMW\Connection\ConnectionProvider' )
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$connectionProvider->expects( $this->once() )
|
|
->method( 'getConnection' )
|
|
->willReturn( 'Bar' );
|
|
|
|
$connectionProvider->expects( $this->once() )
|
|
->method( 'releaseConnection' );
|
|
|
|
$instance = new ConnRef(
|
|
[
|
|
'Foo' => $connectionProvider
|
|
]
|
|
);
|
|
|
|
$this->assertEquals(
|
|
'Bar',
|
|
$instance->getConnection( 'Foo' )
|
|
);
|
|
|
|
$instance->releaseConnections();
|
|
}
|
|
|
|
public function testNoMatchableConnectionProviderThrowsException() {
|
|
$instance = new ConnRef(
|
|
[
|
|
'Foo' => 'Bar'
|
|
]
|
|
);
|
|
|
|
$this->expectException( 'RuntimeException' );
|
|
$instance->getConnection( 'Foo' );
|
|
}
|
|
|
|
public function testNoMatchableKeyThrowsException() {
|
|
$instance = new ConnRef( [] );
|
|
|
|
$this->expectException( 'RuntimeException' );
|
|
$instance->getConnection( 'Foo' );
|
|
}
|
|
|
|
}
|