2015-12-13 04:42:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
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;
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
class PlaylistTest extends TestCase
|
|
|
|
{
|
|
|
|
use WithoutMiddleware, 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->actingAs($user)
|
|
|
|
->post('api/playlist', [
|
|
|
|
'name' => 'Foo Bar',
|
2016-06-04 15:15:14 +00:00
|
|
|
'songs' => $songs->pluck('id')->toArray(),
|
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
|
|
|
|
|
|
|
$this->actingAs($user)->get('api/playlist')
|
|
|
|
->seeJson([
|
|
|
|
'id' => $playlist->id,
|
|
|
|
'name' => 'Foo Bar',
|
|
|
|
]);
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testUpdatePlaylistName()
|
|
|
|
{
|
|
|
|
$user = factory(User::class)->create();
|
2015-12-14 16:27:26 +00:00
|
|
|
$user2 = factory(User::class)->create();
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
$playlist = factory(Playlist::class)->create([
|
|
|
|
'user_id' => $user->id,
|
|
|
|
]);
|
|
|
|
|
2015-12-14 16:27:26 +00:00
|
|
|
$this->actingAs($user2)
|
|
|
|
->put("api/playlist/{$playlist->id}", ['name' => 'Foo Bar'])
|
|
|
|
->seeStatusCode(403);
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
$this->actingAs($user)
|
|
|
|
->put("api/playlist/{$playlist->id}", ['name' => 'Foo Bar']);
|
|
|
|
|
|
|
|
$this->seeInDatabase('playlists', [
|
|
|
|
'user_id' => $user->id,
|
|
|
|
'name' => 'Foo Bar',
|
|
|
|
]);
|
|
|
|
|
|
|
|
// Other users can't modify it
|
2015-12-14 16:27:26 +00:00
|
|
|
$this->actingAs(factory(User::class)->create())
|
|
|
|
->put("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();
|
2015-12-14 16:27:26 +00:00
|
|
|
$user2 = factory(User::class)->create();
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
$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();
|
|
|
|
|
2015-12-14 16:27:26 +00:00
|
|
|
$this->actingAs($user2)
|
|
|
|
->put("api/playlist/{$playlist->id}/sync", [
|
2016-06-04 15:15:14 +00:00
|
|
|
'songs' => $songs->pluck('id')->toArray(),
|
2015-12-14 16:27:26 +00:00
|
|
|
])
|
|
|
|
->seeStatusCode(403);
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
$this->actingAs($user)
|
|
|
|
->put("api/playlist/{$playlist->id}/sync", [
|
2016-06-04 15:15:14 +00:00
|
|
|
'songs' => $songs->pluck('id')->toArray(),
|
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();
|
2015-12-14 16:27:26 +00:00
|
|
|
$user2 = factory(User::class)->create();
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
$playlist = factory(Playlist::class)->create([
|
|
|
|
'user_id' => $user->id,
|
|
|
|
]);
|
|
|
|
|
2015-12-14 16:27:26 +00:00
|
|
|
$this->actingAs($user2)
|
|
|
|
->delete("api/playlist/{$playlist->id}")
|
|
|
|
->seeStatusCode(403);
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2015-12-14 16:27:26 +00:00
|
|
|
$this->actingAs($user)
|
|
|
|
->delete("api/playlist/{$playlist->id}")
|
|
|
|
->notSeeInDatabase('playlists', ['id' => $playlist->id]);
|
2015-12-13 04:42:28 +00:00
|
|
|
}
|
|
|
|
}
|