mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
35 lines
822 B
PHP
35 lines
822 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Song;
|
|
use App\Services\YouTubeService;
|
|
use Mockery;
|
|
use Mockery\MockInterface;
|
|
use Tests\TestCase;
|
|
|
|
class YouTubeTest extends TestCase
|
|
{
|
|
private MockInterface $youTubeService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->youTubeService = self::mock(YouTubeService::class);
|
|
}
|
|
|
|
public function testSearchYouTubeVideos(): void
|
|
{
|
|
/** @var Song $song */
|
|
$song = Song::factory()->create();
|
|
|
|
$this->youTubeService
|
|
->shouldReceive('searchVideosRelatedToSong')
|
|
->with(Mockery::on(static fn (Song $retrievedSong) => $song->is($retrievedSong)), 'foo')
|
|
->once();
|
|
|
|
$this->getAs("/api/youtube/search/song/{$song->id}?pageToken=foo")
|
|
->assertOk();
|
|
}
|
|
}
|