koel/tests/Integration/Services/InteractionServiceTest.php
2022-10-07 16:25:44 +02:00

91 lines
2.6 KiB
PHP

<?php
namespace Tests\Integration\Services;
use App\Events\SongLikeToggled;
use App\Events\SongsBatchLiked;
use App\Events\SongsBatchUnliked;
use App\Models\Interaction;
use App\Models\Song;
use App\Models\User;
use App\Services\InteractionService;
use Illuminate\Support\Collection;
use Tests\TestCase;
class InteractionServiceTest extends TestCase
{
private InteractionService $interactionService;
public function setUp(): void
{
parent::setUp();
$this->interactionService = new InteractionService();
}
public function testIncreasePlayCount(): void
{
/** @var Interaction $interaction */
$interaction = Interaction::factory()->create();
$currentCount = $interaction->play_count;
$this->interactionService->increasePlayCount($interaction->song, $interaction->user);
self::assertSame($currentCount + 1, $interaction->refresh()->play_count);
}
public function testToggleLike(): void
{
$this->expectsEvents(SongLikeToggled::class);
/** @var Interaction $interaction */
$interaction = Interaction::factory()->create();
$currentLiked = $interaction->liked;
$this->interactionService->toggleLike($interaction->song, $interaction->user);
self::assertNotSame($currentLiked, $interaction->refresh()->liked);
}
public function testLikeMultipleSongs(): void
{
$this->expectsEvents(SongsBatchLiked::class);
/** @var Collection $songs */
$songs = Song::factory(2)->create();
/** @var User $user */
$user = User::factory()->create();
$this->interactionService->batchLike($songs->pluck('id')->all(), $user);
$songs->each(static function (Song $song) use ($user): void {
/** @var Interaction $interaction */
$interaction = Interaction::query()
->where('song_id', $song->id)
->where('user_id', $user->id)
->first();
self::assertTrue($interaction->liked);
});
}
public function testUnlikeMultipleSongs(): void
{
$this->expectsEvents(SongsBatchUnliked::class);
/** @var User $user */
$user = User::factory()->create();
/** @var Collection $interactions */
$interactions = Interaction::factory(3)->create([
'user_id' => $user->id,
'liked' => true,
]);
$this->interactionService->batchUnlike($interactions->pluck('song.id')->all(), $user);
$interactions->each(static function (Interaction $interaction): void {
self::assertFalse($interaction->refresh()->liked);
});
}
}