koel/tests/Feature/PlayCountTest.php
2024-07-06 17:44:42 +02:00

64 lines
1.6 KiB
PHP

<?php
namespace Tests\Feature;
use App\Events\PlaybackStarted;
use App\Models\Interaction;
use App\Models\Song;
use Illuminate\Support\Facades\Event;
use Tests\TestCase;
use function Tests\create_user;
class PlayCountTest extends TestCase
{
public function testStoreExistingEntry(): void
{
Event::fake(PlaybackStarted::class);
/** @var Interaction $interaction */
$interaction = Interaction::factory()->create([
'play_count' => 10,
]);
$this->postAs('/api/interaction/play', ['song' => $interaction->song->id], $interaction->user)
->assertJsonStructure([
'type',
'id',
'song_id',
'liked',
'play_count',
]);
self::assertSame(11, $interaction->refresh()->play_count);
Event::assertDispatched(PlaybackStarted::class);
}
public function testStoreNewEntry(): void
{
Event::fake(PlaybackStarted::class);
/** @var Song $song */
$song = Song::factory()->create();
$user = create_user();
$this->postAs('/api/interaction/play', ['song' => $song->id], $user)
->assertJsonStructure([
'type',
'id',
'song_id',
'liked',
'play_count',
]);
/** @var Interaction $interaction */
$interaction = Interaction::query()
->where('song_id', $song->id)
->where('user_id', $user->id)
->first();
self::assertSame(1, $interaction->play_count);
Event::assertDispatched(PlaybackStarted::class);
}
}