Files
core/tests/ModelTestCase.php
T
2019-06-27 09:40:12 +02:00

174 lines
5.8 KiB
PHP

<?php
declare(strict_types=1);
namespace LotGD\Core\Tests;
use Doctrine\Common\Annotations\AnnotationRegistry;
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\EntityManagerInterface;
use Doctrine\ORM\Events as DoctrineEvents;
use Doctrine\ORM\Mapping\AnsiQuoteStrategy;
use Doctrine\ORM\Tools\Setup;
use Doctrine\ORM\Tools\SchemaTool;
use LotGD\Core\Configuration;
use LotGD\Core\ComposerManager;
use LotGD\Core\Doctrine\EntityPostLoadEventListener;
use LotGD\Core\GameBuilder;
use LotGD\Core\LibraryConfigurationManager;
use LotGD\Core\Exceptions\InvalidConfigurationException;
use LotGD\Core\ModelExtender;
use Monolog\Handler\NullHandler;
use Monolog\Logger;
use PHPUnit\Framework\TestCase;
/**
* Description of ModelTestCase
*/
abstract class ModelTestCase extends TestCase
{
/** @var \PDO */
static private $pdo = null;
/** @var EntityManager */
static private $em = null;
private $connection = null;
public $g;
protected $tables = null;
/**
* Returns a connection to test models
*/
final public function getConnection()
{
if ($this->connection === null) {
$configFilePath = getenv('LOTGD_TESTS_CONFIG_PATH');
if ($configFilePath === false || strlen($configFilePath) == 0 || is_file($configFilePath) === false) {
throw new InvalidConfigurationException("Invalid or missing configuration file: '{$configFilePath}'.");
}
$config = new Configuration($configFilePath);
if (self::$pdo === null) {
self::$pdo = new \PDO($config->getDatabaseDSN(), $config->getDatabaseUser(), $config->getDatabasePassword());
// Read db annotations from model files
$composerManager = new ComposerManager(getcwd());
$libraryConfigurationManager = new LibraryConfigurationManager($composerManager, getcwd());
$directories = $libraryConfigurationManager->getEntityDirectories();
$directories[] = implode(DIRECTORY_SEPARATOR, [__DIR__, '..', 'src', 'Models']);
$directories[] = implode(DIRECTORY_SEPARATOR, [__DIR__, 'Resources', 'TestModels']);
// Read db annotations from model files
$configuration = Setup::createAnnotationMetadataConfiguration($directories, true);
self::$em = EntityManager::create(["pdo" => self::$pdo], $configuration);
// Register uuid type
\Doctrine\DBAL\Types\Type::addType('uuid', 'Ramsey\Uuid\Doctrine\UuidType');
// Create Schema
$metaData = self::$em->getMetadataFactory()->getAllMetadata();
$schemaTool = new SchemaTool(self::$em);
$schemaTool->updateSchema($metaData);
}
$this->connection = [self::$pdo, $config->getDatabaseName()];
}
return $this->connection;
}
protected function insertData($dataSet)
{
/** @var \PDO $pdo */
$pdo = $this->connection[0];
foreach ($dataSet as $table => $rows) {
$this->tables[] = $table;
foreach ($rows as $row) {
$fields = implode(",", array_keys($row));
$placeholders = substr(str_repeat("?,", count($row)), 0, -1);
$query = "INSERT INTO $table ($fields) VALUES ($placeholders)";
$stmt = $pdo->prepare($query);
$stmt->execute(array_values($row));
}
}
}
/**
* Returns the current entity manager
* @return EntityManagerInterface
*/
protected function getEntityManager(): EntityManagerInterface
{
return self::$em;
}
protected function setUp(): void
{
$this->getConnection();
// Set up database content
if (method_exists($this, "getDataSet")) {
$dataSet = $this->getDataSet();
$this->insertData($dataSet);
}
parent::setUp();
$this->getEntityManager()->flush();
$this->getEntityManager()->clear();
// Make an empty logger for these tests. Feel free to change this
// to place log messages somewhere you can easily find them.
$logger = new Logger('test');
$logger->pushHandler(new NullHandler());
// Create a Game object for use in these tests.
$this->g = (new GameBuilder())
->withConfiguration(new Configuration(getenv('LOTGD_TESTS_CONFIG_PATH')))
->withLogger($logger)
->withEntityManager($this->getEntityManager())
->withCwd(implode(DIRECTORY_SEPARATOR, [__DIR__, '..']))
->create();
// Add Event listener to entity manager
$dem = $this->getEntityManager()->getEventManager();
$dem->addEventListener([DoctrineEvents::postLoad], new EntityPostLoadEventListener($this->g));
// Run model extender
AnnotationRegistry::registerLoader("class_exists");
$modelExtender = new ModelExtender();
$libraryConfigurationManager = new LibraryConfigurationManager($this->g->getComposerManager(), getcwd());
foreach ($libraryConfigurationManager->getConfigurations() as $config) {
$modelExtensions = $config->getSubKeyIfItExists(["modelExtensions"]);
if ($modelExtensions) {
$modelExtender->addMore($modelExtensions);
}
}
}
protected function tearDown(): void {
parent::tearDown();
/** @var \PDO $pdo */
$pdo = $this->connection[0];
foreach ($this->tables as $table) {
$stmt = $pdo->prepare("DELETE FROM $table WHERE 1");
$stmt->execute();
}
// Clear out the cache so tests don't get confused.
$this->getEntityManager()->clear();
}
protected function flushAndClear()
{
$this->getEntityManager()->flush();
$this->getEntityManager()->clear();
}
}