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(); } }