Update exploration store interface to return exploration on add
parent
e45dbdc630
commit
16b79cebec
|
@ -41,7 +41,7 @@ func (s *ExplorationStore) Query(ctx context.Context, uid mrfusion.UserID) ([]*m
|
|||
}
|
||||
|
||||
// Create a new Exploration in the ExplorationStore.
|
||||
func (s *ExplorationStore) Add(ctx context.Context, e *mrfusion.Exploration) error {
|
||||
func (s *ExplorationStore) Add(ctx context.Context, e *mrfusion.Exploration) (*mrfusion.Exploration, error) {
|
||||
if err := s.client.db.Update(func(tx *bolt.Tx) error {
|
||||
b := tx.Bucket(ExplorationBucket)
|
||||
seq, err := b.NextSequence()
|
||||
|
@ -58,10 +58,10 @@ func (s *ExplorationStore) Add(ctx context.Context, e *mrfusion.Exploration) err
|
|||
}
|
||||
return nil
|
||||
}); err != nil {
|
||||
return err
|
||||
return nil, err
|
||||
}
|
||||
|
||||
return nil
|
||||
return e, nil
|
||||
}
|
||||
|
||||
// Delete the exploration from the ExplorationStore
|
||||
|
|
|
@ -74,7 +74,7 @@ func TestExplorationStore_CRUD(t *testing.T) {
|
|||
|
||||
// Add new explorations.
|
||||
for i := range explorations {
|
||||
if err := s.Add(nil, explorations[i]); err != nil {
|
||||
if _, err := s.Add(nil, explorations[i]); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
@ -156,7 +156,7 @@ func TestExplorationStore_Query(t *testing.T) {
|
|||
|
||||
// Add new explorations.
|
||||
for i := range explorations {
|
||||
if err := s.Add(nil, explorations[i]); err != nil {
|
||||
if _, err := s.Add(nil, explorations[i]); err != nil {
|
||||
t.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -44,11 +44,11 @@ func (m *ExplorationStore) Query(ctx context.Context, userID mrfusion.UserID) ([
|
|||
return res, nil
|
||||
}
|
||||
|
||||
func (m *ExplorationStore) Add(ctx context.Context, e *mrfusion.Exploration) error {
|
||||
func (m *ExplorationStore) Add(ctx context.Context, e *mrfusion.Exploration) (*mrfusion.Exploration, error) {
|
||||
e.CreatedAt = m.NowFunc()
|
||||
e.UpdatedAt = m.NowFunc()
|
||||
m.db[len(m.db)] = e
|
||||
return nil
|
||||
return e, nil
|
||||
}
|
||||
|
||||
func (m *ExplorationStore) Delete(ctx context.Context, e *mrfusion.Exploration) error {
|
||||
|
|
|
@ -79,7 +79,7 @@ type ExplorationStore interface {
|
|||
// Search the ExplorationStore for each Exploration owned by `UserID`.
|
||||
Query(ctx context.Context, userID UserID) ([]*Exploration, error)
|
||||
// Create a new Exploration in the ExplorationStore.
|
||||
Add(context.Context, *Exploration) error
|
||||
Add(context.Context, *Exploration) (*Exploration, error)
|
||||
// Delete the Exploration from the ExplorationStore.
|
||||
Delete(context.Context, *Exploration) error
|
||||
// Retrieve an Exploration if `ID` exists.
|
||||
|
|
Loading…
Reference in New Issue