@@ -283,6 +283,31 @@ public function testAddPlaylistTracks()
283
283
);
284
284
}
285
285
286
+ public function testAddPlaylistTracksNoSnapshotId ()
287
+ {
288
+ $ expected = json_encode ([
289
+ 'uris ' => [],
290
+ ]);
291
+
292
+ $ headers = ['Content-Type ' => 'application/json ' ];
293
+ $ return = ['body ' => []];
294
+ $ api = $ this ->setupApi (
295
+ 'POST ' ,
296
+ '/v1/playlists/0UZ0Ll4HJHR7yvURYbHJe9/tracks ' ,
297
+ $ expected ,
298
+ $ headers ,
299
+ $ return
300
+ );
301
+
302
+ $ this ->assertFalse (
303
+ $ api ->addPlaylistTracks (
304
+ 'spotify:playlist:0UZ0Ll4HJHR7yvURYbHJe9 ' ,
305
+ [],
306
+ []
307
+ )
308
+ );
309
+ }
310
+
286
311
public function testChangeMyDevice ()
287
312
{
288
313
$ options = ['device_ids ' => 'abc123 ' ];
@@ -617,6 +642,30 @@ public function testDeletePlaylistTracksPositions()
617
642
);
618
643
}
619
644
645
+ public function testDeletePlaylistTracksNoSnapshotId ()
646
+ {
647
+ $ expected = json_encode ([
648
+ 'positions ' => [],
649
+ ]);
650
+
651
+ $ headers = ['Content-Type ' => 'application/json ' ];
652
+ $ return = ['body ' => []];
653
+ $ api = $ this ->setupApi (
654
+ 'DELETE ' ,
655
+ '/v1/playlists/0UZ0Ll4HJHR7yvURYbHJe9/tracks ' ,
656
+ $ expected ,
657
+ $ headers ,
658
+ $ return
659
+ );
660
+
661
+ $ this ->assertFalse (
662
+ $ api ->deletePlaylistTracks (
663
+ 'spotify:playlist:0UZ0Ll4HJHR7yvURYbHJe9 ' ,
664
+ ['positions ' => []]
665
+ )
666
+ );
667
+ }
668
+
620
669
public function testFollowArtistsOrUsers ()
621
670
{
622
671
$ options = [
@@ -2014,6 +2063,29 @@ public function testReorderPlaylistTracks()
2014
2063
);
2015
2064
}
2016
2065
2066
+ public function testReorderPlaylistTracksNoSnapshotId ()
2067
+ {
2068
+ $ expected = json_encode ([
2069
+ ]);
2070
+
2071
+ $ headers = ['Content-Type ' => 'application/json ' ];
2072
+ $ return = ['body ' => []];
2073
+ $ api = $ this ->setupApi (
2074
+ 'PUT ' ,
2075
+ '/v1/playlists/0UZ0Ll4HJHR7yvURYbHJe9/tracks ' ,
2076
+ $ expected ,
2077
+ $ headers ,
2078
+ $ return
2079
+ );
2080
+
2081
+ $ this ->assertFalse (
2082
+ $ api ->reorderPlaylistTracks (
2083
+ 'spotify:playlist:0UZ0Ll4HJHR7yvURYbHJe9 ' ,
2084
+ []
2085
+ )
2086
+ );
2087
+ }
2088
+
2017
2089
public function testRepeat ()
2018
2090
{
2019
2091
$ return = ['status ' => 204 ];
0 commit comments