PHPUnit tests improvements.
This commit is contained in:
parent
8d0d23f5f4
commit
4cb041e8fb
6 changed files with 171 additions and 77 deletions
|
|
@ -21,7 +21,7 @@ class DatabaseMysqlTest extends TestCase
|
|||
['host' => 'localhost'],
|
||||
],
|
||||
],
|
||||
'type' => 'mysql',
|
||||
'type' => Database::MYSQL_TYPE,
|
||||
'name' => MYSQL_DBNAME,
|
||||
'username' => MYSQL_USER,
|
||||
'password' => MYSQL_PASSWORD,
|
||||
|
|
@ -33,6 +33,10 @@ class DatabaseMysqlTest extends TestCase
|
|||
|
||||
protected function checkDatabaseConnection()
|
||||
{
|
||||
if (!extension_loaded('mysqli')) {
|
||||
$this->markTestSkipped('Test skipped because Mysqli extension doesn`t exist.');
|
||||
}
|
||||
|
||||
try {
|
||||
$connection = Database::getConnection('read');
|
||||
} catch (\Exception $e) {
|
||||
|
|
@ -44,23 +48,66 @@ class DatabaseMysqlTest extends TestCase
|
|||
}
|
||||
}
|
||||
|
||||
public function testGetWriteConnection()
|
||||
public function testGetConnection()
|
||||
{
|
||||
$this->checkDatabaseConnection();
|
||||
|
||||
$connection = Database::getConnection('write');
|
||||
self::assertInstanceOf('\b8\Database', $connection);
|
||||
$writeConnection = Database::getConnection('write');
|
||||
$readConnection = Database::getConnection('read');
|
||||
|
||||
self::assertInstanceOf('\b8\Database', $writeConnection);
|
||||
self::assertInstanceOf('\b8\Database', $readConnection);
|
||||
|
||||
$writeDetails = Database::getConnection('write')->getDetails();
|
||||
|
||||
self::assertTrue(is_array($writeDetails));
|
||||
self::assertEquals(MYSQL_DBNAME, $writeDetails['db']);
|
||||
self::assertEquals(MYSQL_USER, $writeDetails['user']);
|
||||
self::assertEquals(MYSQL_PASSWORD, $writeDetails['pass']);
|
||||
|
||||
$readDetails = Database::getConnection('read')->getDetails();
|
||||
|
||||
self::assertTrue(is_array($readDetails));
|
||||
self::assertEquals(MYSQL_DBNAME, $readDetails['db']);
|
||||
self::assertEquals(MYSQL_USER, $readDetails['user']);
|
||||
self::assertEquals(MYSQL_PASSWORD, $readDetails['pass']);
|
||||
}
|
||||
|
||||
public function testGetDetails()
|
||||
public function testGetWriteConnectionWithPort()
|
||||
{
|
||||
$config = new Config([
|
||||
'b8' => [
|
||||
'database' => [
|
||||
'servers' => [
|
||||
'read' => [
|
||||
[
|
||||
'host' => 'localhost',
|
||||
'port' => 3306,
|
||||
],
|
||||
],
|
||||
'write' => [
|
||||
[
|
||||
'host' => 'localhost',
|
||||
'port' => 3306,
|
||||
],
|
||||
],
|
||||
],
|
||||
'type' => Database::MYSQL_TYPE,
|
||||
'name' => MYSQL_DBNAME,
|
||||
'username' => MYSQL_USER,
|
||||
'password' => MYSQL_PASSWORD,
|
||||
],
|
||||
],
|
||||
]);
|
||||
Database::reset();
|
||||
|
||||
$this->checkDatabaseConnection();
|
||||
|
||||
$details = Database::getConnection('read')->getDetails();
|
||||
self::assertTrue(is_array($details));
|
||||
self::assertTrue(($details['db'] === MYSQL_DBNAME));
|
||||
self::assertTrue(($details['user'] === MYSQL_USER));
|
||||
self::assertTrue(($details['pass'] === MYSQL_PASSWORD));
|
||||
$writeConnection = Database::getConnection('write');
|
||||
$readConnection = Database::getConnection('read');
|
||||
|
||||
self::assertInstanceOf('\b8\Database', $writeConnection);
|
||||
self::assertInstanceOf('\b8\Database', $readConnection);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -83,7 +130,7 @@ class DatabaseMysqlTest extends TestCase
|
|||
['host' => 'localhost'],
|
||||
],
|
||||
],
|
||||
'type' => 'mysql',
|
||||
'type' => Database::MYSQL_TYPE,
|
||||
'name' => 'b8_test_2',
|
||||
'username' => '',
|
||||
'password' => '',
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ class DatabasePostgresqlTest extends TestCase
|
|||
['host' => 'localhost'],
|
||||
],
|
||||
],
|
||||
'type' => 'pgsql',
|
||||
'type' => Database::POSTGRESQL_TYPE,
|
||||
'name' => POSTGRESQL_DBNAME,
|
||||
'username' => POSTGRESQL_USER,
|
||||
'password' => POSTGRESQL_PASSWORD,
|
||||
|
|
@ -33,6 +33,10 @@ class DatabasePostgresqlTest extends TestCase
|
|||
|
||||
protected function checkDatabaseConnection()
|
||||
{
|
||||
if (!extension_loaded('pgsql')) {
|
||||
$this->markTestSkipped('Test skipped because Pgsql extension doesn`t exist.');
|
||||
}
|
||||
|
||||
try {
|
||||
$connection = Database::getConnection('read');
|
||||
} catch (\Exception $e) {
|
||||
|
|
@ -44,23 +48,66 @@ class DatabasePostgresqlTest extends TestCase
|
|||
}
|
||||
}
|
||||
|
||||
public function testGetWriteConnection()
|
||||
public function testGetConnection()
|
||||
{
|
||||
$this->checkDatabaseConnection();
|
||||
|
||||
$connection = Database::getConnection('write');
|
||||
self::assertInstanceOf('\b8\Database', $connection);
|
||||
$writeConnection = Database::getConnection('write');
|
||||
$readConnection = Database::getConnection('read');
|
||||
|
||||
self::assertInstanceOf('\b8\Database', $writeConnection);
|
||||
self::assertInstanceOf('\b8\Database', $readConnection);
|
||||
|
||||
$writeDetails = Database::getConnection('write')->getDetails();
|
||||
|
||||
self::assertTrue(is_array($writeDetails));
|
||||
self::assertEquals(POSTGRESQL_DBNAME, $writeDetails['db']);
|
||||
self::assertEquals(POSTGRESQL_USER, $writeDetails['user']);
|
||||
self::assertEquals(POSTGRESQL_PASSWORD, $writeDetails['pass']);
|
||||
|
||||
$readDetails = Database::getConnection('read')->getDetails();
|
||||
|
||||
self::assertTrue(is_array($readDetails));
|
||||
self::assertEquals(POSTGRESQL_DBNAME, $readDetails['db']);
|
||||
self::assertEquals(POSTGRESQL_USER, $readDetails['user']);
|
||||
self::assertEquals(POSTGRESQL_PASSWORD, $readDetails['pass']);
|
||||
}
|
||||
|
||||
public function testGetDetails()
|
||||
public function testGetWriteConnectionWithPort()
|
||||
{
|
||||
$config = new Config([
|
||||
'b8' => [
|
||||
'database' => [
|
||||
'servers' => [
|
||||
'read' => [
|
||||
[
|
||||
'host' => 'localhost',
|
||||
'port' => 5432,
|
||||
],
|
||||
],
|
||||
'write' => [
|
||||
[
|
||||
'host' => 'localhost',
|
||||
'port' => 5432,
|
||||
],
|
||||
],
|
||||
],
|
||||
'type' => Database::POSTGRESQL_TYPE,
|
||||
'name' => POSTGRESQL_DBNAME,
|
||||
'username' => POSTGRESQL_USER,
|
||||
'password' => POSTGRESQL_PASSWORD,
|
||||
],
|
||||
],
|
||||
]);
|
||||
Database::reset();
|
||||
|
||||
$this->checkDatabaseConnection();
|
||||
|
||||
$details = Database::getConnection('read')->getDetails();
|
||||
self::assertTrue(is_array($details));
|
||||
self::assertTrue(($details['db'] === POSTGRESQL_DBNAME));
|
||||
self::assertTrue(($details['user'] === POSTGRESQL_USER));
|
||||
self::assertTrue(($details['pass'] === POSTGRESQL_PASSWORD));
|
||||
$writeConnection = Database::getConnection('write');
|
||||
$readConnection = Database::getConnection('read');
|
||||
|
||||
self::assertInstanceOf('\b8\Database', $writeConnection);
|
||||
self::assertInstanceOf('\b8\Database', $readConnection);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -83,7 +130,7 @@ class DatabasePostgresqlTest extends TestCase
|
|||
['host' => 'localhost'],
|
||||
],
|
||||
],
|
||||
'type' => 'pgsql',
|
||||
'type' => Database::POSTGRESQL_TYPE,
|
||||
'name' => 'b8_test_2',
|
||||
'username' => '',
|
||||
'password' => '',
|
||||
|
|
|
|||
|
|
@ -1,54 +1,42 @@
|
|||
<?php
|
||||
|
||||
if (!defined('ROOT_DIR')) {
|
||||
define('ROOT_DIR', dirname(__DIR__) . DIRECTORY_SEPARATOR);
|
||||
define('ROOT_DIR', dirname(__DIR__) . '/');
|
||||
}
|
||||
|
||||
if (!defined('SRC_DIR')) {
|
||||
define('SRC_DIR', ROOT_DIR . 'src' . DIRECTORY_SEPARATOR . 'PHPCensor' . DIRECTORY_SEPARATOR);
|
||||
define('SRC_DIR', ROOT_DIR . 'src/PHPCensor/');
|
||||
}
|
||||
|
||||
if (!defined('PUBLIC_DIR')) {
|
||||
define('PUBLIC_DIR', ROOT_DIR . 'public' . DIRECTORY_SEPARATOR);
|
||||
define('PUBLIC_DIR', ROOT_DIR . 'public/');
|
||||
}
|
||||
|
||||
if (!defined('APP_DIR')) {
|
||||
define('APP_DIR', ROOT_DIR . 'app' . DIRECTORY_SEPARATOR);
|
||||
define('APP_DIR', ROOT_DIR . 'app/');
|
||||
}
|
||||
|
||||
if (!defined('BIN_DIR')) {
|
||||
define('BIN_DIR', ROOT_DIR . 'bin' . DIRECTORY_SEPARATOR);
|
||||
define('BIN_DIR', ROOT_DIR . 'bin/');
|
||||
}
|
||||
|
||||
if (!defined('RUNTIME_DIR')) {
|
||||
define('RUNTIME_DIR', ROOT_DIR . 'runtime' . DIRECTORY_SEPARATOR);
|
||||
define('RUNTIME_DIR', ROOT_DIR . 'runtime/');
|
||||
}
|
||||
|
||||
require_once(ROOT_DIR . 'vendor/autoload.php');
|
||||
|
||||
// Load configuration if present:
|
||||
$conf = [];
|
||||
|
||||
$conf['b8']['app']['namespace'] = 'PHPCensor';
|
||||
$conf['b8']['app']['default_controller'] = 'Home';
|
||||
$conf['b8']['view']['path'] = SRC_DIR . 'View' . DIRECTORY_SEPARATOR;
|
||||
$conf['b8']['view']['path'] = SRC_DIR . 'View/';
|
||||
$conf['php-censor']['url'] = 'http://php-censor.local';
|
||||
|
||||
$config = new b8\Config($conf);
|
||||
|
||||
$configFile = APP_DIR . 'config.yml';
|
||||
if (file_exists($configFile)) {
|
||||
$config->loadYaml($configFile);
|
||||
}
|
||||
|
||||
if (!defined('APP_URL') && !empty($config)) {
|
||||
define('APP_URL', $config->get('php-censor.url', '') . '/');
|
||||
}
|
||||
|
||||
\PHPCensor\Helper\Lang::init($config, 'en');
|
||||
|
||||
define('MYSQL_DBNAME', getenv('MYSQL_DBNAME'));
|
||||
define('MYSQL_USER', getenv('MYSQL_USER'));
|
||||
define('MYSQL_PASSWORD', getenv('MYSQL_PASSWORD'));
|
||||
|
||||
define('POSTGRESQL_DBNAME', getenv('POSTGRESQL_DBNAME'));
|
||||
define('POSTGRESQL_USER', getenv('POSTGRESQL_USER'));
|
||||
define('POSTGRESQL_PASSWORD', getenv('POSTGRESQL_PASSWORD'));
|
||||
\PHPCensor\Helper\Lang::init($config);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue