mirror of
https://github.com/usememos/memos.git
synced 2024-11-14 10:44:50 +08:00
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package teststore
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
storepb "github.com/usememos/memos/proto/gen/store"
|
|
"github.com/usememos/memos/store"
|
|
)
|
|
|
|
func TestReactionStore(t *testing.T) {
|
|
ctx := context.Background()
|
|
ts := NewTestingStore(ctx, t)
|
|
|
|
user, err := createTestingHostUser(ctx, ts)
|
|
require.NoError(t, err)
|
|
|
|
contentID := "test_content_id"
|
|
reaction, err := ts.UpsertReaction(ctx, &store.Reaction{
|
|
CreatorID: user.ID,
|
|
ContentID: contentID,
|
|
ReactionType: storepb.ReactionType_HEART,
|
|
})
|
|
require.NoError(t, err)
|
|
require.NotNil(t, reaction)
|
|
require.NotEmpty(t, reaction.ID)
|
|
|
|
reactions, err := ts.ListReactions(ctx, &store.FindReaction{
|
|
ContentID: &contentID,
|
|
})
|
|
require.NoError(t, err)
|
|
require.Len(t, reactions, 1)
|
|
require.Equal(t, reaction, reactions[0])
|
|
|
|
err = ts.DeleteReaction(ctx, &store.DeleteReaction{
|
|
ID: reaction.ID,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
reactions, err = ts.ListReactions(ctx, &store.FindReaction{
|
|
ContentID: &contentID,
|
|
})
|
|
require.NoError(t, err)
|
|
require.Len(t, reactions, 0)
|
|
|
|
ts.Close()
|
|
}
|