koel/tests/Feature/YouTubeTest.php
2022-07-29 09:04:44 +02:00

36 lines
861 B
PHP

<?php
namespace Tests\Feature;
use App\Models\Song;
use App\Services\YouTubeService;
use Mockery;
use Mockery\MockInterface;
class YouTubeTest extends TestCase
{
private MockInterface $youTubeService;
public function setUp(): void
{
parent::setUp();
$this->youTubeService = self::mock(YouTubeService::class);
}
public function testSearchYouTubeVideos(): void
{
static::createSampleMediaSet();
$song = Song::first();
$this->youTubeService
->shouldReceive('searchVideosRelatedToSong')
->with(Mockery::on(static function (Song $retrievedSong) use ($song) {
return $song->id === $retrievedSong->id;
}), 'foo')
->once();
$this->getAs("/api/youtube/search/song/{$song->id}?pageToken=foo")
->assertOk();
}
}