2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use App\Models\Album;
|
2015-12-14 13:22:39 +00:00
|
|
|
use App\Models\Artist;
|
2015-12-13 04:42:28 +00:00
|
|
|
use App\Models\Song;
|
2015-12-14 13:22:39 +00:00
|
|
|
use App\Models\User;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as IlluminateTestCase;
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
abstract class TestCase extends IlluminateTestCase
|
|
|
|
{
|
|
|
|
protected $mediaPath;
|
|
|
|
protected $coverPath;
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
|
|
|
|
$this->mediaPath = dirname(__FILE__).'/songs';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$this->prepareForTests();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The base URL to use while testing the application.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $baseUrl = 'http://localhost';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates the application.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Foundation\Application
|
|
|
|
*/
|
|
|
|
public function createApplication()
|
|
|
|
{
|
|
|
|
$app = require __DIR__.'/../bootstrap/app.php';
|
|
|
|
|
|
|
|
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
|
|
|
|
|
2016-09-16 08:48:52 +00:00
|
|
|
$this->coverPath = $app->basePath().'/public/img/covers';
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
return $app;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function prepareForTests()
|
|
|
|
{
|
|
|
|
Artisan::call('migrate');
|
|
|
|
|
|
|
|
if (!User::all()->count()) {
|
|
|
|
Artisan::call('db:seed');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file_exists($this->coverPath)) {
|
|
|
|
mkdir($this->coverPath, 0777, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a sample media set, with a complete artist+album+song trio.
|
|
|
|
*/
|
|
|
|
protected function createSampleMediaSet()
|
|
|
|
{
|
|
|
|
$artist = factory(Artist::class)->create();
|
|
|
|
|
|
|
|
// Sample 3 albums
|
|
|
|
$albums = factory(Album::class, 3)->create([
|
|
|
|
'artist_id' => $artist->id,
|
|
|
|
]);
|
|
|
|
|
|
|
|
// 7-15 songs per albums
|
|
|
|
foreach ($albums as $album) {
|
|
|
|
factory(Song::class, rand(7, 15))->create([
|
|
|
|
'album_id' => $album->id,
|
|
|
|
]);
|
2016-04-04 14:41:12 +00:00
|
|
|
}
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
}
|