mirror of
https://github.com/koel/koel
synced 2024-11-14 00:17:13 +00:00
41 lines
960 B
PHP
41 lines
960 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Song;
|
|
use App\Services\YouTubeService;
|
|
use Exception;
|
|
use Mockery;
|
|
use Mockery\MockInterface;
|
|
|
|
class YouTubeTest extends TestCase
|
|
{
|
|
/** @var MockInterface */
|
|
private $youTubeService;
|
|
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->youTubeService = static::mockIocDependency(YouTubeService::class);
|
|
}
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
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->getAsUser("/api/youtube/search/song/{$song->id}?pageToken=foo")
|
|
->assertResponseOk();
|
|
}
|
|
}
|