focalboard/server/app/blocks_test.go

32 lines
874 B
Go
Raw Normal View History

package app
import (
"errors"
"testing"
"github.com/golang/mock/gomock"
2021-03-26 19:01:54 +01:00
st "github.com/mattermost/focalboard/server/services/store"
"github.com/stretchr/testify/require"
)
func TestGetParentID(t *testing.T) {
th := SetupTestHelper(t)
2021-03-26 19:01:54 +01:00
container := st.Container{
2021-03-30 23:04:00 +02:00
WorkspaceID: "0",
2021-03-26 19:01:54 +01:00
}
t.Run("success query", func(t *testing.T) {
th.Store.EXPECT().GetParentID(gomock.Eq(container), gomock.Eq("test-id")).Return("test-parent-id", nil)
result, err := th.App.GetParentID(container, "test-id")
require.NoError(t, err)
require.Equal(t, "test-parent-id", result)
})
t.Run("fail query", func(t *testing.T) {
th.Store.EXPECT().GetParentID(gomock.Eq(container), gomock.Eq("test-id")).Return("", errors.New("block-not-found"))
_, err := th.App.GetParentID(container, "test-id")
require.Error(t, err)
require.Equal(t, "block-not-found", err.Error())
})
}