Compare commits

..

No commits in common. "f7132c06fcc796297f2549ef05808f6392df27d2" and "d56b21a3d16055f166c144188a7776a37f1ea8c8" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View file

@ -72,9 +72,7 @@ func (env *Env) getArtistByName(c *gin.Context) {
}
// Lookup this name in the DB and return any ArtistProfile objects
// NOTE: This is case insensitive on sqlite
// NOTE: However unicode is treated case sensitive due to very difficult conversions for some languages/characters
// NOTE: In future better DBs with unicode support such as postgres should be used
// This is case insensitive on sqlite
var artistProfiles []ArtistProfile
dbResult := env.db.Where("name LIKE ?", fmt.Sprintf("%%%s%%", artistName)).Preload("Genres").Find(&artistProfiles)
if dbResult.Error != nil {

View file

@ -36,13 +36,13 @@ func TestGetArtistByIDRoute(t *testing.T) {
// Dynamic data is hard to test so here we validate JSON response
// And we check known fields which are not likely to change
// We then check that the DB was updated correctly just to be sure
var resp ArtistProfile
err := json.NewDecoder(w.Body).Decode(&resp)
var spotifyResp SpotifyResponse
err := json.NewDecoder(w.Body).Decode(&spotifyResp)
if err != nil {
assert.Fail(t, fmt.Sprintf("Could not validate and parse JSON response into SpotifyResponse struct: %s", err.Error()))
}
assert.Equal(t, "0TnOYISbd1XYRBk9myaseg", resp.SpotifyID)
assert.Equal(t, "Pitbull", resp.Name)
assert.Equal(t, "0TnOYISbd1XYRBk9myaseg", spotifyResp.ID)
assert.Equal(t, "Pitbull", spotifyResp.Name)
var artist ArtistProfile
dbResult := env.db.Take(&artist)