mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
70 lines
1.7 KiB
PHP
70 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Integration\Services;
|
|
|
|
use App\Models\Album;
|
|
use App\Models\Artist;
|
|
use App\Models\Song;
|
|
use App\Services\MediaCacheService;
|
|
use Illuminate\Cache\Repository as Cache;
|
|
use Mockery;
|
|
use Mockery\MockInterface;
|
|
use Tests\TestCase;
|
|
|
|
class MediaCacheServiceTest extends TestCase
|
|
{
|
|
/**
|
|
* @var MediaCacheService
|
|
*/
|
|
private $mediaCacheService;
|
|
|
|
/**
|
|
* @var Cache|MockInterface
|
|
*/
|
|
private $cache;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->cache = Mockery::mock(Cache::class);
|
|
$this->mediaCacheService = new MediaCacheService($this->cache);
|
|
}
|
|
|
|
public function testGetIfCacheIsNotAvailable()
|
|
{
|
|
factory(Song::class, 5)->create();
|
|
|
|
$this->cache->shouldReceive('rememberForever')->andReturn([
|
|
'albums' => Album::orderBy('name')->get(),
|
|
'artists' => Artist::orderBy('name')->get(),
|
|
'songs' => Song::all(),
|
|
]);
|
|
|
|
$data = $this->mediaCacheService->get();
|
|
|
|
$this->assertCount(6, $data['albums']); // 5 new albums and the default Unknown Album
|
|
$this->assertCount(7, $data['artists']); // 5 new artists and the default Various and Unknown Artist
|
|
$this->assertCount(5, $data['songs']);
|
|
}
|
|
|
|
public function testGetIfCacheIsAvailable()
|
|
{
|
|
$this->cache->shouldReceive('rememberForever')->andReturn('dummy');
|
|
|
|
config(['koel.cache_media' => true]);
|
|
|
|
$data = $this->mediaCacheService->get();
|
|
|
|
$this->assertEquals('dummy', $data);
|
|
}
|
|
|
|
public function testCacheDisabled()
|
|
{
|
|
$this->cache->shouldReceive('rememberForever')->never();
|
|
|
|
config(['koel.cache_media' => false]);
|
|
|
|
$this->mediaCacheService->get();
|
|
}
|
|
}
|