koel/tests/Unit/Jobs/ScrobbleJobTest.php

36 lines
870 B
PHP

<?php
namespace Tests\Unit\Jobs;
use App\Jobs\ScrobbleJob;
use App\Models\Song;
use App\Models\User;
use App\Services\LastfmService;
use Mockery;
use Tests\TestCase;
class ScrobbleJobTest extends TestCase
{
private $job;
private $user;
private $song;
public function setUp(): void
{
parent::setUp();
$this->user = User::factory()->create(['preferences' => ['lastfm_session_key' => 'foo']]);
$this->song = Song::factory()->make();
$this->job = new ScrobbleJob($this->user, $this->song, 100);
}
public function testHandle(): void
{
$lastFm = Mockery::mock(LastfmService::class);
$lastFm->shouldReceive('scrobble')
->once()
->with($this->song->artist->name, $this->song->title, 100, $this->song->album->name, 'foo');
$this->job->handle($lastFm);
}
}