mirror of
https://git.sr.ht/~phw/scotty
synced 2025-04-16 10:09:28 +02:00
Tests and fixed for LB additional data conversion
This commit is contained in:
parent
0ee53aaa4c
commit
94be108e8b
2 changed files with 239 additions and 16 deletions
|
@ -22,7 +22,10 @@ THE SOFTWARE.
|
||||||
package listenbrainz
|
package listenbrainz
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"strconv"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"golang.org/x/exp/constraints"
|
||||||
)
|
)
|
||||||
|
|
||||||
type GetListensResult struct {
|
type GetListensResult struct {
|
||||||
|
@ -52,44 +55,105 @@ type Track struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t Track) Duration() time.Duration {
|
func (t Track) Duration() time.Duration {
|
||||||
var duration time.Duration
|
info := t.AdditionalInfo
|
||||||
milliseconds, ok := t.AdditionalInfo["duration_ms"].(float64)
|
millisecondsF, ok := tryGetFloat[float64](info, "duration_ms")
|
||||||
if ok {
|
if ok {
|
||||||
duration = time.Duration(int64(milliseconds) * int64(time.Millisecond))
|
return time.Duration(int64(millisecondsF * float64(time.Millisecond)))
|
||||||
} else {
|
|
||||||
seconds, ok := t.AdditionalInfo["duration_ms"].(float64)
|
|
||||||
if ok {
|
|
||||||
duration = time.Duration(int64(seconds) * int64(time.Second))
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return duration
|
|
||||||
|
millisecondsI, ok := tryGetInteger[int64](info, "duration_ms")
|
||||||
|
if ok {
|
||||||
|
return time.Duration(millisecondsI * int64(time.Millisecond))
|
||||||
|
}
|
||||||
|
|
||||||
|
secondsF, ok := tryGetFloat[float64](info, "duration")
|
||||||
|
if ok {
|
||||||
|
return time.Duration(int64(secondsF * float64(time.Second)))
|
||||||
|
}
|
||||||
|
|
||||||
|
secondsI, ok := tryGetInteger[int64](info, "duration")
|
||||||
|
if ok {
|
||||||
|
return time.Duration(secondsI * int64(time.Second))
|
||||||
|
}
|
||||||
|
|
||||||
|
return time.Duration(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t Track) TrackNumber() int {
|
func (t Track) TrackNumber() int {
|
||||||
return int(tryGetValue[float64](t, "tracknumber"))
|
value, ok := tryGetInteger[int](t.AdditionalInfo, "tracknumber")
|
||||||
|
if ok {
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t Track) Isrc() string {
|
func (t Track) Isrc() string {
|
||||||
return tryGetValue[string](t, "isrc")
|
return tryGetValueOrEmpty[string](t.AdditionalInfo, "isrc")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t Track) RecordingMbid() string {
|
func (t Track) RecordingMbid() string {
|
||||||
return tryGetValue[string](t, "recording_mbid")
|
return tryGetValueOrEmpty[string](t.AdditionalInfo, "recording_mbid")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t Track) ReleaseMbid() string {
|
func (t Track) ReleaseMbid() string {
|
||||||
return tryGetValue[string](t, "release_mbid")
|
return tryGetValueOrEmpty[string](t.AdditionalInfo, "release_mbid")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t Track) ReleaseGroupMbid() string {
|
func (t Track) ReleaseGroupMbid() string {
|
||||||
return tryGetValue[string](t, "release_group_mbid")
|
return tryGetValueOrEmpty[string](t.AdditionalInfo, "release_group_mbid")
|
||||||
}
|
}
|
||||||
|
|
||||||
func tryGetValue[T any](track Track, key string) T {
|
func tryGetValueOrEmpty[T any](dict map[string]any, key string) T {
|
||||||
var result T
|
var result T
|
||||||
value, ok := track.AdditionalInfo[key].(T)
|
value, ok := dict[key].(T)
|
||||||
if ok {
|
if ok {
|
||||||
result = value
|
result = value
|
||||||
}
|
}
|
||||||
return result
|
return result
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func tryGetFloat[T constraints.Float](dict map[string]any, key string) (T, bool) {
|
||||||
|
valueFloat64, ok := dict[key].(float64)
|
||||||
|
if ok {
|
||||||
|
return T(valueFloat64), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
valueFloat32, ok := dict[key].(float32)
|
||||||
|
if ok {
|
||||||
|
return T(valueFloat32), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
valueStr, ok := dict[key].(string)
|
||||||
|
if ok {
|
||||||
|
valueFloat64, err := strconv.ParseFloat(valueStr, 64)
|
||||||
|
if err == nil {
|
||||||
|
return T(valueFloat64), ok
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0, false
|
||||||
|
}
|
||||||
|
|
||||||
|
func tryGetInteger[T constraints.Integer](dict map[string]any, key string) (T, bool) {
|
||||||
|
valueInt64, ok := dict[key].(int64)
|
||||||
|
if ok {
|
||||||
|
return T(valueInt64), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
valueInt32, ok := dict[key].(int32)
|
||||||
|
if ok {
|
||||||
|
return T(valueInt32), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
valueInt, ok := dict[key].(int)
|
||||||
|
if ok {
|
||||||
|
return T(valueInt), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
valueFloat, ok := tryGetFloat[float64](dict, key)
|
||||||
|
if ok {
|
||||||
|
return T(valueFloat), ok
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0, false
|
||||||
|
}
|
||||||
|
|
159
backends/listenbrainz/models_test.go
Normal file
159
backends/listenbrainz/models_test.go
Normal file
|
@ -0,0 +1,159 @@
|
||||||
|
/*
|
||||||
|
Copyright © 2023 Philipp Wolfer <phw@uploadedlobster.com>
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
||||||
|
*/
|
||||||
|
package listenbrainz_test
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
"go.uploadedlobster.com/scotty/backends/listenbrainz"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestTrackDurationMillisecondsInt(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"duration_ms": 528235,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, time.Duration(528235*time.Millisecond), track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackDurationMillisecondsInt64(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"duration_ms": int64(528235),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, time.Duration(528235*time.Millisecond), track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackDurationMillisecondsFloat(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"duration_ms": 528235.0,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, time.Duration(528235*time.Millisecond), track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackDurationSecondsInt(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"duration": 528,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, time.Duration(528*time.Second), track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackDurationSecondsInt64(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"duration": int64(528),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, time.Duration(528*time.Second), track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackDurationSecondsFloat(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"duration": 528.235,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, time.Duration(528235*time.Millisecond), track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackDurationSecondsString(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"duration": "528.235",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, time.Duration(528235*time.Millisecond), track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackDurationEmpty(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{},
|
||||||
|
}
|
||||||
|
assert.Empty(t, track.Duration())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackTrackNumber(t *testing.T) {
|
||||||
|
expected := 7
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"tracknumber": expected,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, expected, track.TrackNumber())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackTrackNumberString(t *testing.T) {
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"tracknumber": "12",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, 12, track.TrackNumber())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackIsrc(t *testing.T) {
|
||||||
|
expected := "TCAEJ1934417"
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"isrc": expected,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, expected, track.Isrc())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackRecordingMbid(t *testing.T) {
|
||||||
|
expected := "e02cc1c3-93fd-4e24-8b77-325060de920b"
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"recording_mbid": expected,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, expected, track.RecordingMbid())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestTrackReleaseMbid(t *testing.T) {
|
||||||
|
expected := "e02cc1c3-93fd-4e24-8b77-325060de920b"
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"release_mbid": expected,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, expected, track.ReleaseMbid())
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestReleaseGroupMbid(t *testing.T) {
|
||||||
|
expected := "e02cc1c3-93fd-4e24-8b77-325060de920b"
|
||||||
|
track := listenbrainz.Track{
|
||||||
|
AdditionalInfo: map[string]any{
|
||||||
|
"release_group_mbid": expected,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
assert.Equal(t, expected, track.ReleaseGroupMbid())
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue