mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
* add internet radio support * Add dynamic sidebar icon to Radios * Fix typos * Make URL suffix consistent * Fix typo * address feedback * Don't need to preload when playing Internet Radios * Reorder migration, or else it won't be applied * Make Radio list view responsive Also added filter by name, removed RadioActions and RadioContextMenu, and added a default radio icon, in case of favicon is not available. * Simplify StreamField usage * fix button, hide progress on mobile * use js styles over index.css Co-authored-by: Deluan <deluan@navidrome.org>
85 lines
1.5 KiB
Go
85 lines
1.5 KiB
Go
package tests
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
type MockedRadioRepo struct {
|
|
model.RadioRepository
|
|
data map[string]*model.Radio
|
|
all model.Radios
|
|
err bool
|
|
Options model.QueryOptions
|
|
}
|
|
|
|
func CreateMockedRadioRepo() *MockedRadioRepo {
|
|
return &MockedRadioRepo{}
|
|
}
|
|
|
|
func (m *MockedRadioRepo) SetError(err bool) {
|
|
m.err = err
|
|
}
|
|
|
|
func (m *MockedRadioRepo) CountAll(options ...model.QueryOptions) (int64, error) {
|
|
if m.err {
|
|
return 0, errors.New("error")
|
|
}
|
|
return int64(len(m.data)), nil
|
|
}
|
|
|
|
func (m *MockedRadioRepo) Delete(id string) error {
|
|
if m.err {
|
|
return errors.New("Error!")
|
|
}
|
|
|
|
_, found := m.data[id]
|
|
|
|
if !found {
|
|
return errors.New("not found")
|
|
}
|
|
|
|
delete(m.data, id)
|
|
return nil
|
|
}
|
|
|
|
func (m *MockedRadioRepo) Exists(id string) (bool, error) {
|
|
if m.err {
|
|
return false, errors.New("Error!")
|
|
}
|
|
_, found := m.data[id]
|
|
return found, nil
|
|
}
|
|
|
|
func (m *MockedRadioRepo) Get(id string) (*model.Radio, 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 *MockedRadioRepo) GetAll(qo ...model.QueryOptions) (model.Radios, error) {
|
|
if len(qo) > 0 {
|
|
m.Options = qo[0]
|
|
}
|
|
if m.err {
|
|
return nil, errors.New("Error!")
|
|
}
|
|
return m.all, nil
|
|
}
|
|
|
|
func (m *MockedRadioRepo) Put(radio *model.Radio) error {
|
|
if m.err {
|
|
return errors.New("error")
|
|
}
|
|
if radio.ID == "" {
|
|
radio.ID = uuid.NewString()
|
|
}
|
|
m.data[radio.ID] = radio
|
|
return nil
|
|
}
|