Skip to content

Commit c115c3c

Browse files
committed
Correct return value of SpotifyWebAPI::getSnapshotId()
1 parent f328500 commit c115c3c

File tree

2 files changed

+73
-1
lines changed

2 files changed

+73
-1
lines changed

src/SpotifyWebAPI.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ protected function getSnapshotId(array|object $body): string|bool
6363
{
6464
$body = (array) $body;
6565

66-
return $body['snapshot_id'] ?? null;
66+
return $body['snapshot_id'] ?? false;
6767
}
6868

6969
/**

tests/SpotifyWebAPITest.php

+72
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,31 @@ public function testAddPlaylistTracks()
283283
);
284284
}
285285

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+
286311
public function testChangeMyDevice()
287312
{
288313
$options = ['device_ids' => 'abc123'];
@@ -617,6 +642,30 @@ public function testDeletePlaylistTracksPositions()
617642
);
618643
}
619644

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+
620669
public function testFollowArtistsOrUsers()
621670
{
622671
$options = [
@@ -2014,6 +2063,29 @@ public function testReorderPlaylistTracks()
20142063
);
20152064
}
20162065

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+
20172089
public function testRepeat()
20182090
{
20192091
$return = ['status' => 204];

0 commit comments

Comments
 (0)