koel/tests/Integration/Services/InteractionServiceTest.php

92 lines
2.6 KiB
PHP
Raw Normal View History

2018-08-18 12:27:26 +00:00
<?php
2018-08-18 13:20:02 +00:00
2018-08-18 12:27:26 +00:00
namespace Tests\Integration\Services;
use App\Events\SongLikeToggled;
use App\Events\SongsBatchLiked;
use App\Events\SongsBatchUnliked;
2018-08-18 12:27:26 +00:00
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
{
2021-06-05 10:47:56 +00:00
private InteractionService $interactionService;
2018-08-18 12:27:26 +00:00
2019-07-22 07:03:23 +00:00
public function setUp(): void
2018-08-18 12:27:26 +00:00
{
parent::setUp();
$this->interactionService = new InteractionService();
2018-08-18 12:27:26 +00:00
}
2020-12-22 20:11:22 +00:00
public function testIncreasePlayCount(): void
2018-08-18 12:27:26 +00:00
{
/** @var Interaction $interaction */
$interaction = Interaction::factory()->create();
$currentCount = $interaction->play_count;
2018-08-18 12:27:26 +00:00
$this->interactionService->increasePlayCount($interaction->song, $interaction->user);
2022-10-07 14:25:44 +00:00
self::assertSame($currentCount + 1, $interaction->refresh()->play_count);
2018-08-18 12:27:26 +00:00
}
public function testToggleLike(): void
2018-08-18 12:27:26 +00:00
{
$this->expectsEvents(SongLikeToggled::class);
2021-07-26 21:21:36 +00:00
/** @var Interaction $interaction */
$interaction = Interaction::factory()->create();
$currentLiked = $interaction->liked;
2018-08-18 12:27:26 +00:00
$this->interactionService->toggleLike($interaction->song, $interaction->user);
self::assertNotSame($currentLiked, $interaction->refresh()->liked);
2018-08-18 12:27:26 +00:00
}
public function testLikeMultipleSongs(): void
2018-08-18 12:27:26 +00:00
{
$this->expectsEvents(SongsBatchLiked::class);
2018-08-18 12:27:26 +00:00
/** @var Collection $songs */
$songs = Song::factory(2)->create();
/** @var User $user */
$user = User::factory()->create();
2018-08-18 12:27:26 +00:00
$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);
2018-08-18 12:27:26 +00:00
});
}
public function testUnlikeMultipleSongs(): void
2018-08-18 12:27:26 +00:00
{
$this->expectsEvents(SongsBatchUnliked::class);
2018-08-18 12:27:26 +00:00
/** @var User $user */
$user = User::factory()->create();
2018-08-18 12:27:26 +00:00
/** @var Collection $interactions */
$interactions = Interaction::factory(3)->create([
2018-08-18 12:27:26 +00:00
'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);
2018-08-18 12:27:26 +00:00
});
}
}