mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 17:12:02 +03:00
28 lines
664 B
Go
28 lines
664 B
Go
|
package teststore
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/require"
|
||
|
"github.com/usememos/memos/store"
|
||
|
)
|
||
|
|
||
|
func TestUserSettingStore(t *testing.T) {
|
||
|
ctx := context.Background()
|
||
|
ts := NewTestingStore(ctx, t)
|
||
|
user, err := createTestingHostUser(ctx, ts)
|
||
|
require.NoError(t, err)
|
||
|
_, err = ts.UpsertUserSetting(ctx, &store.UserSetting{
|
||
|
UserID: user.ID,
|
||
|
Key: "test_key",
|
||
|
Value: "test_value",
|
||
|
})
|
||
|
require.NoError(t, err)
|
||
|
list, err := ts.ListUserSettings(ctx, &store.FindUserSetting{})
|
||
|
require.NoError(t, err)
|
||
|
require.Equal(t, 1, len(list))
|
||
|
require.Equal(t, "test_key", list[0].Key)
|
||
|
require.Equal(t, "test_value", list[0].Value)
|
||
|
}
|