misc_pterodactyl-panel/bootstrap/tests.php

39 lines
1.2 KiB
PHP
Raw Normal View History

2018-03-04 22:30:16 +00:00
<?php
use Illuminate\Contracts\Console\Kernel;
use Symfony\Component\Console\Output\ConsoleOutput;
2018-03-22 03:28:01 +00:00
require __DIR__ . '/../vendor/autoload.php';
2018-03-04 22:30:16 +00:00
$app = require __DIR__ . '/app.php';
/** @var \Pterodactyl\Console\Kernel $kernel */
$kernel = $app->make(Kernel::class);
2018-04-08 20:37:27 +00:00
/*
2018-03-04 22:30:16 +00:00
* Bootstrap the kernel and prepare application for testing.
*/
$kernel->bootstrap();
$output = new ConsoleOutput;
2020-06-26 04:21:05 +00:00
if (config('database.default') !== 'testing') {
$output->writeln(PHP_EOL . '<error>Cannot run test process against non-testing database.</error>');
$output->writeln(PHP_EOL . '<error>Environment is currently pointed at: "' . config('database.default') . '".</error>');
exit(1);
}
2018-04-08 20:37:27 +00:00
/*
2018-03-04 22:30:16 +00:00
* Perform database migrations and reseeding before continuing with
* running the tests.
*/
2020-06-28 22:43:44 +00:00
if (! env('SKIP_MIGRATIONS')) {
2020-06-26 04:21:05 +00:00
$output->writeln(PHP_EOL . '<info>Refreshing database for Integration tests...</info>');
$kernel->call('migrate:fresh', ['--database' => 'testing']);
$output->writeln('<info>Seeding database for Integration tests...</info>' . PHP_EOL);
$kernel->call('db:seed', ['--database' => 'testing']);
} else {
$output->writeln(PHP_EOL . '<comment>Skipping database migrations...</comment>' . PHP_EOL);
}