koel/tests/Feature/ScrobbleTest.php

33 lines
837 B
PHP
Raw Normal View History

2016-05-30 13:50:59 +08:00
<?php
2017-02-14 14:53:02 +08:00
namespace Tests\Feature;
2016-05-30 13:50:59 +08:00
use App\Models\Song;
2018-08-24 17:27:19 +02:00
use App\Models\User;
2018-08-18 15:19:40 +02:00
use App\Services\LastfmService;
2016-05-30 13:50:59 +08:00
2017-08-05 17:56:11 +01:00
class ScrobbleTest extends TestCase
2016-05-30 13:50:59 +08:00
{
public function testLastfmScrobble(): void
2016-05-30 13:50:59 +08:00
{
2018-09-04 13:25:24 +07:00
$this->withoutEvents();
static::createSampleMediaSet();
2018-09-04 13:25:24 +07:00
$song = Song::first();
/** @var User $user */
$user = User::factory()->create();
2018-09-04 13:25:24 +07:00
$user->setPreference('lastfm_session_key', 'foo');
2016-05-30 13:50:59 +08:00
2020-09-14 00:04:07 +02:00
$timestamp = time();
2016-05-30 13:50:59 +08:00
static::mockIocDependency(LastfmService::class)
2018-09-04 13:25:24 +07:00
->shouldReceive('scrobble')
2020-09-14 00:04:07 +02:00
->with($song->album->artist->name, $song->title, $timestamp, $song->album->name, 'foo')
2018-08-24 17:27:19 +02:00
->once();
2016-05-30 13:50:59 +08:00
2020-09-14 00:04:07 +02:00
$response = $this->postAsUser("/api/{$song->id}/scrobble", ['timestamp' => $timestamp], $user);
$response->assertStatus(204);
2016-05-30 13:50:59 +08:00
}
}