interactionService = new InteractionService(); } public function testIncreasePlayCount(): void { /** @var Interaction $interaction */ $interaction = Interaction::factory()->create(); $this->interactionService->increasePlayCount($interaction->song, $interaction->user); $updatedInteraction = Interaction::find($interaction->id); self::assertEquals($interaction->play_count + 1, $updatedInteraction->play_count); } public function testToggleLike(): void { $this->expectsEvents(SongLikeToggled::class); $interaction = Interaction::factory()->create(); $this->interactionService->toggleLike($interaction->song, $interaction->user); /** @var Interaction $interaction */ $updatedInteraction = Interaction::find($interaction->id); self::assertNotSame($interaction->liked, $updatedInteraction->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 { self::assertTrue(Interaction::whereSongIdAndUserId($song->id, $user->id)->first()->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::find($interaction->id)->liked); }); } }