Send NowPlaying and Scrobbles to Last.fm

This commit is contained in:
Deluan 2021-06-22 14:00:44 -04:00 committed by Deluan Quintão
parent d5461d0ae9
commit a7509c9ff7
15 changed files with 503 additions and 78 deletions

View file

@ -3,11 +3,15 @@ package tests
import (
"errors"
"github.com/google/uuid"
"github.com/navidrome/navidrome/model"
)
func CreateMockMediaFileRepo() *MockMediaFileRepo {
return &MockMediaFileRepo{}
return &MockMediaFileRepo{
data: make(map[string]model.MediaFile),
}
}
type MockMediaFileRepo struct {
@ -45,6 +49,17 @@ func (m *MockMediaFileRepo) Get(id string) (*model.MediaFile, error) {
return nil, model.ErrNotFound
}
func (m *MockMediaFileRepo) Put(mf *model.MediaFile) error {
if m.err {
return errors.New("error!")
}
if mf.ID == "" {
mf.ID = uuid.NewString()
}
m.data[mf.ID] = *mf
return nil
}
func (m *MockMediaFileRepo) FindByAlbum(artistId string) (model.MediaFiles, error) {
if m.err {
return nil, errors.New("Error!")