mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
24 lines
533 B
PHP
24 lines
533 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Models\Song;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
use YouTube;
|
|
|
|
class YouTubeTest extends TestCase
|
|
{
|
|
use WithoutMiddleware;
|
|
|
|
/** @test */
|
|
public function youtube_videos_related_to_a_song_can_be_searched()
|
|
{
|
|
$this->createSampleMediaSet();
|
|
$song = Song::first();
|
|
|
|
// We test on the facade here
|
|
YouTube::shouldReceive('searchVideosRelatedToSong')->once();
|
|
|
|
$this->getAsUser("/api/youtube/search/song/{$song->id}");
|
|
}
|
|
}
|