1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-03 09:57:48 +01:00
postgres/test/PqConnectionTest.php
2016-12-29 23:21:17 -06:00

43 lines
1.2 KiB
PHP

<?php
namespace Amp\Postgres\Test;
use Amp\Postgres\{ Connection, PqConnection };
/**
* @requires extension pq
*/
class PqConnectionTest extends AbstractConnectionTest {
/** @var resource PostgreSQL connection resource. */
protected $handle;
public function createConnection(string $connectionString): Connection {
$this->handle = new \pq\Connection($connectionString);
$result = $this->handle->exec("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 = $this->handle->execParams("INSERT INTO test VALUES (\$1, \$2)", $row);
if (!$result) {
$this->fail('Could not insert test data.');
}
}
return new PqConnection($this->handle);
}
public function getConnectCallable(): callable {
return [PqConnection::class, 'connect'];
}
public function tearDown() {
$this->handle->exec("ROLLBACK");
$this->handle->exec("DROP TABLE test");
}
}