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); }); } }