mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
109 lines
2.7 KiB
PHP
109 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use App\Events\SongLikeToggled;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
|
|
class InteractionTest extends TestCase
|
|
{
|
|
use WithoutMiddleware;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->createSampleMediaSet();
|
|
}
|
|
|
|
/** @test */
|
|
public function play_count_is_increased()
|
|
{
|
|
$this->withoutEvents();
|
|
$user = factory(User::class)->create();
|
|
|
|
$song = Song::orderBy('id')->first();
|
|
$this->postAsUser('api/interaction/play', ['song' => $song->id], $user);
|
|
|
|
$this->seeInDatabase('interactions', [
|
|
'user_id' => $user->id,
|
|
'song_id' => $song->id,
|
|
'play_count' => 1,
|
|
]);
|
|
|
|
// Try again
|
|
$this->postAsUser('api/interaction/play', ['song' => $song->id], $user);
|
|
|
|
$this->seeInDatabase('interactions', [
|
|
'user_id' => $user->id,
|
|
'song_id' => $song->id,
|
|
'play_count' => 2,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function user_can_like_and_unlike_a_song()
|
|
{
|
|
$this->expectsEvents(SongLikeToggled::class);
|
|
|
|
$user = factory(User::class)->create();
|
|
|
|
$song = Song::orderBy('id')->first();
|
|
$this->postAsUser('api/interaction/like', ['song' => $song->id], $user);
|
|
|
|
$this->seeInDatabase('interactions', [
|
|
'user_id' => $user->id,
|
|
'song_id' => $song->id,
|
|
'liked' => 1,
|
|
]);
|
|
|
|
// Try again
|
|
$this->postAsUser('api/interaction/like', ['song' => $song->id], $user);
|
|
|
|
$this->seeInDatabase('interactions', [
|
|
'user_id' => $user->id,
|
|
'song_id' => $song->id,
|
|
'liked' => 0,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function user_can_like_and_unlike_songs_in_batch()
|
|
{
|
|
$this->expectsEvents(SongLikeToggled::class);
|
|
|
|
$user = factory(User::class)->create();
|
|
|
|
$songs = Song::orderBy('id')->take(2)->get();
|
|
$songIds = array_pluck($songs->toArray(), 'id');
|
|
|
|
$this->postAsUser('api/interaction/batch/like', ['songs' => $songIds], $user);
|
|
|
|
foreach ($songs as $song) {
|
|
$this->seeInDatabase('interactions', [
|
|
'user_id' => $user->id,
|
|
'song_id' => $song->id,
|
|
'liked' => 1,
|
|
]);
|
|
}
|
|
|
|
$this->postAsUser('api/interaction/batch/unlike', ['songs' => $songIds], $user);
|
|
|
|
foreach ($songs as $song) {
|
|
$this->seeInDatabase('interactions', [
|
|
'user_id' => $user->id,
|
|
'song_id' => $song->id,
|
|
'liked' => 0,
|
|
]);
|
|
}
|
|
}
|
|
}
|