2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
2017-02-14 06:53:02 +00:00
|
|
|
namespace Tests;
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2020-09-09 16:18:53 +00:00
|
|
|
use App\Models\Album;
|
|
|
|
use App\Models\Artist;
|
|
|
|
use App\Models\Song;
|
2020-11-14 16:57:25 +00:00
|
|
|
use DMS\PHPUnitExtensions\ArraySubset\ArraySubsetAsserts;
|
2017-08-05 16:56:11 +00:00
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
2017-02-14 06:53:02 +00:00
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
2024-01-01 11:40:21 +00:00
|
|
|
use Illuminate\Testing\TestResponse;
|
2020-09-09 16:18:53 +00:00
|
|
|
use ReflectionClass;
|
2020-06-13 12:19:24 +00:00
|
|
|
use Tests\Traits\CreatesApplication;
|
|
|
|
use Tests\Traits\SandboxesTests;
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2017-02-14 06:53:02 +00:00
|
|
|
abstract class TestCase extends BaseTestCase
|
|
|
|
{
|
2020-11-14 16:57:25 +00:00
|
|
|
use ArraySubsetAsserts;
|
2020-01-17 16:45:45 +00:00
|
|
|
use CreatesApplication;
|
2020-11-14 16:57:25 +00:00
|
|
|
use DatabaseTransactions;
|
2020-06-13 12:19:24 +00:00
|
|
|
use SandboxesTests;
|
2020-01-17 16:46:06 +00:00
|
|
|
|
2019-07-22 07:03:23 +00:00
|
|
|
public function setUp(): void
|
2017-06-10 13:25:30 +00:00
|
|
|
{
|
|
|
|
parent::setUp();
|
2020-09-09 16:18:53 +00:00
|
|
|
|
2024-01-01 11:40:21 +00:00
|
|
|
TestResponse::macro('log', function (string $file = 'test-response.json'): TestResponse {
|
|
|
|
/** @var TestResponse $this */
|
|
|
|
file_put_contents(storage_path('logs/' . $file), $this->getContent());
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
});
|
|
|
|
|
2020-06-13 12:19:24 +00:00
|
|
|
self::createSandbox();
|
2017-06-10 13:25:30 +00:00
|
|
|
}
|
2018-08-19 11:08:16 +00:00
|
|
|
|
2019-07-22 07:03:23 +00:00
|
|
|
protected function tearDown(): void
|
2018-08-19 11:08:16 +00:00
|
|
|
{
|
2020-06-13 12:19:24 +00:00
|
|
|
self::destroySandbox();
|
2020-12-22 20:11:22 +00:00
|
|
|
|
2018-08-19 11:08:16 +00:00
|
|
|
parent::tearDown();
|
|
|
|
}
|
2020-09-09 16:18:53 +00:00
|
|
|
|
|
|
|
protected static function createSampleMediaSet(): void
|
|
|
|
{
|
|
|
|
/** @var Artist $artist */
|
2020-11-14 16:57:25 +00:00
|
|
|
$artist = Artist::factory()->create();
|
2020-09-09 16:18:53 +00:00
|
|
|
|
2020-12-22 20:11:22 +00:00
|
|
|
/** @var array<Album> $albums */
|
2023-06-05 21:46:41 +00:00
|
|
|
$albums = Album::factory(3)->for($artist)->create();
|
2020-09-09 16:18:53 +00:00
|
|
|
|
|
|
|
// 7-15 songs per albums
|
|
|
|
foreach ($albums as $album) {
|
2023-06-05 21:46:41 +00:00
|
|
|
Song::factory(random_int(7, 15))->for($artist)->for($album)->create();
|
2020-09-09 16:18:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-05 21:46:41 +00:00
|
|
|
protected static function getNonPublicProperty($object, string $property): mixed
|
2020-09-09 16:18:53 +00:00
|
|
|
{
|
|
|
|
$reflection = new ReflectionClass($object);
|
|
|
|
$property = $reflection->getProperty($property);
|
|
|
|
$property->setAccessible(true);
|
|
|
|
|
|
|
|
return $property->getValue($object);
|
|
|
|
}
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|