mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 04:27:37 +03:00
* Start migration to dbx package * Fix annotations and bookmarks bindings * Fix tests * Fix more tests * Remove remaining references to beego/orm * Add PostScanner/PostMapper interfaces * Fix importing SmartPlaylists * Renaming * More renaming * Fix artist DB mapping * Fix playlist updates * Remove bookmarks at the end of the test * Remove remaining `orm` struct tags * Fix user timestamps DB access * Fix smart playlist evaluated_at DB access * Fix search3
104 lines
2 KiB
Go
104 lines
2 KiB
Go
package tests
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/navidrome/navidrome/utils/slice"
|
|
"golang.org/x/exp/maps"
|
|
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
func CreateMockMediaFileRepo() *MockMediaFileRepo {
|
|
return &MockMediaFileRepo{
|
|
data: make(map[string]*model.MediaFile),
|
|
}
|
|
}
|
|
|
|
type MockMediaFileRepo struct {
|
|
model.MediaFileRepository
|
|
data map[string]*model.MediaFile
|
|
err bool
|
|
}
|
|
|
|
func (m *MockMediaFileRepo) SetError(err bool) {
|
|
m.err = err
|
|
}
|
|
|
|
func (m *MockMediaFileRepo) SetData(mfs model.MediaFiles) {
|
|
m.data = make(map[string]*model.MediaFile)
|
|
for i, mf := range mfs {
|
|
m.data[mf.ID] = &mfs[i]
|
|
}
|
|
}
|
|
|
|
func (m *MockMediaFileRepo) Exists(id string) (bool, error) {
|
|
if m.err {
|
|
return false, errors.New("error")
|
|
}
|
|
_, found := m.data[id]
|
|
return found, nil
|
|
}
|
|
|
|
func (m *MockMediaFileRepo) Get(id string) (*model.MediaFile, error) {
|
|
if m.err {
|
|
return nil, errors.New("error")
|
|
}
|
|
if d, ok := m.data[id]; ok {
|
|
return d, nil
|
|
}
|
|
return nil, model.ErrNotFound
|
|
}
|
|
|
|
func (m *MockMediaFileRepo) GetAll(...model.QueryOptions) (model.MediaFiles, error) {
|
|
if m.err {
|
|
return nil, errors.New("error")
|
|
}
|
|
values := maps.Values(m.data)
|
|
return slice.Map(values, func(p *model.MediaFile) model.MediaFile {
|
|
return *p
|
|
}), nil
|
|
}
|
|
|
|
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) IncPlayCount(id string, timestamp time.Time) error {
|
|
if m.err {
|
|
return errors.New("error")
|
|
}
|
|
if d, ok := m.data[id]; ok {
|
|
d.PlayCount++
|
|
d.PlayDate = ×tamp
|
|
return nil
|
|
}
|
|
return model.ErrNotFound
|
|
}
|
|
|
|
func (m *MockMediaFileRepo) FindByAlbum(artistId string) (model.MediaFiles, error) {
|
|
if m.err {
|
|
return nil, errors.New("error")
|
|
}
|
|
var res = make(model.MediaFiles, len(m.data))
|
|
i := 0
|
|
for _, a := range m.data {
|
|
if a.AlbumID == artistId {
|
|
res[i] = *a
|
|
i++
|
|
}
|
|
}
|
|
|
|
return res, nil
|
|
}
|
|
|
|
var _ model.MediaFileRepository = (*MockMediaFileRepo)(nil)
|