2022-07-27 09:30:04 +00:00
|
|
|
<?php
|
|
|
|
|
2023-06-05 21:46:41 +00:00
|
|
|
namespace Tests\Feature;
|
2022-07-27 09:30:04 +00:00
|
|
|
|
2024-01-25 16:21:26 +00:00
|
|
|
use App\Http\Resources\SongResource;
|
2024-01-01 11:40:21 +00:00
|
|
|
use App\Models\QueueState;
|
2022-07-27 09:30:04 +00:00
|
|
|
use App\Models\Song;
|
2024-01-09 18:34:40 +00:00
|
|
|
use Tests\TestCase;
|
2022-07-27 09:30:04 +00:00
|
|
|
|
2024-01-11 12:41:33 +00:00
|
|
|
use function Tests\create_user;
|
|
|
|
|
2022-07-27 09:30:04 +00:00
|
|
|
class QueueTest extends TestCase
|
|
|
|
{
|
2024-01-01 11:40:21 +00:00
|
|
|
public const QUEUE_STATE_JSON_STRUCTURE = [
|
|
|
|
'current_song',
|
2024-01-25 16:21:26 +00:00
|
|
|
'songs' => ['*' => SongResource::JSON_STRUCTURE],
|
2024-01-01 11:40:21 +00:00
|
|
|
'playback_position',
|
|
|
|
];
|
|
|
|
|
|
|
|
public function testGetEmptyState(): void
|
|
|
|
{
|
|
|
|
$this->getAs('api/queue/state')
|
|
|
|
->assertJsonStructure(self::QUEUE_STATE_JSON_STRUCTURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetExistingState(): void
|
|
|
|
{
|
|
|
|
/** @var QueueState $queueState */
|
|
|
|
$queueState = QueueState::factory()->create([
|
|
|
|
'current_song_id' => Song::factory(),
|
|
|
|
'playback_position' => 123,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->getAs('api/queue/state', $queueState->user)
|
|
|
|
->assertJsonStructure(self::QUEUE_STATE_JSON_STRUCTURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdateStateWithoutExistingState(): void
|
|
|
|
{
|
2024-01-11 12:41:33 +00:00
|
|
|
$user = create_user();
|
2024-01-01 11:40:21 +00:00
|
|
|
|
|
|
|
self::assertDatabaseMissing(QueueState::class, ['user_id' => $user->id]);
|
|
|
|
|
|
|
|
$songIds = Song::factory(3)->create()->pluck('id')->toArray();
|
|
|
|
|
|
|
|
$this->putAs('api/queue/state', ['songs' => $songIds], $user)
|
|
|
|
->assertNoContent();
|
|
|
|
|
|
|
|
/** @var QueueState $queue */
|
|
|
|
$queue = QueueState::query()->where('user_id', $user->id)->firstOrFail();
|
|
|
|
self::assertEqualsCanonicalizing($songIds, $queue->song_ids);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdatePlaybackStatus(): void
|
|
|
|
{
|
|
|
|
/** @var QueueState $state */
|
|
|
|
$state = QueueState::factory()->create();
|
|
|
|
|
|
|
|
/** @var Song $song */
|
|
|
|
$song = Song::factory()->create();
|
|
|
|
|
|
|
|
$this->putAs('api/queue/playback-status', ['song' => $song->id, 'position' => 123], $state->user)
|
|
|
|
->assertNoContent();
|
|
|
|
|
|
|
|
$state->refresh();
|
|
|
|
self::assertSame($song->id, $state->current_song_id);
|
|
|
|
self::assertSame(123, $state->playback_position);
|
|
|
|
|
|
|
|
/** @var Song $anotherSong */
|
|
|
|
$anotherSong = Song::factory()->create();
|
|
|
|
|
|
|
|
$this->putAs('api/queue/playback-status', ['song' => $anotherSong->id, 'position' => 456], $state->user)
|
|
|
|
->assertNoContent();
|
|
|
|
|
|
|
|
$state->refresh();
|
|
|
|
self::assertSame($anotherSong->id, $state->current_song_id);
|
|
|
|
self::assertSame(456, $state->playback_position);
|
|
|
|
}
|
|
|
|
|
2022-07-27 09:30:04 +00:00
|
|
|
public function testFetchSongs(): void
|
|
|
|
{
|
|
|
|
Song::factory(10)->create();
|
|
|
|
|
|
|
|
$this->getAs('api/queue/fetch?order=rand&limit=5')
|
2024-01-25 16:21:26 +00:00
|
|
|
->assertJsonStructure(['*' => SongResource::JSON_STRUCTURE])
|
2022-07-27 09:30:04 +00:00
|
|
|
->assertJsonCount(5, '*');
|
|
|
|
|
|
|
|
$this->getAs('api/queue/fetch?order=asc&sort=title&limit=5')
|
2024-01-25 16:21:26 +00:00
|
|
|
->assertJsonStructure(['*' => SongResource::JSON_STRUCTURE])
|
2022-07-27 09:30:04 +00:00
|
|
|
->assertJsonCount(5, '*');
|
|
|
|
}
|
|
|
|
}
|