mirror of
https://github.com/koel/koel
synced 2024-11-10 06:34:14 +00:00
121 lines
3.3 KiB
PHP
121 lines
3.3 KiB
PHP
<?php
|
|
|
|
use App\Models\Playlist;
|
|
use App\Models\Song;
|
|
use App\Models\User;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class PlaylistTest extends TestCase
|
|
{
|
|
use DatabaseTransactions;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->createSampleMediaSet();
|
|
}
|
|
|
|
public function testCreatePlaylist()
|
|
{
|
|
$user = factory(User::class)->create();
|
|
|
|
// Let's create a playlist with 3 songs
|
|
$songs = Song::orderBy('id')->take(3)->get();
|
|
|
|
$this->postAsUser('api/playlist', [
|
|
'name' => 'Foo Bar',
|
|
'songs' => $songs->pluck('id')->toArray(),
|
|
], $user);
|
|
|
|
$this->seeInDatabase('playlists', [
|
|
'user_id' => $user->id,
|
|
'name' => 'Foo Bar',
|
|
]);
|
|
|
|
$playlist = Playlist::orderBy('id', 'desc')->first();
|
|
|
|
foreach ($songs as $song) {
|
|
$this->seeInDatabase('playlist_song', [
|
|
'playlist_id' => $playlist->id,
|
|
'song_id' => $song->id,
|
|
]);
|
|
}
|
|
|
|
$this->getAsUser('api/playlist', $user)
|
|
->seeJson([
|
|
'id' => $playlist->id,
|
|
'name' => 'Foo Bar',
|
|
]);
|
|
}
|
|
|
|
public function testUpdatePlaylistName()
|
|
{
|
|
$user = factory(User::class)->create();
|
|
|
|
$playlist = factory(Playlist::class)->create([
|
|
'user_id' => $user->id,
|
|
]);
|
|
|
|
$this->putAsUser("api/playlist/{$playlist->id}", ['name' => 'Foo Bar'], $user);
|
|
|
|
$this->seeInDatabase('playlists', [
|
|
'user_id' => $user->id,
|
|
'name' => 'Foo Bar',
|
|
]);
|
|
|
|
// Other users can't modify it
|
|
$this->putAsUser("api/playlist/{$playlist->id}", ['name' => 'Foo Bar'])
|
|
->seeStatusCode(403);
|
|
}
|
|
|
|
public function testSyncPlaylist()
|
|
{
|
|
$user = factory(User::class)->create();
|
|
|
|
$playlist = factory(Playlist::class)->create([
|
|
'user_id' => $user->id,
|
|
]);
|
|
|
|
$songs = Song::orderBy('id')->take(4)->get();
|
|
$playlist->songs()->attach($songs->pluck('id')->toArray());
|
|
|
|
$removedSong = $songs->pop();
|
|
|
|
$this->putAsUser("api/playlist/{$playlist->id}/sync", [
|
|
'songs' => $songs->pluck('id')->toArray(),
|
|
])
|
|
->seeStatusCode(403);
|
|
|
|
$this->putAsUser("api/playlist/{$playlist->id}/sync", [
|
|
'songs' => $songs->pluck('id')->toArray(),
|
|
], $user);
|
|
|
|
// We should still see the first 3 songs, but not the removed one
|
|
foreach ($songs as $song) {
|
|
$this->seeInDatabase('playlist_song', [
|
|
'playlist_id' => $playlist->id,
|
|
'song_id' => $song->id,
|
|
]);
|
|
}
|
|
|
|
$this->notSeeInDatabase('playlist_song', [
|
|
'playlist_id' => $playlist->id,
|
|
'song_id' => $removedSong->id,
|
|
]);
|
|
}
|
|
|
|
public function testDeletePlaylist()
|
|
{
|
|
$user = factory(User::class)->create();
|
|
|
|
$playlist = factory(Playlist::class)->create([
|
|
'user_id' => $user->id,
|
|
]);
|
|
|
|
$this->deleteAsUser("api/playlist/{$playlist->id}")
|
|
->seeStatusCode(403);
|
|
|
|
$this->deleteAsUser("api/playlist/{$playlist->id}", [], $user)
|
|
->notSeeInDatabase('playlists', ['id' => $playlist->id]);
|
|
}
|
|
}
|