createSampleMediaSet(); $this->downloadService = $this->mockIocDependency(DownloadService::class); } /** @test */ public function a_single_song_can_be_downloaded() { $song = Song::first(); $this->downloadService ->shouldReceive('from') ->once() ->andReturn($this->mediaPath.'/blank.mp3'); $this->getAsUser("api/download/songs?songs[]={$song->id}") ->assertResponseOk(); } /** @test */ public function multiple_songs_can_be_downloaded() { $songs = Song::take(2)->get(); $this->downloadService ->shouldReceive('from') ->once() ->andReturn($this->mediaPath.'/blank.mp3'); // should be a zip file, but we're testing hereā€¦ $this->getAsUser("api/download/songs?songs[]={$songs[0]->id}&songs[]={$songs[1]->id}") ->assertResponseOk(); } /** @test */ public function a_whole_album_can_be_downloaded() { $album = Album::first(); $this->downloadService ->shouldReceive('from') ->once() ->andReturn($this->mediaPath.'/blank.mp3'); $this->getAsUser("api/download/album/{$album->id}") ->assertResponseOk(); } /** @test */ public function a_whole_artists_biography_can_be_downloaded() { $artist = Artist::first(); $this->downloadService ->shouldReceive('from') ->once() ->andReturn($this->mediaPath.'/blank.mp3'); $this->getAsUser("api/download/artist/{$artist->id}") ->assertResponseOk(); } /** @test */ public function a_whole_playlist_can_be_downloaded() { $user = factory(User::class)->create(); $playlist = factory(Playlist::class)->create([ 'user_id' => $user->id, ]); $this->getAsUser("api/download/playlist/{$playlist->id}") ->assertResponseStatus(403); $this->downloadService ->shouldReceive('from') ->once() ->andReturn($this->mediaPath.'/blank.mp3'); $this->getAsUser("api/download/playlist/{$playlist->id}", $user) ->assertResponseOk(); } /** @test */ public function all_favorite_songs_can_be_downloaded() { $this->downloadService ->shouldReceive('from') ->once() ->andReturn($this->mediaPath.'/blank.mp3'); $this->getAsUser('api/download/favorites') ->seeStatusCode(200); } }