1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-04 02:17:44 +01:00
postgres/test/FunctionsTest.php

50 lines
1.3 KiB
PHP
Raw Normal View History

2016-12-30 06:21:17 +01:00
<?php
2016-09-14 16:27:39 +02:00
namespace Amp\Postgres\Test;
use Amp\Loop;
2017-05-17 18:14:12 +02:00
use Amp\Postgres\{ Connection, function connect };
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
class FunctionsTest extends TestCase {
2016-09-20 07:47:16 +02:00
public function setUp() {
if (!\extension_loaded('pgsql') && !\extension_loaded('pq')) {
$this->markTestSkipped('This test requires either ext/pgsql or pecl/pq');
}
}
2016-09-14 16:27:39 +02:00
public function testConnect() {
Loop::run(function () {
$connection = yield connect('host=localhost user=postgres', 100);
2016-09-14 16:27:39 +02:00
$this->assertInstanceOf(Connection::class, $connection);
});
2016-09-14 16:27:39 +02:00
}
/**
* @expectedException \Amp\Postgres\FailureException
*/
public function testConnectInvalidUser() {
Loop::run(function () {
$connection = yield connect('host=localhost user=invalid', 100);
});
2016-09-14 16:27:39 +02:00
}
/**
* @expectedException \Amp\Postgres\FailureException
*/
public function testConnectInvalidConnectionString() {
Loop::run(function () {
$connection = yield connect('invalid connection string', 100);
});
2016-09-14 16:27:39 +02:00
}
/**
* @expectedException \Amp\Postgres\FailureException
*/
public function testConnectInvalidHost() {
Loop::run(function () {
$connection = yield connect('hostaddr=invalid.host user=postgres', 100);
});
2016-09-14 16:27:39 +02:00
}
}