2016-12-30 06:21:17 +01:00
|
|
|
<?php
|
2016-09-14 16:27:39 +02:00
|
|
|
|
|
|
|
namespace Amp\Postgres\Test;
|
|
|
|
|
2017-03-17 16:17:24 +01:00
|
|
|
use Amp\Loop;
|
2017-06-21 05:17:53 +02:00
|
|
|
use Amp\Postgres\Connection;
|
2018-07-01 19:33:12 +02:00
|
|
|
use Amp\Postgres\ConnectionConfig;
|
2017-05-26 17:47:44 +02:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2017-06-21 05:17:53 +02:00
|
|
|
use function Amp\Postgres\connect;
|
2016-09-14 16:27:39 +02:00
|
|
|
|
2018-07-01 19:33:12 +02:00
|
|
|
class FunctionsTest extends TestCase
|
|
|
|
{
|
|
|
|
public function setUp()
|
|
|
|
{
|
2016-09-20 07:47:16 +02:00
|
|
|
if (!\extension_loaded('pgsql') && !\extension_loaded('pq')) {
|
|
|
|
$this->markTestSkipped('This test requires either ext/pgsql or pecl/pq');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-01 19:33:12 +02:00
|
|
|
public function testConnect()
|
|
|
|
{
|
2017-03-17 16:17:24 +01:00
|
|
|
Loop::run(function () {
|
2018-07-17 18:20:07 +02:00
|
|
|
$connection = yield connect(ConnectionConfig::fromString('host=localhost user=postgres'));
|
2016-09-14 16:27:39 +02:00
|
|
|
$this->assertInstanceOf(Connection::class, $connection);
|
2017-03-17 16:17:24 +01:00
|
|
|
});
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-01 19:33:12 +02:00
|
|
|
* @expectedException \Amp\Sql\FailureException
|
2016-09-14 16:27:39 +02:00
|
|
|
*/
|
2018-07-01 19:33:12 +02:00
|
|
|
public function testConnectInvalidUser()
|
|
|
|
{
|
2017-03-17 16:17:24 +01:00
|
|
|
Loop::run(function () {
|
2018-07-17 18:20:07 +02:00
|
|
|
$connection = yield connect(ConnectionConfig::fromString('host=localhost user=invalid'));
|
2017-03-17 16:17:24 +01:00
|
|
|
});
|
2016-09-14 16:27:39 +02:00
|
|
|
}
|
|
|
|
}
|