mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 08:56:42 -06:00
34 lines
991 B
PHP
34 lines
991 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink\TestUtils;
|
|
|
|
use Doctrine\ORM\EntityManager;
|
|
use Psr\Container\ContainerInterface;
|
|
|
|
use function file_exists;
|
|
use function unlink;
|
|
|
|
/** @var ContainerInterface $container */
|
|
$container = require __DIR__ . '/../container.php';
|
|
$testHelper = $container->get(Helper\TestHelper::class);
|
|
$config = $container->get('config');
|
|
$em = $container->get(EntityManager::class);
|
|
|
|
// Delete old coverage in PHP, to avoid merging older executions with current one
|
|
$covFile = __DIR__ . '/../../build/coverage-cli.cov';
|
|
if (file_exists($covFile)) {
|
|
unlink($covFile);
|
|
}
|
|
|
|
$testHelper->createTestDb(
|
|
createDbCommand: ['bin/cli', 'db:create'],
|
|
migrateDbCommand: ['bin/cli', 'db:migrate'],
|
|
dropSchemaCommand: ['bin/doctrine', 'orm:schema-tool:drop'],
|
|
runSqlCommand: ['bin/doctrine', 'dbal:run-sql'],
|
|
);
|
|
CliTest\CliTestCase::setSeedFixturesCallback(
|
|
static fn () => $testHelper->seedFixtures($em, $config['data_fixtures'] ?? []),
|
|
);
|