engelsystem/tests/Unit/Database/DatabaseServiceProviderTest...

135 lines
4.3 KiB
PHP
Raw Normal View History

2017-10-31 13:40:13 +01:00
<?php
declare(strict_types=1);
namespace Engelsystem\Test\Unit\Database;
2017-10-31 13:40:13 +01:00
2018-09-15 17:24:59 +02:00
use Engelsystem\Application;
2017-10-31 13:40:13 +01:00
use Engelsystem\Config\Config;
use Engelsystem\Database\Database;
2017-10-31 13:40:13 +01:00
use Engelsystem\Database\DatabaseServiceProvider;
use Engelsystem\Database\Db;
2017-10-31 14:15:19 +01:00
use Engelsystem\Test\Unit\ServiceProviderTest;
2017-10-31 13:40:13 +01:00
use Exception;
use Illuminate\Database\Capsule\Manager as CapsuleManager;
use Illuminate\Database\Connection;
2018-09-15 17:24:59 +02:00
use PDO;
use PDOException;
use PHPUnit\Framework\MockObject\MockObject;
2017-10-31 13:40:13 +01:00
2017-10-31 14:15:19 +01:00
class DatabaseServiceProviderTest extends ServiceProviderTest
2017-10-31 13:40:13 +01:00
{
/**
* @covers \Engelsystem\Database\DatabaseServiceProvider::register()
*/
public function testRegister(): void
2017-10-31 13:40:13 +01:00
{
/** @var Application|MockObject $app */
/** @var CapsuleManager|MockObject $dbManager */
/** @var PDO|MockObject $pdo */
/** @var Database|MockObject $database */
/** @var Connection|MockObject $connection */
list($app, $dbManager, $pdo, $database, $connection) = $this->prepare(
[
'driver' => 'sqlite',
'database' => ':memory:',
]
);
2017-10-31 13:40:13 +01:00
$app->expects($this->exactly(7))
->method('instance')
->withConsecutive(
[CapsuleManager::class, $dbManager],
[Db::class, $dbManager],
[Connection::class, $connection],
[Database::class, $database],
['db', $database],
['db.pdo', $pdo],
['db.connection', $connection]
);
2017-10-31 13:40:13 +01:00
$serviceProvider = new DatabaseServiceProvider($app);
$serviceProvider->register();
}
/**
* @covers \Engelsystem\Database\DatabaseServiceProvider::exitOnError()
* @covers \Engelsystem\Database\DatabaseServiceProvider::register()
*/
public function testRegisterError(): void
{
list($app) = $this->prepare([
2018-01-14 01:48:50 +01:00
'host' => 'localhost',
'database' => 'database',
'username' => 'user',
'password' => 'password',
], true);
2017-10-31 13:40:13 +01:00
$this->expectException(Exception::class);
2017-10-31 14:15:19 +01:00
$serviceProvider = new DatabaseServiceProvider($app);
2017-10-31 13:40:13 +01:00
$serviceProvider->register();
}
/**
* Prepare some mocks
*/
protected function prepare(array $dbConfigData, bool $getPdoThrowException = false): array
{
/** @var Config|MockObject $config */
$config = $this->getMockBuilder(Config::class)
->getMock();
/** @var CapsuleManager|MockObject $config */
$dbManager = $this->getMockBuilder(CapsuleManager::class)
->getMock();
/** @var Connection|MockObject $connection */
$connection = $this->getMockBuilder(Connection::class)
->disableOriginalConstructor()
->getMock();
/** @var PDO|MockObject $pdo */
$pdo = $this->getMockBuilder(PDO::class)
->disableOriginalConstructor()
->getMock();
/** @var Database|MockObject $database */
$database = $this->getMockBuilder(Database::class)
->disableOriginalConstructor()
->getMock();
$app = $this->getApp(['get', 'make', 'instance']);
$this->setExpects($app, 'get', ['config'], $config);
$config->expects($this->exactly(2))
->method('get')
->withConsecutive(['timezone'], ['database'])
->willReturnOnConsecutiveCalls('UTC', $dbConfigData);
$app->expects($this->atLeastOnce())
->method('make')
->withConsecutive(
[CapsuleManager::class],
[Database::class]
)
->willReturn(
$dbManager,
$database
);
$this->setExpects($dbManager, 'setAsGlobal');
$this->setExpects($dbManager, 'bootEloquent');
$this->setExpects($connection, 'useDefaultSchemaGrammar');
$connection->expects($this->once())
->method('getPdo')
2018-09-15 17:24:59 +02:00
->willReturnCallback(function () use ($getPdoThrowException, $pdo) {
if ($getPdoThrowException) {
throw new PDOException();
}
2018-09-15 17:24:59 +02:00
return $pdo;
});
$this->setExpects($dbManager, 'getConnection', [], $connection, $this->atLeastOnce());
return [$app, $dbManager, $pdo, $database, $connection];
}
2017-10-31 13:40:13 +01:00
}