2020-10-21 11:32:13 +02:00
|
|
|
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"
|
2020-10-21 11:32:13 +02:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGetParentID(t *testing.T) {
|
2021-05-26 12:38:43 +02:00
|
|
|
th := SetupTestHelper(t)
|
2020-10-22 13:34:42 +02:00
|
|
|
|
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
|
|
|
}
|
2020-10-21 11:32:13 +02:00
|
|
|
t.Run("success query", func(t *testing.T) {
|
2021-05-26 12:38:43 +02:00
|
|
|
th.Store.EXPECT().GetParentID(gomock.Eq(container), gomock.Eq("test-id")).Return("test-parent-id", nil)
|
|
|
|
result, err := th.App.GetParentID(container, "test-id")
|
2020-10-21 11:32:13 +02:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, "test-parent-id", result)
|
|
|
|
})
|
2020-10-22 13:34:42 +02:00
|
|
|
|
2020-10-21 11:32:13 +02:00
|
|
|
t.Run("fail query", func(t *testing.T) {
|
2021-05-26 12:38:43 +02:00
|
|
|
th.Store.EXPECT().GetParentID(gomock.Eq(container), gomock.Eq("test-id")).Return("", errors.New("block-not-found"))
|
|
|
|
_, err := th.App.GetParentID(container, "test-id")
|
2020-10-21 11:32:13 +02:00
|
|
|
require.Error(t, err)
|
|
|
|
require.Equal(t, "block-not-found", err.Error())
|
|
|
|
})
|
|
|
|
}
|