-
Notifications
You must be signed in to change notification settings - Fork 293
/
artist_test.go
187 lines (172 loc) · 5.89 KB
/
artist_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
// Copyright 2014, 2015 Zac Bergquist
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package spotify
import (
"context"
"net/http"
"testing"
)
const albumsResponse = `
{
"href" : "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6/albums?offset=0&limit=2&album_type=single",
"items" : [ {
"album_type" : "single",
"available_markets" : [ "AD", "AR", "AT", "AU", "BE", "BG", "BO", "BR", "CH", "CL", "CO", "CR", "CY", "CZ", "DE", "DK", "DO", "EC", "EE", "ES", "FI", "FR", "GR", "GT", "HK", "HN", "HU", "IE", "IS", "IT", "LI", "LT", "LU", "LV", "MC", "MT", "MY", "NI", "NL", "NO", "NZ", "PA", "PE", "PH", "PL", "PT", "PY", "RO", "SE", "SG", "SI", "SK", "SV", "TR", "TW", "UY" ],
"external_urls" : {
"spotify" : "https://open.spotify.com/album/3ckwyt0bTOcDbXovWbweMp"
},
"href" : "https://api.spotify.com/v1/albums/3ckwyt0bTOcDbXovWbweMp",
"id" : "3ckwyt0bTOcDbXovWbweMp",
"images" : [ {
"height" : 640,
"url" : "https://i.scdn.co/image/144ac57ad073741e99b5243c59abebe1500ada0a",
"width" : 640
}, {
"height" : 300,
"url" : "https://i.scdn.co/image/4680e5f3af02219fd9e79ce432c1b18f97af6426",
"width" : 300
}, {
"height" : 64,
"url" : "https://i.scdn.co/image/8c803d6cb612b6f2b37a7276deb2ff05f5a77097",
"width" : 64
} ],
"name" : "The Days / Nights",
"type" : "album",
"uri" : "spotify:album:3ckwyt0bTOcDbXovWbweMp"
}, {
"album_type" : "single",
"available_markets" : [ "CA", "MX", "US" ],
"external_urls" : {
"spotify" : "https://open.spotify.com/album/1WXM7DYQRT7QX8AKBJRfK9"
},
"href" : "https://api.spotify.com/v1/albums/1WXM7DYQRT7QX8AKBJRfK9",
"id" : "1WXM7DYQRT7QX8AKBJRfK9",
"images" : [ {
"height" : 640.0,
"url" : "https://i.scdn.co/image/590dbe5504d2898c120b942bee2b699404783896",
"width" : 640.0
}, {
"height" : 300.0,
"url" : "https://i.scdn.co/image/9a4db24b1930e8683b4dfd19c7bd2a40672c6718",
"width" : 300.0
}, {
"height" : 64.0,
"url" : "https://i.scdn.co/image/d5cfc167e03ed328ae7dfa9b56d3628d81b6831b",
"width" : 64.0
} ],
"name" : "The Days / Nights",
"type" : "album",
"uri" : "spotify:album:1WXM7DYQRT7QX8AKBJRfK9"
} ],
"limit" : 2,
"next" : "https://api.spotify.com/v1/artists/1vCWHaC5f2uS3yhpwWbIA6/albums?offset=2&limit=2&album_type=single",
"offset" : 0,
"previous" : null,
"total" : 157
}`
func TestFindArtist(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/find_artist.txt")
defer server.Close()
artist, err := client.GetArtist(context.Background(), ID("0TnOYISbd1XYRBk9myaseg"))
if err != nil {
t.Fatal(err)
}
if followers := artist.Followers.Count; followers != 2265279 {
t.Errorf("Got %d followers, want 2265279\n", followers)
}
if artist.Name != "Pitbull" {
t.Error("Got ", artist.Name, ", wanted Pitbull")
}
}
func TestArtistTopTracks(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/artist_top_tracks.txt")
defer server.Close()
tracks, err := client.GetArtistsTopTracks(context.Background(), ID("43ZHCT0cAZBISjO8DG9PnE"), "SE")
if err != nil {
t.Fatal(err)
}
if l := len(tracks); l != 10 {
t.Fatalf("Got %d tracks, expected 10\n", l)
}
track := tracks[9]
if track.Name != "(You're The) Devil in Disguise" {
t.Error("Incorrect track name")
}
if track.TrackNumber != 24 {
t.Errorf("Track number was %d, expected 24\n", track.TrackNumber)
}
}
func TestRelatedArtists(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/related_artists.txt")
defer server.Close()
artists, err := client.GetRelatedArtists(context.Background(), ID("43ZHCT0cAZBISjO8DG9PnE"))
if err != nil {
t.Fatal(err)
}
if count := len(artists); count != 20 {
t.Fatalf("Got %d artists, wanted 20\n", count)
}
a2 := artists[2]
if a2.Name != "Carl Perkins" {
t.Error("Expected Carl Perkins, got ", a2.Name)
}
if a2.Popularity != 54 {
t.Errorf("Expected popularity 54, got %d\n", a2.Popularity)
}
}
func TestRelatedArtistsWithFloats(t *testing.T) {
client, server := testClientFile(http.StatusOK, "test_data/related_artists_with_floats.txt")
defer server.Close()
artists, err := client.GetRelatedArtists(context.Background(), ID("43ZHCT0cAZBISjO8DG9PnE"))
if err != nil {
t.Fatal(err)
}
if count := len(artists); count != 20 {
t.Fatalf("Got %d artists, wanted 20\n", count)
}
a2 := artists[2]
if a2.Name != "Carl Perkins" {
t.Error("Expected Carl Perkins, got ", a2.Name)
}
if a2.Popularity != 54 {
t.Errorf("Expected popularity 54, got %d\n", a2.Popularity)
}
}
func TestArtistAlbumsFiltered(t *testing.T) {
client, server := testClientString(http.StatusOK, albumsResponse)
defer server.Close()
albums, err := client.GetArtistAlbums(context.Background(), "1vCWHaC5f2uS3yhpwWbIA6", []AlbumType{AlbumTypeSingle}, Limit(2))
if err != nil {
t.Fatal(err)
}
if albums == nil {
t.Fatal("Result is nil")
}
// since we didn't specify a country, we got duplicate albums
// (the album has a different ID in different regions)
if l := len(albums.Albums); l != 2 {
t.Fatalf("Expected 2 albums, got %d\n", l)
}
if albums.Albums[0].Name != "The Days / Nights" {
t.Error("Expected 'The Days / Nights', got ", albums.Albums[0].Name)
}
url := "https://open.spotify.com/album/3ckwyt0bTOcDbXovWbweMp"
spotifyURL, ok := albums.Albums[0].ExternalURLs["spotify"]
if !ok {
t.Error("Missing Spotify external URL")
}
if spotifyURL != url {
t.Errorf("Wrong Spotify external URL: want %s, got %s\n", url, spotifyURL)
}
}