2017-01-18 18:05:05 +01:00
|
|
|
<?php
|
2016-09-14 16:27:39 +02:00
|
|
|
|
|
|
|
namespace Amp\Postgres\Test;
|
|
|
|
|
2017-05-17 18:14:12 +02:00
|
|
|
use Amp\{ Loop, Promise, Success, function call };
|
|
|
|
use Amp\Postgres\{ CommandResult, Connection, Statement, Transaction, TupleResult };
|
2017-05-26 17:47:44 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2016-09-14 16:27:39 +02:00
|
|
|
|
2017-05-26 17:47:44 +02:00
|
|
|
abstract class AbstractPoolTest extends TestCase {
|
2016-09-14 16:27:39 +02:00
|
|
|
/**
|
|
|
|
* @param array $connections
|
|
|
|
*
|
|
|
|
* @return \Amp\Postgres\Pool
|
|
|
|
*/
|
|
|
|
abstract protected function createPool(array $connections);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \PHPUnit_Framework_MockObject_MockObject|\Amp\Postgres\Connection
|
|
|
|
*/
|
|
|
|
private function createConnection() {
|
|
|
|
return $this->createMock(Connection::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $count
|
|
|
|
*
|
|
|
|
* @return \Amp\Postgres\Connection[]|\PHPUnit_Framework_MockObject_MockObject[]
|
|
|
|
*/
|
|
|
|
private function makeConnectionSet($count) {
|
|
|
|
$connections = [];
|
|
|
|
|
|
|
|
for ($i = 0; $i < $count; ++$i) {
|
|
|
|
$connections[] = $this->createConnection();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $connections;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getMethodsAndResults() {
|
|
|
|
return [
|
|
|
|
[3, 'query', TupleResult::class, "SELECT * FROM test"],
|
|
|
|
[2, 'query', CommandResult::class, "INSERT INTO test VALUES (1, 7)"],
|
|
|
|
[1, 'prepare', Statement::class, "SELECT * FROM test WHERE id=\$1"],
|
|
|
|
[4, 'execute', TupleResult::class, "SELECT * FROM test WHERE id=\$1 AND time>\$2", 1, time()],
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider getMethodsAndResults
|
|
|
|
*
|
|
|
|
* @param int $count
|
|
|
|
* @param string $method
|
|
|
|
* @param string $resultClass
|
|
|
|
* @param mixed ...$params
|
|
|
|
*/
|
|
|
|
public function testSingleQuery($count, $method, $resultClass, ...$params) {
|
|
|
|
$result = $this->getMockBuilder($resultClass)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$connections = $this->makeConnectionSet($count);
|
|
|
|
|
|
|
|
$connection = $connections[0];
|
|
|
|
$connection->expects($this->once())
|
|
|
|
->method($method)
|
|
|
|
->with(...$params)
|
|
|
|
->will($this->returnValue(new Success($result)));
|
|
|
|
|
|
|
|
$pool = $this->createPool($connections);
|
2017-05-16 06:28:37 +02:00
|
|
|
|
2017-03-17 16:17:24 +01:00
|
|
|
Loop::run(function () use ($method, $pool, $params, $result) {
|
2016-09-14 16:27:39 +02:00
|
|
|
$return = yield $pool->{$method}(...$params);
|
|
|
|
|
|
|
|
$this->assertSame($result, $return);
|
2017-03-17 16:17:24 +01:00
|
|
|
});
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider getMethodsAndResults
|
|
|
|
*
|
|
|
|
* @param int $count
|
|
|
|
* @param string $method
|
|
|
|
* @param string $resultClass
|
|
|
|
* @param mixed ...$params
|
|
|
|
*/
|
|
|
|
public function testConsecutiveQueries($count, $method, $resultClass, ...$params) {
|
|
|
|
$rounds = 3;
|
|
|
|
$result = $this->getMockBuilder($resultClass)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$connections = $this->makeConnectionSet($count);
|
|
|
|
|
|
|
|
foreach ($connections as $connection) {
|
|
|
|
$connection->method($method)
|
|
|
|
->with(...$params)
|
|
|
|
->will($this->returnValue(new Success($result)));
|
|
|
|
}
|
|
|
|
|
|
|
|
$pool = $this->createPool($connections);
|
2017-05-16 06:28:37 +02:00
|
|
|
|
2017-05-26 17:47:44 +02:00
|
|
|
Loop::run(function () use ($resultClass, $count, $rounds, $pool, $method, $params) {
|
2016-11-15 18:06:21 +01:00
|
|
|
$promises = [];
|
2017-05-16 06:28:37 +02:00
|
|
|
|
2016-09-14 16:27:39 +02:00
|
|
|
for ($i = 0; $i < $count * $rounds; ++$i) {
|
2016-11-15 18:06:21 +01:00
|
|
|
$promises[] = $pool->{$method}(...$params);
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
2017-05-26 17:47:44 +02:00
|
|
|
|
|
|
|
$results = yield Promise\all($promises);
|
|
|
|
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$this->assertInstanceOf($resultClass, $result);
|
|
|
|
}
|
2017-03-17 16:17:24 +01:00
|
|
|
});
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getConnectionCounts() {
|
|
|
|
return array_map(function ($count) { return [$count]; }, range(1, 10));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider getConnectionCounts
|
|
|
|
*
|
|
|
|
* @param int $count
|
|
|
|
*/
|
|
|
|
public function testTransaction($count) {
|
|
|
|
$connections = $this->makeConnectionSet($count);
|
|
|
|
|
|
|
|
$connection = $connections[0];
|
|
|
|
$result = $this->getMockBuilder(Transaction::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$connection->expects($this->once())
|
|
|
|
->method('transaction')
|
|
|
|
->with(Transaction::COMMITTED)
|
|
|
|
->will($this->returnValue(new Success($result)));
|
|
|
|
|
|
|
|
$pool = $this->createPool($connections);
|
2017-05-16 06:28:37 +02:00
|
|
|
|
2017-03-17 16:17:24 +01:00
|
|
|
Loop::run(function () use ($pool, $result) {
|
2016-09-14 16:27:39 +02:00
|
|
|
$return = yield $pool->transaction(Transaction::COMMITTED);
|
|
|
|
$this->assertInstanceOf(Transaction::class, $return);
|
|
|
|
yield $return->rollback();
|
2017-03-17 16:17:24 +01:00
|
|
|
});
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider getConnectionCounts
|
|
|
|
*
|
|
|
|
* @param int $count
|
|
|
|
*/
|
|
|
|
public function testConsecutiveTransactions($count) {
|
|
|
|
$rounds = 3;
|
|
|
|
$result = $this->getMockBuilder(Transaction::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$connections = $this->makeConnectionSet($count);
|
|
|
|
|
|
|
|
foreach ($connections as $connection) {
|
|
|
|
$connection->method('transaction')
|
|
|
|
->with(Transaction::COMMITTED)
|
|
|
|
->will($this->returnCallback(function () use ($result) {
|
|
|
|
return new Success($result);
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
$pool = $this->createPool($connections);
|
2017-05-16 06:28:37 +02:00
|
|
|
|
2017-03-17 16:17:24 +01:00
|
|
|
Loop::run(function () use ($count, $rounds, $pool) {
|
2016-11-15 18:06:21 +01:00
|
|
|
$promises = [];
|
2017-05-26 17:47:44 +02:00
|
|
|
for ($i = 0; $i < $count; ++$i) {
|
2016-11-15 18:06:21 +01:00
|
|
|
$promises[] = $pool->transaction(Transaction::COMMITTED);
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
2017-04-15 01:32:57 +02:00
|
|
|
|
2017-05-26 17:47:44 +02:00
|
|
|
$results = yield Promise\all(\array_map(function (Promise $promise) {
|
2017-05-16 06:14:02 +02:00
|
|
|
return call(function () use ($promise) {
|
|
|
|
$transaction = yield $promise;
|
2017-05-26 17:47:44 +02:00
|
|
|
$this->assertInstanceOf(Transaction::class, $transaction);
|
|
|
|
return yield $transaction->rollback();
|
2017-04-15 01:32:57 +02:00
|
|
|
});
|
2016-11-15 18:06:21 +01:00
|
|
|
}, $promises));
|
2017-05-26 17:47:44 +02:00
|
|
|
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$this->assertInstanceof(CommandResult::class, $result);
|
|
|
|
}
|
2017-03-17 16:17:24 +01:00
|
|
|
});
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
|
|
|
}
|