mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
38 lines
615 B
Go
38 lines
615 B
Go
package tests
|
|
|
|
import (
|
|
"github.com/navidrome/navidrome/model"
|
|
)
|
|
|
|
type MockedGenreRepo struct {
|
|
Error error
|
|
data map[string]model.Genre
|
|
}
|
|
|
|
func (r *MockedGenreRepo) init() {
|
|
if r.data == nil {
|
|
r.data = make(map[string]model.Genre)
|
|
}
|
|
}
|
|
|
|
func (r *MockedGenreRepo) GetAll(...model.QueryOptions) (model.Genres, error) {
|
|
if r.Error != nil {
|
|
return nil, r.Error
|
|
}
|
|
r.init()
|
|
|
|
var all model.Genres
|
|
for _, g := range r.data {
|
|
all = append(all, g)
|
|
}
|
|
return all, nil
|
|
}
|
|
|
|
func (r *MockedGenreRepo) Put(g *model.Genre) error {
|
|
if r.Error != nil {
|
|
return r.Error
|
|
}
|
|
r.init()
|
|
r.data[g.ID] = *g
|
|
return nil
|
|
}
|