mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
100 lines
2.7 KiB
PHP
100 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\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
use Tests\BrowserKitTestCase;
|
|
|
|
class InteractionTest extends BrowserKitTestCase
|
|
{
|
|
use DatabaseTransactions, WithoutMiddleware;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->createSampleMediaSet();
|
|
}
|
|
|
|
public function testPlayCountRegister()
|
|
{
|
|
$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,
|
|
]);
|
|
}
|
|
|
|
public function testLikeRegister()
|
|
{
|
|
$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,
|
|
]);
|
|
}
|
|
|
|
public function testBatchLikeAndUnlike()
|
|
{
|
|
$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,
|
|
]);
|
|
}
|
|
}
|
|
}
|