forked from zmb3/spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
playlist_test.go
747 lines (667 loc) · 21.4 KB
/
playlist_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
package spotify
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"strings"
"testing"
"time"
)
func TestFeaturedPlaylists(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/featured_playlists.txt")
defer server.Close()
country := "SE"
msg, p, err := client.FeaturedPlaylists(context.Background(), Country(country))
if err != nil {
t.Error(err)
return
}
if msg != "New Music Friday!" {
t.Errorf("Want 'Enjoy a mellow afternoon.', got'%s'\n", msg)
}
if p.Playlists == nil || len(p.Playlists) == 0 {
t.Fatal("Empty playlists result")
}
expected := "New Music Friday Sweden"
if name := p.Playlists[0].Name; name != expected {
t.Errorf("Want '%s', got '%s'\n", expected, name)
}
expected = "Äntligen fredag och ny musik! Happy New Music Friday!"
if desc := p.Playlists[0].Description; desc != expected {
t.Errorf("Want '%s', got '%s'\n", expected, desc)
}
}
func TestFeaturedPlaylistsExpiredToken(t *testing.T) {
json := `{
"error": {
"status": 401,
"message": "The access token expired"
}
}`
client, server := testClientString(http.StatusUnauthorized, json)
defer server.Close()
msg, pl, err := client.FeaturedPlaylists(context.Background())
if msg != "" || pl != nil || err == nil {
t.Fatal("Expected an error")
}
serr, ok := err.(Error)
if !ok {
t.Fatalf("Expected spotify Error, got %T", err)
}
if serr.Status != http.StatusUnauthorized {
t.Error("Expected HTTP 401")
}
}
func TestPlaylistsForUser(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/playlists_for_user.txt")
defer server.Close()
playlists, err := client.GetPlaylistsForUser(context.Background(), "whizler")
if err != nil {
t.Error(err)
}
if l := len(playlists.Playlists); l == 0 {
t.Fatal("Didn't get any results")
} else if l != 7 {
t.Errorf("Got %d playlists, expected 7\n", l)
}
p := playlists.Playlists[0]
if p.Name != "Top 40" {
t.Error("Expected Top 40, got", p.Name)
}
if p.Tracks.Total != 40 {
t.Error("Expected 40 tracks, got", p.Tracks.Total)
}
expected := "Nederlandse Top 40, de enige echte hitlijst van Nederland! Official Dutch Top 40. Check top40.nl voor alle details en luister iedere vrijdag vanaf 14.00 uur naar de lijst op Qmusic met Domien Verschuuren."
if p.Description != expected {
t.Errorf("Expected '%s', got '%s'\n", expected, p.Description)
}
}
func TestGetPlaylist(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/get_playlist.txt")
defer server.Close()
p, err := client.GetPlaylist(context.Background(), "1h9q8vXXDl2vHOmwdsuXms")
if err != nil {
t.Error(err)
}
if p.Collaborative {
t.Error("Playlist shouldn't be collaborative")
}
if p.Description != "Bit of a overlap with phonk but whatever" {
t.Error("Description is invalid")
}
// Ensure the Description field is also present in the SimplePlaylist part of the object
if p.SimplePlaylist.Description != "Bit of a overlap with phonk but whatever" {
t.Error("Description is invalid in the SimplePlaylist part of the object")
}
}
func TestGetPlaylistOpt(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/get_playlist_opt.txt")
defer server.Close()
fields := "href,name,owner(!href,external_urls),tracks.items(added_by.id,track(name,href,album(name,href)))"
p, err := client.GetPlaylist(context.Background(), "59ZbFPES4DQwEjBpWHzrtC", Fields(fields))
if err != nil {
t.Error(err)
}
if p.Collaborative {
t.Error("Playlist shouldn't be collaborative")
}
if p.Description != "" {
t.Error("No description should be included")
}
// A bit counterintuitive, but we excluded tracks.total from the API call so it should be 0 in the model.
if p.Tracks.Total != 0 {
t.Errorf("Tracks.Total should be 0, got %d", p.Tracks.Total)
}
}
func TestFollowPlaylistSetsContentType(t *testing.T) {
client, server := testClientString(http.StatusOK, "", func(req *http.Request) {
if req.Header.Get("Content-Type") != "application/json" {
t.Error("Follow playlist request didn't contain Content-Type: application/json")
}
})
defer server.Close()
err := client.FollowPlaylist(context.Background(), "playlistID", true)
if err != nil {
t.Error(err)
}
}
func TestGetPlaylistTracks(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/playlist_tracks.txt")
defer server.Close()
tracks, err := client.GetPlaylistTracks(context.Background(), "5lH9NjOeJvctAO92ZrKQNB")
if err != nil {
t.Error(err)
}
if tracks.Total != 40 {
t.Errorf("Got %d tracks, expected 40\n", tracks.Total)
}
if len(tracks.Tracks) == 0 {
t.Fatal("No tracks returned")
}
expected := "Calm Down"
actual := tracks.Tracks[0].Track.Name
if expected != actual {
t.Errorf("Got '%s', expected '%s'\n", actual, expected)
}
added := tracks.Tracks[0].AddedAt
tm, err := time.Parse(TimestampLayout, added)
if err != nil {
t.Error(err)
}
if f := tm.Format(DateLayout); f != "2022-07-15" {
t.Errorf("Expected added at 2022-07-15, got %s\n", f)
}
}
func TestGetPlaylistItemsEpisodes(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/playlist_items_episodes.json")
defer server.Close()
tracks, err := client.GetPlaylistItems(context.Background(), "playlistID")
if err != nil {
t.Error(err)
}
if tracks.Total != 4 {
t.Errorf("Got %d tracks, expected 47\n", tracks.Total)
}
if len(tracks.Items) == 0 {
t.Fatal("No tracks returned")
}
expected := "112: Dirty Coms"
actual := tracks.Items[0].Track.Episode.Name
if expected != actual {
t.Errorf("Got '%s', expected '%s'\n", actual, expected)
}
added := tracks.Items[0].AddedAt
tm, err := time.Parse(TimestampLayout, added)
if err != nil {
t.Error(err)
}
if f := tm.Format(DateLayout); f != "2022-05-20" {
t.Errorf("Expected added at 2014-11-25, got %s\n", f)
}
}
func TestGetPlaylistItemsTracks(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/playlist_items_tracks.json")
defer server.Close()
tracks, err := client.GetPlaylistItems(context.Background(), "playlistID")
if err != nil {
t.Error(err)
}
if tracks.Total != 2 {
t.Errorf("Got %d tracks, expected 47\n", tracks.Total)
}
if len(tracks.Items) == 0 {
t.Fatal("No tracks returned")
}
expected := "Typhoons"
actual := tracks.Items[0].Track.Track.Name
if expected != actual {
t.Errorf("Got '%s', expected '%s'\n", actual, expected)
}
added := tracks.Items[0].AddedAt
tm, err := time.Parse(TimestampLayout, added)
if err != nil {
t.Error(err)
}
if f := tm.Format(DateLayout); f != "2022-05-20" {
t.Errorf("Expected added at 2014-11-25, got %s\n", f)
}
}
func TestGetPlaylistItemsTracksAndEpisodes(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/playlist_items_episodes_and_tracks.json")
defer server.Close()
tracks, err := client.GetPlaylistItems(context.Background(), "playlistID")
if err != nil {
t.Error(err)
}
if tracks.Total != 4 {
t.Errorf("Got %d tracks, expected 47\n", tracks.Total)
}
if len(tracks.Items) == 0 {
t.Fatal("No tracks returned")
}
expected := "491- The Missing Middle"
actual := tracks.Items[0].Track.Episode.Name
if expected != actual {
t.Errorf("Got '%s', expected '%s'\n", actual, expected)
}
added := tracks.Items[0].AddedAt
tm, err := time.Parse(TimestampLayout, added)
if err != nil {
t.Error(err)
}
if f := tm.Format(DateLayout); f != "2022-05-20" {
t.Errorf("Expected added at 2014-11-25, got %s\n", f)
}
expected = "Typhoons"
actual = tracks.Items[2].Track.Track.Name
if expected != actual {
t.Errorf("Got '%s', expected '%s'\n", actual, expected)
}
added = tracks.Items[0].AddedAt
tm, err = time.Parse(TimestampLayout, added)
if err != nil {
t.Error(err)
}
if f := tm.Format(DateLayout); f != "2022-05-20" {
t.Errorf("Expected added at 2014-11-25, got %s\n", f)
}
}
func TestGetPlaylistItemsOverride(t *testing.T) {
var types string
client, server := testClientString(http.StatusForbidden, "", func(r *http.Request) {
types = r.URL.Query().Get("additional_types")
})
defer server.Close()
_, _ = client.GetPlaylistItems(context.Background(), "playlistID", AdditionalTypes(EpisodeAdditionalType))
if types != "episode" {
t.Errorf("Expected additional type episode, got %s\n", types)
}
}
func TestGetPlaylistItemsDefault(t *testing.T) {
var types string
client, server := testClientString(http.StatusForbidden, "", func(r *http.Request) {
types = r.URL.Query().Get("additional_types")
})
defer server.Close()
_, _ = client.GetPlaylistItems(context.Background(), "playlistID")
if types != "episode,track" {
t.Errorf("Expected additional type episode, got %s\n", types)
}
}
func TestUserFollowsPlaylist(t *testing.T) {
client, server := testClientString(http.StatusOK, `[ true, false ]`)
defer server.Close()
follows, err := client.UserFollowsPlaylist(context.Background(), ID("2v3iNvBS8Ay1Gt2uXtUKUT"), "possan", "elogain")
if err != nil {
t.Error(err)
}
if len(follows) != 2 || !follows[0] || follows[1] {
t.Errorf("Expected '[true, false]', got %#v\n", follows)
}
}
// NOTE collaborative is a fmt boolean.
var newPlaylist = `
{
"collaborative": %t,
"description": "Test Description",
"external_urls": {
"spotify": "api.http://open.spotify.com/user/thelinmichael/playlist/7d2D2S200NyUE5KYs80PwO"
},
"followers": {
"href": null,
"total": 0
},
"href": "https://api.spotify.com/v1/users/thelinmichael/playlists/7d2D2S200NyUE5KYs80PwO",
"id": "7d2D2S200NyUE5KYs80PwO",
"images": [ ],
"name": "A New Playlist",
"owner": {
"external_urls": {
"spotify": "api.http://open.spotify.com/user/thelinmichael"
},
"href": "https://api.spotify.com/v1/users/thelinmichael",
"id": "thelinmichael",
"type": "user",
"url": "spotify:user:thelinmichael"
},
"public": false,
"snapshot_id": "s0o3TSuYnRLl2jch+oA4OEbKwq/fNxhGBkSPnvhZdmWjNV0q3uCAWuGIhEx8SHIx",
"tracks": {
"href": "https://api.spotify.com/v1/users/thelinmichael/playlists/7d2D2S200NyUE5KYs80PwO/tracks",
"items": [ ],
"limit": 100,
"next": null,
"offset": 0,
"previous": null,
"total": 0
},
"type": "playlist",
"url": "spotify:user:thelinmichael:playlist:7d2D2S200NyUE5KYs80PwO"
}`
func TestCreatePlaylist(t *testing.T) {
client, server := testClientString(http.StatusCreated, fmt.Sprintf(newPlaylist, false))
defer server.Close()
p, err := client.CreatePlaylistForUser(context.Background(), "thelinmichael", "A New Playlist", "Test Description", false, false)
if err != nil {
t.Error(err)
}
if p.IsPublic {
t.Error("Expected private playlist, got public")
}
if p.Name != "A New Playlist" {
t.Errorf("Expected 'A New Playlist', got '%s'\n", p.Name)
}
if p.Description != "Test Description" {
t.Errorf("Expected 'Test Description', got '%s'\n", p.Description)
}
if p.Tracks.Total != 0 {
t.Error("Expected new playlist to be empty")
}
if p.Collaborative {
t.Error("Expected non-collaborative playlist, got collaborative")
}
}
func TestCreateCollaborativePlaylist(t *testing.T) {
client, server := testClientString(http.StatusCreated, fmt.Sprintf(newPlaylist, true))
defer server.Close()
p, err := client.CreatePlaylistForUser(context.Background(), "thelinmichael", "A New Playlist", "Test Description", false, true)
if err != nil {
t.Error(err)
}
if p.IsPublic {
t.Error("Expected private playlist, got public")
}
if p.Name != "A New Playlist" {
t.Errorf("Expected 'A New Playlist', got '%s'\n", p.Name)
}
if p.Description != "Test Description" {
t.Errorf("Expected 'Test Description', got '%s'\n", p.Description)
}
if p.Tracks.Total != 0 {
t.Error("Expected new playlist to be empty")
}
if !p.Collaborative {
t.Error("Expected collaborative playlist, got non-collaborative")
}
}
func TestRenamePlaylist(t *testing.T) {
client, server := testClientString(http.StatusOK, "")
defer server.Close()
if err := client.ChangePlaylistName(context.Background(), ID("playlist-id"), "new name"); err != nil {
t.Error(err)
}
}
func TestChangePlaylistAccess(t *testing.T) {
client, server := testClientString(http.StatusOK, "")
defer server.Close()
if err := client.ChangePlaylistAccess(context.Background(), ID("playlist-id"), true); err != nil {
t.Error(err)
}
}
func TestChangePlaylistDescription(t *testing.T) {
client, server := testClientString(http.StatusOK, "")
defer server.Close()
if err := client.ChangePlaylistDescription(context.Background(), ID("playlist-id"), "new description"); err != nil {
t.Error(err)
}
}
func TestChangePlaylistNameAndAccess(t *testing.T) {
client, server := testClientString(http.StatusOK, "")
defer server.Close()
if err := client.ChangePlaylistNameAndAccess(context.Background(), ID("playlist-id"), "new_name", true); err != nil {
t.Error(err)
}
}
func TestChangePlaylistNameAccessAndDescription(t *testing.T) {
client, server := testClientString(http.StatusOK, "")
defer server.Close()
if err := client.ChangePlaylistNameAccessAndDescription(context.Background(), ID("playlist-id"), "new_name", "new description", true); err != nil {
t.Error(err)
}
}
func TestChangePlaylistNameFailure(t *testing.T) {
client, server := testClientString(http.StatusForbidden, "")
defer server.Close()
if err := client.ChangePlaylistName(context.Background(), ID("playlist-id"), "new_name"); err == nil {
t.Error("Expected error but didn't get one")
}
}
func TestAddTracksToPlaylist(t *testing.T) {
client, server := testClientString(http.StatusCreated, `{ "snapshot_id" : "JbtmHBDBAYu3/bt8BOXKjzKx3i0b6LCa/wVjyl6qQ2Yf6nFXkbmzuEa+ZI/U1yF+" }`)
defer server.Close()
snapshot, err := client.AddTracksToPlaylist(context.Background(), ID("playlist_id"), ID("track1"), ID("track2"))
if err != nil {
t.Error(err)
}
if snapshot != "JbtmHBDBAYu3/bt8BOXKjzKx3i0b6LCa/wVjyl6qQ2Yf6nFXkbmzuEa+ZI/U1yF+" {
t.Error("Didn't get expected snapshot ID")
}
}
func TestRemoveTracksFromPlaylist(t *testing.T) {
client, server := testClientString(http.StatusOK, `{ "snapshot_id" : "JbtmHBDBAYu3/bt8BOXKjzKx3i0b6LCa/wVjyl6qQ2Yf6nFXkbmzuEa+ZI/U1yF+" }`, func(req *http.Request) {
requestBody, err := ioutil.ReadAll(req.Body)
if err != nil {
t.Fatal("Could not read request body:", err)
}
var body map[string]interface{}
err = json.Unmarshal(requestBody, &body)
if err != nil {
t.Fatal("Error decoding request body:", err)
}
tracksArray, ok := body["tracks"]
if !ok {
t.Error("No tracks JSON object in request body")
}
tracksSlice := tracksArray.([]interface{})
if l := len(tracksSlice); l != 2 {
t.Fatalf("Expected 2 tracks, got %d\n", l)
}
track0 := tracksSlice[0].(map[string]interface{})
trackURI, ok := track0["uri"]
if !ok {
t.Error("Track object doesn't contain 'uri' field")
}
if trackURI != "spotify:track:track1" {
t.Errorf("Expected URI: 'spotify:track:track1', got '%s'\n", trackURI)
}
})
defer server.Close()
snapshotID, err := client.RemoveTracksFromPlaylist(context.Background(), "playlistID", "track1", "track2")
if err != nil {
t.Error(err)
}
if snapshotID != "JbtmHBDBAYu3/bt8BOXKjzKx3i0b6LCa/wVjyl6qQ2Yf6nFXkbmzuEa+ZI/U1yF+" {
t.Error("Incorrect snapshot ID")
}
}
func TestRemoveTracksFromPlaylistOpt(t *testing.T) {
client, server := testClientString(http.StatusOK, `{ "snapshot_id" : "JbtmHBDBAYu3/bt8BOXKjzKx3i0b6LCa/wVjyl6qQ2Yf6nFXkbmzuEa+ZI/U1yF+" }`, func(req *http.Request) {
requestBody, err := ioutil.ReadAll(req.Body)
if err != nil {
t.Fatal(err)
}
var body map[string]interface{}
err = json.Unmarshal(requestBody, &body)
if err != nil {
t.Fatal(err)
}
if _, ok := body["snapshot_id"]; ok {
t.Error("JSON contains snapshot_id field when none was specified")
fmt.Println(string(requestBody))
return
}
jsonTracks := body["tracks"].([]interface{})
if len(jsonTracks) != 3 {
t.Fatal("Expected 3 tracks, got", len(jsonTracks))
}
track1 := jsonTracks[1].(map[string]interface{})
expected := "spotify:track:track1"
if track1["uri"] != expected {
t.Fatalf("Want '%s', got '%s'\n", expected, track1["uri"])
}
indices := track1["positions"].([]interface{})
if len(indices) != 1 || int(indices[0].(float64)) != 9 {
t.Error("Track indices incorrect")
}
})
defer server.Close()
tracks := []TrackToRemove{
NewTrackToRemove("track0", []int{0, 4}), // remove track0 in position 0 and 4
NewTrackToRemove("track1", []int{9}), // remove track1 in position 9...
NewTrackToRemove("track2", []int{8}),
}
// intentionally not passing a snapshot ID here
snapshotID, err := client.RemoveTracksFromPlaylistOpt(context.Background(), "playlistID", tracks, "")
if err != nil || snapshotID != "JbtmHBDBAYu3/bt8BOXKjzKx3i0b6LCa/wVjyl6qQ2Yf6nFXkbmzuEa+ZI/U1yF+" {
t.Fatal("Remove call failed. err=", err)
}
}
func TestClient_ReplacePlaylistItems(t *testing.T) {
type clientFields struct {
httpCode int
body string
}
type args struct {
ctx context.Context
playlistID ID
items []URI
}
type want struct {
requestBody string
snapshot string
err string
}
tests := []struct {
name string
clientFields clientFields
args args
want want
}{
{
name: "Happy path",
clientFields: clientFields{
httpCode: http.StatusCreated,
body: `{"snapshot_id": "test_snapshot"}`,
},
args: args{
ctx: context.TODO(),
playlistID: "playlistID",
items: []URI{"spotify:track:track1", "spotify:track:track2"},
},
want: want{
requestBody: `{"uris":["spotify:track:track1","spotify:track:track2"]}`,
snapshot: "test_snapshot",
},
}, {
name: "Forbidden",
clientFields: clientFields{
httpCode: http.StatusForbidden,
},
args: args{
ctx: context.TODO(),
playlistID: "playlistID",
items: []URI{"spotify:track:track1", "spotify:track:track2"},
},
want: want{
err: "spotify: HTTP 403: Forbidden (body empty)",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
var gotRequestBody string
c, server := testClientString(tt.clientFields.httpCode, tt.clientFields.body, func(request *http.Request) {
b, err := ioutil.ReadAll(request.Body)
defer request.Body.Close()
if err != nil {
t.Error(err)
}
gotRequestBody = string(b)
})
defer server.Close()
gotSnapshot, gotErr := c.ReplacePlaylistItems(tt.args.ctx, tt.args.playlistID, tt.args.items...)
if gotErr == nil && tt.want.err != "" {
t.Errorf("Expected an error %s, got nil", tt.want.err)
return
}
if gotErr != nil {
if gotErr.Error() != tt.want.err {
t.Errorf("Expected error %s, got %s", tt.want.err, gotErr)
}
return
}
if gotSnapshot != tt.want.snapshot {
t.Errorf("Expected snapshot %s, got %s", tt.want.snapshot, gotSnapshot)
}
if gotRequestBody != tt.want.requestBody {
t.Errorf("Expected requestBody %s, got %s", tt.want.requestBody, gotRequestBody)
}
})
}
}
func TestReplacePlaylistTracks(t *testing.T) {
client, server := testClientString(http.StatusCreated, "")
defer server.Close()
err := client.ReplacePlaylistTracks(context.Background(), "playlistID", "track1", "track2")
if err != nil {
t.Error(err)
}
}
func TestReplacePlaylistTracksForbidden(t *testing.T) {
client, server := testClientString(http.StatusForbidden, "")
defer server.Close()
err := client.ReplacePlaylistTracks(context.Background(), "playlistID", "track1", "track2")
if err == nil {
t.Error("Replace succeeded but shouldn't have")
}
}
func TestReorderPlaylistRequest(t *testing.T) {
client, server := testClientString(http.StatusNotFound, "", func(req *http.Request) {
if ct := req.Header.Get("Content-Type"); ct != "application/json" {
t.Errorf("Expected Content-Type: application/json, got '%s'\n", ct)
}
if req.Method != "PUT" {
t.Errorf("Expected a PUT, got a %s\n", req.Method)
}
// unmarshal the JSON into a map[string]interface{}
// so we can test for existence of certain keys
var body map[string]interface{}
err := json.NewDecoder(req.Body).Decode(&body)
if err != nil {
t.Errorf("Expected no error, got %v", err)
}
if start, ok := body["range_start"]; ok {
if start != float64(3) {
t.Errorf("Expected range_start to be 3, but it was %#v\n", start)
}
} else {
t.Errorf("Required field range_start is missing")
}
if ib, ok := body["insert_before"]; ok {
if ib != float64(8) {
t.Errorf("Expected insert_before to be 8, but it was %#v\n", ib)
}
} else {
t.Errorf("Required field insert_before is missing")
}
if _, ok := body["range_length"]; ok {
t.Error("Parameter range_length shouldn't have been in body")
}
if _, ok := body["snapshot_id"]; ok {
t.Error("Parameter snapshot_id shouldn't have been in body")
}
})
defer server.Close()
_, err := client.ReorderPlaylistTracks(context.Background(), "playlist", PlaylistReorderOptions{
RangeStart: 3,
InsertBefore: 8,
})
if err == nil || !strings.Contains(err.Error(), "HTTP 404: Not Found") {
t.Errorf("Expected error 'spotify: HTTP 404: Not Found (body empty)', got %v", err)
}
}
func TestSetPlaylistImage(t *testing.T) {
client, server := testClientString(http.StatusAccepted, "", func(req *http.Request) {
if ct := req.Header.Get("Content-Type"); ct != "image/jpeg" {
t.Errorf("wrong content type, got %s, want image/jpeg", ct)
}
if req.Method != "PUT" {
t.Errorf("expected a PUT, got a %s\n", req.Method)
}
body, err := ioutil.ReadAll(req.Body)
if err != nil {
t.Fatal(err)
}
if !bytes.Equal(body, []byte("Zm9v")) {
t.Errorf("invalid request body: want Zm9v, got %s", string(body))
}
})
defer server.Close()
err := client.SetPlaylistImage(context.Background(), "playlist", bytes.NewReader([]byte("foo")))
if err != nil {
t.Fatal(err)
}
}