mirror of
https://github.com/koel/koel
synced 2024-12-18 08:33:15 +00:00
41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Tests\Integration\Values;
|
|
|
|
use App\Models\Song;
|
|
use App\Values\Podcast\EpisodePlayable;
|
|
use Illuminate\Support\Facades\Cache;
|
|
use Illuminate\Support\Facades\Http;
|
|
use Tests\TestCase;
|
|
|
|
class EpisodePlayableTest extends TestCase
|
|
{
|
|
public function testCreateAndRetrieved(): void
|
|
{
|
|
Http::fake([
|
|
'https://example.com/episode.mp3' => Http::response('foo'),
|
|
]);
|
|
|
|
/** @var Song $episode */
|
|
$episode = Song::factory()->asEpisode()->create([
|
|
'path' => 'https://example.com/episode.mp3',
|
|
]);
|
|
|
|
$playable = EpisodePlayable::getForEpisode($episode);
|
|
|
|
Http::assertSentCount(1);
|
|
self::assertSame('acbd18db4cc2f85cedef654fccc4a4d8', $playable->checksum);
|
|
|
|
self::assertTrue(Cache::has("episode-playable.$episode->id"));
|
|
|
|
$retrieved = EpisodePlayable::getForEpisode($episode);
|
|
|
|
// No extra HTTP request should be made.
|
|
Http::assertSentCount(1);
|
|
self::assertSame($playable, $retrieved);
|
|
self::assertTrue($retrieved->valid());
|
|
|
|
file_put_contents($playable->path, 'bar');
|
|
self::assertFalse($retrieved->valid());
|
|
}
|
|
}
|