koel/tests/Feature/ScrobbleTest.php

35 lines
789 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;
2022-08-08 18:00:59 +02:00
use Mockery;
2024-01-09 19:34:40 +01:00
use Tests\TestCase;
2016-05-30 13:50:59 +08:00
2024-01-11 13:41:33 +01:00
use function Tests\create_user;
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
{
2024-01-11 13:41:33 +01:00
$user = create_user();
/** @var Song $song */
$song = Song::factory()->create();
2016-05-30 13:50:59 +08:00
2020-12-23 00:01:49 +01:00
self::mock(LastfmService::class)
2018-09-04 13:25:24 +07:00
->shouldReceive('scrobble')
2022-08-08 18:00:59 +02:00
->with(
Mockery::on(static fn (Song $s) => $s->is($song)),
Mockery::on(static fn (User $u) => $u->is($user)),
100
)
2018-08-24 17:27:19 +02:00
->once();
2016-05-30 13:50:59 +08:00
2023-06-05 23:46:41 +02:00
$this->postAs("/api/songs/$song->id/scrobble", ['timestamp' => 100], $user)
->assertNoContent();
2016-05-30 13:50:59 +08:00
}
}