mirror of
https://github.com/koel/koel
synced 2025-02-16 05:18:37 +00:00
100 lines
2.5 KiB
PHP
100 lines
2.5 KiB
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
||
|
use App\Models\User;
|
||
|
use App\Models\Song;
|
||
|
|
||
|
class InteractionTest extends TestCase
|
||
|
{
|
||
|
use DatabaseTransactions;
|
||
|
use WithoutMiddleware;
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->createSampleMediaSet();
|
||
|
}
|
||
|
|
||
|
public function testPlayCountRegister()
|
||
|
{
|
||
|
$user = factory(User::class)->create();
|
||
|
|
||
|
$song = Song::orderBy('id')->first();
|
||
|
$this->actingAs($user)
|
||
|
->post('api/interaction/play', ['id' => $song->id]);
|
||
|
|
||
|
$this->seeInDatabase('interactions', [
|
||
|
'user_id' => $user->id,
|
||
|
'song_id' => $song->id,
|
||
|
'play_count' => 1,
|
||
|
]);
|
||
|
|
||
|
// Try again
|
||
|
$this->actingAs($user)
|
||
|
->post('api/interaction/play', ['id' => $song->id]);
|
||
|
|
||
|
$this->seeInDatabase('interactions', [
|
||
|
'user_id' => $user->id,
|
||
|
'song_id' => $song->id,
|
||
|
'play_count' => 2,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function testLikeRegister()
|
||
|
{
|
||
|
$user = factory(User::class)->create();
|
||
|
|
||
|
$song = Song::orderBy('id')->first();
|
||
|
$this->actingAs($user)
|
||
|
->post('api/interaction/like', ['id' => $song->id]);
|
||
|
|
||
|
$this->seeInDatabase('interactions', [
|
||
|
'user_id' => $user->id,
|
||
|
'song_id' => $song->id,
|
||
|
'liked' => 1,
|
||
|
]);
|
||
|
|
||
|
// Try again
|
||
|
$this->actingAs($user)
|
||
|
->post('api/interaction/like', ['id' => $song->id]);
|
||
|
|
||
|
$this->seeInDatabase('interactions', [
|
||
|
'user_id' => $user->id,
|
||
|
'song_id' => $song->id,
|
||
|
'liked' => 0,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
public function testBatchLikeAndUnlike()
|
||
|
{
|
||
|
$user = factory(User::class)->create();
|
||
|
|
||
|
$songs = Song::orderBy('id')->take(2)->get();
|
||
|
$songIds = array_pluck($songs->toArray(), 'id');
|
||
|
|
||
|
$this->actingAs($user)
|
||
|
->post('api/interaction/batch/like', ['ids' => $songIds]);
|
||
|
|
||
|
foreach ($songs as $song) {
|
||
|
$this->seeInDatabase('interactions', [
|
||
|
'user_id' => $user->id,
|
||
|
'song_id' => $song->id,
|
||
|
'liked' => 1,
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
$this->actingAs($user)
|
||
|
->post('api/interaction/batch/unlike', ['ids' => $songIds]);
|
||
|
|
||
|
foreach ($songs as $song) {
|
||
|
$this->seeInDatabase('interactions', [
|
||
|
'user_id' => $user->id,
|
||
|
'song_id' => $song->id,
|
||
|
'liked' => 0,
|
||
|
]);
|
||
|
}
|
||
|
}
|
||
|
}
|