2022-08-31 03:21:18 +00:00
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_Group_Create(t *testing.T) {
|
2022-10-07 02:54:09 +00:00
|
|
|
g, err := tRepos.Groups.GroupCreate(context.Background(), "test")
|
2022-08-31 03:21:18 +00:00
|
|
|
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "test", g.Name)
|
|
|
|
|
|
|
|
// Get by ID
|
2022-10-07 02:54:09 +00:00
|
|
|
foundGroup, err := tRepos.Groups.GroupByID(context.Background(), g.ID)
|
2022-08-31 03:21:18 +00:00
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, g.ID, foundGroup.ID)
|
|
|
|
}
|
2022-10-15 20:15:55 +00:00
|
|
|
|
|
|
|
func Test_Group_Update(t *testing.T) {
|
|
|
|
g, err := tRepos.Groups.GroupCreate(context.Background(), "test")
|
|
|
|
assert.NoError(t, err)
|
|
|
|
|
|
|
|
g, err = tRepos.Groups.GroupUpdate(context.Background(), g.ID, GroupUpdate{
|
|
|
|
Name: "test2",
|
|
|
|
Currency: "eur",
|
|
|
|
})
|
|
|
|
assert.NoError(t, err)
|
|
|
|
assert.Equal(t, "test2", g.Name)
|
|
|
|
assert.Equal(t, "eur", g.Currency)
|
|
|
|
}
|