2023-06-29 22:55:03 +08:00
|
|
|
package teststore
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
2023-09-17 22:55:13 +08:00
|
|
|
|
2023-12-08 22:41:47 +08:00
|
|
|
storepb "github.com/usememos/memos/proto/gen/store"
|
2023-06-29 22:55:03 +08:00
|
|
|
"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)
|
2023-12-08 22:41:47 +08:00
|
|
|
_, err = ts.UpsertUserSettingV1(ctx, &storepb.UserSetting{
|
|
|
|
UserId: user.ID,
|
|
|
|
Key: storepb.UserSettingKey_USER_SETTING_LOCALE,
|
|
|
|
Value: &storepb.UserSetting_Locale{Locale: "en"},
|
2023-06-29 22:55:03 +08:00
|
|
|
})
|
|
|
|
require.NoError(t, err)
|
2023-12-08 22:41:47 +08:00
|
|
|
list, err := ts.ListUserSettingsV1(ctx, &store.FindUserSetting{})
|
2023-06-29 22:55:03 +08:00
|
|
|
require.NoError(t, err)
|
2023-12-08 22:41:47 +08:00
|
|
|
require.Equal(t, 1, len(list))
|
2023-06-29 22:55:03 +08:00
|
|
|
}
|