mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Fix tests and lint errors, plus a bit of refactor
This commit is contained in:
parent
72a12e344e
commit
94cc2b2ac5
14 changed files with 114 additions and 98 deletions
|
@ -20,8 +20,12 @@ func (m *MockShareRepo) Save(entity interface{}) (string, error) {
|
|||
if m.Error != nil {
|
||||
return "", m.Error
|
||||
}
|
||||
m.Entity = entity
|
||||
return "id", nil
|
||||
s := entity.(*model.Share)
|
||||
if s.ID == "" {
|
||||
s.ID = "id"
|
||||
}
|
||||
m.Entity = s
|
||||
return s.ID, nil
|
||||
}
|
||||
|
||||
func (m *MockShareRepo) Update(id string, entity interface{}, cols ...string) error {
|
||||
|
@ -33,3 +37,10 @@ func (m *MockShareRepo) Update(id string, entity interface{}, cols ...string) er
|
|||
m.Cols = cols
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *MockShareRepo) Exists(id string) (bool, error) {
|
||||
if m.Error != nil {
|
||||
return false, m.Error
|
||||
}
|
||||
return id == m.ID, nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue