Skip to content

Commit c508ea7

Browse files
committed
Testing with docker
1 parent 67c2060 commit c508ea7

File tree

10 files changed

+140
-19
lines changed

10 files changed

+140
-19
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
/composer.lock
22
/vendor
3+
/docker/database

.travis.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ php:
66
- 7.1
77
- 7.2
88
- 7.3
9+
- 7.4
910

1011
services:
11-
- postgresql
12+
- docker
1213

1314
install:
1415
- composer install
1516

17+
before_script:
18+
- docker-compose -f docker/docker-compose.yml up -d
19+
- sh docker/waitForPostgres.sh
20+
1621
script:
1722
- vendor/bin/phpunit

docker/docker-compose.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
version: '3.7'
2+
3+
services:
4+
pgasync-postgres:
5+
image: postgres:11
6+
environment:
7+
- PGDATA=/database
8+
- POSTGRES_PASSWORD=some_password
9+
- TZ=America/New_York
10+
volumes:
11+
- .:/app
12+
- ./database:/database
13+
- ./docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
14+
ports:
15+
- "5432:5432"
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#!/bin/bash
2+
set -x
3+
4+
echo "Running as $USER in $PWD"
5+
6+
createuser -U postgres --createdb pgasync
7+
createuser -U postgres --createdb pgasyncpw
8+
psql -U postgres -c "ALTER ROLE pgasyncpw PASSWORD 'example_password'"
9+
10+
cd /app
11+
cp pg_hba_new.conf database/pg_hba.conf
12+
13+
createdb -U pgasync pgasync_test
14+
15+
psql -U pgasync -f test_db.sql pgasync_test
16+
17+

docker/pg_hba_new.conf

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# TYPE DATABASE USER ADDRESS METHOD
2+
3+
# "local" is for Unix domain socket connections only
4+
local all all trust
5+
# IPv4 local connections:
6+
host all all 127.0.0.1/32 trust
7+
# IPv6 local connections:
8+
host all all ::1/128 trust
9+
# Allow replication connections from localhost, by a user with the
10+
# replication privilege.
11+
local replication all trust
12+
host replication all 127.0.0.1/32 trust
13+
host replication all ::1/128 trust
14+
15+
host all pgasync all trust
16+
host all all all md5

docker/test_db.sql

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
CREATE TABLE thing (
2+
id SERIAL,
3+
thing_type varchar(50),
4+
thing_description TEXT,
5+
thing_cost decimal(10,4),
6+
thing_in_stock bool
7+
);
8+
9+
INSERT INTO thing(thing_type, thing_description, thing_cost, thing_in_stock)
10+
VALUES('pen', NULL, 50.23, 'f');
11+
INSERT INTO thing(thing_type, thing_description, thing_cost, thing_in_stock)
12+
VALUES('pencil', 'something you write with', 27.50, null);
13+
INSERT INTO thing(thing_type, thing_description, thing_cost, thing_in_stock)
14+
VALUES('marker', NULL, 50.23, 't');
15+
16+
CREATE TABLE test_bool_param (
17+
id serial not null,
18+
b boolean,
19+
primary key(id)
20+
);
21+
insert into test_bool_param(b) values(true);

docker/waitForPostgres.sh

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#!/bin/bash
2+
3+
echo "Waiting for database..."
4+
5+
ROW_COUNT=0
6+
7+
TRY_COUNT=0
8+
9+
while [ "$ROW_COUNT" -ne 1 ]; do
10+
if [ "$TRY_COUNT" -ge 60 ]; then
11+
echo "Timeout waiting for database..."
12+
exit 1;
13+
fi
14+
sleep 5
15+
TRY_COUNT=$(($TRY_COUNT+1))
16+
echo "Attempt $TRY_COUNT..."
17+
if ! ROW_COUNT=$(docker exec docker_pgasync-postgres_1 psql -U postgres pgasync_test -c "select count(*) from test_bool_param" -A -t); then
18+
ROW_COUNT=0
19+
fi
20+
done
21+
22+
echo "Database is up..."

tests/Integration/Md5PasswordTest.php

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<?php
2+
3+
namespace PgAsync\Tests\Integration;
4+
5+
use PgAsync\Client;
6+
use Rx\Observer\CallbackObserver;
7+
8+
class Md5PasswordTest extends TestCase
9+
{
10+
public function testMd5Login()
11+
{
12+
$client = new Client([
13+
"user" => "pgasyncpw",
14+
"database" => $this->getDbName(),
15+
"auto_disconnect" => true,
16+
"password" => "example_password"
17+
], $this->getLoop());
18+
19+
$hello = null;
20+
21+
$client->query("SELECT 'Hello' AS hello")
22+
->subscribe(new CallbackObserver(
23+
function ($x) use (&$hello) {
24+
$this->assertNull($hello);
25+
$hello = $x['hello'];
26+
},
27+
function ($e) {
28+
$this->fail('Unexpected error');
29+
},
30+
function () {
31+
$this->getLoop()->addTimer(0.1, function () {
32+
$this->stopLoop();
33+
});
34+
}
35+
));
36+
37+
$this->runLoopWithTimeout(2);
38+
39+
$this->assertEquals('Hello', $hello);
40+
}
41+
}

tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class TestCase extends BaseTestCase
1818
/** @var Timer */
1919
public static $timeoutTimer;
2020

21-
public static $dbUser = "";
21+
public static $dbUser = 'pgasync';
2222

2323
public static function getLoop()
2424
{

tests/bootstrap.php

-17
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,3 @@
55
} else {
66
throw new RuntimeException('Install dependencies to run test suite.');
77
}
8-
9-
\PgAsync\Tests\TestCase::setDbUser(getenv('USER'));
10-
if (getenv('TRAVIS') === 'true') {
11-
\PgAsync\Tests\TestCase::setDbUser('postgres');
12-
}
13-
14-
// cleanup remnants if there are any
15-
exec('dropdb --if-exists ' . \PgAsync\Tests\TestCase::getDbName() . " -U '" . \PgAsync\Tests\TestCase::getDbUser() . "'");
16-
17-
// Create the Test database
18-
exec("psql -c 'create database " . \PgAsync\Tests\TestCase::getDbName() . ";' -U '" . \PgAsync\Tests\TestCase::getDbUser() . "'");
19-
20-
exec('psql -f ' . __DIR__ . '/test_db.sql ' . \PgAsync\Tests\TestCase::getDbName() . ' ' . \PgAsync\Tests\TestCase::getDbUser());
21-
22-
register_shutdown_function(function () {
23-
exec('dropdb --if-exists ' . \PgAsync\Tests\TestCase::getDbName() . " -U '" . \PgAsync\Tests\TestCase::getDbUser() . "'");
24-
});

0 commit comments

Comments
 (0)