koel/tests/ScrobbleTest.php
2016-11-24 12:07:57 +08:00

28 lines
686 B
PHP

<?php
use App\Models\Song;
use App\Services\Lastfm;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Mockery as m;
class ScrobbleTest extends TestCase
{
use DatabaseTransactions, WithoutMiddleware;
public function testScrobble()
{
$this->withoutEvents();
$this->createSampleMediaSet();
$song = Song::first();
$ts = time();
m::mock(Lastfm::class, ['enabled' => true])
->shouldReceive('scrobble')
->with($song->album->artist->name, $song->title, $ts, $song->album->name, 'bar');
$this->post("/api/{$song->id}/scrobble/$ts");
}
}