koel/tests/Traits/CreatesApplication.php

45 lines
1.2 KiB
PHP
Raw Normal View History

2017-02-14 06:53:02 +00:00
<?php
2020-06-13 12:19:24 +00:00
namespace Tests\Traits;
2017-02-14 06:53:02 +00:00
2019-07-22 09:54:39 +00:00
use App\Console\Kernel;
2017-06-10 13:25:30 +00:00
use App\Models\User;
2018-08-31 13:47:15 +00:00
use Illuminate\Contracts\Console\Kernel as Artisan;
2018-08-23 06:58:17 +00:00
use Illuminate\Foundation\Application;
2022-12-04 13:56:25 +00:00
use Illuminate\Support\Facades\DB;
2017-02-14 06:53:02 +00:00
trait CreatesApplication
{
protected string $mediaPath;
2021-06-05 10:47:56 +00:00
private Kernel $artisan;
protected string $baseUrl = 'http://localhost';
2022-12-04 13:56:25 +00:00
public static bool $migrated = false;
2017-02-14 06:53:02 +00:00
2020-12-22 20:11:22 +00:00
public function createApplication(): Application
2017-02-14 06:53:02 +00:00
{
/** @var Application $app */
2020-12-22 20:11:22 +00:00
$app = require __DIR__ . '/../../bootstrap/app.php';
2017-02-14 06:53:02 +00:00
$this->mediaPath = test_path('songs');
/** @var Kernel $artisan */
$artisan = $app->make(Artisan::class);
$this->artisan = $artisan;
2018-08-31 13:47:15 +00:00
$this->artisan->bootstrap();
2017-02-14 06:53:02 +00:00
2022-12-04 13:56:25 +00:00
// Unless the DB is stored in memory, we need to migrate the DB only once for the whole test suite.
if (!CreatesApplication::$migrated || DB::connection()->getDatabaseName() === ':memory:') {
$this->artisan->call('migrate');
2017-06-10 13:25:30 +00:00
2022-12-04 13:56:25 +00:00
if (!User::query()->count()) {
$this->artisan->call('db:seed');
}
2017-06-10 13:25:30 +00:00
2022-12-04 13:56:25 +00:00
CreatesApplication::$migrated = true;
2017-06-10 13:25:30 +00:00
}
2022-12-04 13:56:25 +00:00
return $app;
2017-06-10 13:25:30 +00:00
}
2017-02-14 06:53:02 +00:00
}