1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-26 20:15:02 +01:00
postgres/test/PgSqlPoolTest.php

83 lines
2.4 KiB
PHP
Raw Permalink Normal View History

2017-11-06 01:12:12 +01:00
<?php
namespace Amp\Postgres\Test;
use Amp\Loop;
2018-07-01 19:33:12 +02:00
use Amp\Postgres\ConnectionConfig;
2017-11-06 01:12:12 +01:00
use Amp\Postgres\Link;
use Amp\Postgres\PgSqlConnection;
2018-07-01 19:33:12 +02:00
use Amp\Postgres\Pool;
use Amp\Promise;
2018-07-01 19:33:12 +02:00
use Amp\Sql\Connector;
use Amp\Success;
2017-11-06 01:12:12 +01:00
/**
* @requires extension pgsql
*/
2019-04-03 21:02:26 +02:00
class PgSqlPoolTest extends AbstractLinkTest
2018-07-01 19:33:12 +02:00
{
const POOL_SIZE = 3;
2017-11-06 01:12:12 +01:00
/** @var resource[] PostgreSQL connection resources. */
protected $handles = [];
2018-07-01 19:33:12 +02:00
public function createLink(string $connectionString): Link
{
if (Loop::get()->getHandle() instanceof \EvLoop) {
$this->markTestSkipped("ext-pgsql is not compatible with pecl-ev");
}
for ($i = 0; $i < self::POOL_SIZE; ++$i) {
$this->handles[] = \pg_connect($connectionString, \PGSQL_CONNECT_FORCE_NEW);
}
$connector = $this->createMock(Connector::class);
$connector->method('connect')
->will($this->returnCallback(function (): Promise {
static $count = 0;
if (!isset($this->handles[$count])) {
$this->fail("createConnection called too many times");
}
$handle = $this->handles[$count];
++$count;
return new Success(new PgSqlConnection($handle, \pg_socket($handle)));
}));
$pool = new Pool(new ConnectionConfig('localhost'), \count($this->handles), Pool::DEFAULT_IDLE_TIMEOUT, true, $connector);
$handle = \reset($this->handles);
2017-11-06 01:12:12 +01:00
\pg_query($handle, "DROP TABLE IF EXISTS test");
$result = \pg_query($handle, "CREATE TABLE test (domain VARCHAR(63), tld VARCHAR(63), PRIMARY KEY (domain, tld))");
if (!$result) {
$this->fail('Could not create test table.');
}
foreach ($this->getData() as $row) {
$result = \pg_query_params($handle, "INSERT INTO test VALUES (\$1, \$2)", $row);
if (!$result) {
$this->fail('Could not insert test data.');
}
}
return $pool;
}
2020-02-06 23:34:49 +01:00
public function tearDown(): void
2018-07-01 19:33:12 +02:00
{
2017-11-06 01:12:12 +01:00
foreach ($this->handles as $handle) {
\pg_get_result($handle); // Consume any leftover results from test.
}
\pg_query($this->handles[0], "ROLLBACK");
\pg_query($this->handles[0], "DROP TABLE test");
foreach ($this->handles as $handle) {
\pg_close($handle);
}
2017-11-06 01:12:12 +01:00
}
}