mirror of
https://github.com/koel/koel
synced 2024-12-22 18:43:21 +00:00
48 lines
1.1 KiB
PHP
48 lines
1.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace App\Tests\Unit\Jobs;
|
||
|
|
||
|
use App\Jobs\UpdateLastfmNowPlayingJob;
|
||
|
use App\Models\Song;
|
||
|
use App\Models\User;
|
||
|
use App\Services\LastfmService;
|
||
|
use Mockery;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class UpdateLastfmNowPlayingJobTest extends TestCase
|
||
|
{
|
||
|
/** @var UpdateLastfmNowPlayingJob */
|
||
|
private $job;
|
||
|
|
||
|
/** @var User */
|
||
|
private $user;
|
||
|
|
||
|
/** @var Song */
|
||
|
private $song;
|
||
|
|
||
|
public function setUp(): void
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->user = factory(User::class)->create(['preferences' => ['lastfm_session_key' => 'foo']]);
|
||
|
$this->song = factory(Song::class)->make();
|
||
|
$this->job = new UpdateLastfmNowPlayingJob($this->user, $this->song, 100);
|
||
|
}
|
||
|
|
||
|
public function testHandle(): void
|
||
|
{
|
||
|
$lastFm = Mockery::mock(LastfmService::class);
|
||
|
$lastFm->shouldReceive('updateNowPlaying')
|
||
|
->once()
|
||
|
->with(
|
||
|
$this->song->artist->name,
|
||
|
$this->song->title,
|
||
|
$this->song->album->name,
|
||
|
$this->song->length,
|
||
|
'foo'
|
||
|
);
|
||
|
|
||
|
$this->job->handle($lastFm);
|
||
|
}
|
||
|
}
|