2016-05-30 05:50:59 +00:00
|
|
|
<?php
|
|
|
|
|
2017-02-14 06:53:02 +00:00
|
|
|
namespace Tests\Feature;
|
|
|
|
|
2016-05-30 05:50:59 +00:00
|
|
|
use App\Models\Song;
|
2018-08-24 15:27:19 +00:00
|
|
|
use App\Models\User;
|
2018-08-18 13:19:40 +00:00
|
|
|
use App\Services\LastfmService;
|
2016-05-30 05:50:59 +00:00
|
|
|
|
2017-08-05 16:56:11 +00:00
|
|
|
class ScrobbleTest extends TestCase
|
2016-05-30 05:50:59 +00:00
|
|
|
{
|
2020-11-14 16:57:25 +00:00
|
|
|
public function testLastfmScrobble(): void
|
2016-05-30 05:50:59 +00:00
|
|
|
{
|
2018-09-04 06:25:24 +00:00
|
|
|
$this->withoutEvents();
|
|
|
|
|
|
|
|
/** @var User $user */
|
2020-11-14 16:57:25 +00:00
|
|
|
$user = User::factory()->create();
|
2021-06-04 16:19:34 +00:00
|
|
|
|
|
|
|
/** @var Song $song */
|
|
|
|
$song = Song::factory()->create();
|
2016-05-30 05:50:59 +00:00
|
|
|
|
2020-09-13 22:04:07 +00:00
|
|
|
$timestamp = time();
|
2016-05-30 05:50:59 +00:00
|
|
|
|
2020-12-22 23:01:49 +00:00
|
|
|
self::mock(LastfmService::class)
|
2018-09-04 06:25:24 +00:00
|
|
|
->shouldReceive('scrobble')
|
2021-06-04 16:19:34 +00:00
|
|
|
->with($song->album->artist->name, $song->title, $timestamp, $song->album->name, $user->lastfm_session_key)
|
2018-08-24 15:27:19 +00:00
|
|
|
->once();
|
2016-05-30 05:50:59 +00:00
|
|
|
|
2021-06-04 16:19:34 +00:00
|
|
|
$this->postAsUser("/api/$song->id/scrobble", ['timestamp' => $timestamp], $user)
|
|
|
|
->assertNoContent();
|
2016-05-30 05:50:59 +00:00
|
|
|
}
|
|
|
|
}
|