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
|
<?php
namespace Doctrine\DBAL\Tests\Events;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\Event\ConnectionEventArgs;
use Doctrine\DBAL\Event\Listeners\OracleSessionInit;
use Doctrine\DBAL\Events;
use PHPUnit\Framework\TestCase;
use function sprintf;
class OracleSessionInitTest extends TestCase
{
public function testPostConnect(): void
{
$connectionMock = $this->createMock(Connection::class);
$connectionMock->expects(self::once())
->method('executeStatement')
->with(self::isType('string'));
$eventArgs = new ConnectionEventArgs($connectionMock);
$listener = new OracleSessionInit();
$listener->postConnect($eventArgs);
}
/** @dataProvider getPostConnectWithSessionParameterValuesData */
public function testPostConnectQuotesSessionParameterValues(string $name, string $value): void
{
$connectionMock = $this->getMockBuilder(Connection::class)
->disableOriginalConstructor()
->getMock();
$connectionMock->expects(self::once())
->method('executeStatement')
->with(self::stringContains(sprintf('%s = %s', $name, $value)));
$eventArgs = new ConnectionEventArgs($connectionMock);
$listener = new OracleSessionInit([$name => $value]);
$listener->postConnect($eventArgs);
}
/** @return array<int, array<int, mixed>> */
public static function getPostConnectWithSessionParameterValuesData(): iterable
{
return [
['CURRENT_SCHEMA', 'foo'],
];
}
public function testGetSubscribedEvents(): void
{
$listener = new OracleSessionInit();
self::assertEquals([Events::postConnect], $listener->getSubscribedEvents());
}
}
|