koel/tests/Feature/PlaylistTest.php

125 lines
3.4 KiB
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
2017-02-14 06:53:02 +00:00
namespace Tests\Feature;
2015-12-13 04:42:28 +00:00
use App\Models\Playlist;
2015-12-14 13:22:39 +00:00
use App\Models\Song;
use App\Models\User;
use Illuminate\Foundation\Testing\DatabaseTransactions;
2017-02-14 06:53:02 +00:00
use Tests\BrowserKitTestCase;
2015-12-13 04:42:28 +00:00
2017-02-14 06:53:02 +00:00
class PlaylistTest extends BrowserKitTestCase
2015-12-13 04:42:28 +00:00
{
2016-09-26 06:30:00 +00:00
use DatabaseTransactions;
2015-12-13 04:42:28 +00:00
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();
2016-09-26 06:30:00 +00:00
$this->postAsUser('api/playlist', [
2015-12-13 04:42:28 +00:00
'name' => 'Foo Bar',
2016-06-04 15:15:14 +00:00
'songs' => $songs->pluck('id')->toArray(),
2016-09-26 06:30:00 +00:00
], $user);
2015-12-13 04:42:28 +00:00
$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,
]);
}
2016-01-26 06:32:29 +00:00
2016-09-26 06:30:00 +00:00
$this->getAsUser('api/playlist', $user)
2016-01-26 06:32:29 +00:00
->seeJson([
'id' => $playlist->id,
'name' => 'Foo Bar',
]);
2015-12-13 04:42:28 +00:00
}
public function testUpdatePlaylistName()
{
$user = factory(User::class)->create();
$playlist = factory(Playlist::class)->create([
'user_id' => $user->id,
]);
2016-09-26 06:30:00 +00:00
$this->putAsUser("api/playlist/{$playlist->id}", ['name' => 'Foo Bar'], $user);
2015-12-13 04:42:28 +00:00
$this->seeInDatabase('playlists', [
'user_id' => $user->id,
'name' => 'Foo Bar',
]);
// Other users can't modify it
2016-09-26 06:30:00 +00:00
$this->putAsUser("api/playlist/{$playlist->id}", ['name' => 'Foo Bar'])
->seeStatusCode(403);
2015-12-13 04:42:28 +00:00
}
public function testSyncPlaylist()
{
$user = factory(User::class)->create();
$playlist = factory(Playlist::class)->create([
'user_id' => $user->id,
]);
$songs = Song::orderBy('id')->take(4)->get();
2016-06-04 15:15:14 +00:00
$playlist->songs()->attach($songs->pluck('id')->toArray());
2015-12-13 04:42:28 +00:00
$removedSong = $songs->pop();
2016-09-26 06:30:00 +00:00
$this->putAsUser("api/playlist/{$playlist->id}/sync", [
2016-06-04 15:15:14 +00:00
'songs' => $songs->pluck('id')->toArray(),
])
->seeStatusCode(403);
2016-09-26 06:30:00 +00:00
$this->putAsUser("api/playlist/{$playlist->id}/sync", [
2016-06-04 15:15:14 +00:00
'songs' => $songs->pluck('id')->toArray(),
2016-09-26 06:30:00 +00:00
], $user);
2015-12-13 04:42:28 +00:00
// 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,
]);
2016-09-26 06:30:00 +00:00
$this->deleteAsUser("api/playlist/{$playlist->id}")
->seeStatusCode(403);
2015-12-13 04:42:28 +00:00
2016-09-26 06:30:00 +00:00
$this->deleteAsUser("api/playlist/{$playlist->id}", [], $user)
->notSeeInDatabase('playlists', ['id' => $playlist->id]);
2015-12-13 04:42:28 +00:00
}
}