mirror of
https://github.com/mattermost/mattermost.git
synced 2026-08-26 21:27:40 -05:00
44 lines
1.2 KiB
Go
44 lines
1.2 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestPostCardTypeCheckWithApp(t *testing.T) {
|
|
mainHelper.Parallel(t)
|
|
|
|
t.Run("returns error for card post when IntegratedBoards is disabled", func(t *testing.T) {
|
|
th := SetupConfig(t, func(cfg *model.Config) {
|
|
cfg.FeatureFlags.IntegratedBoards = false
|
|
})
|
|
|
|
appErr := PostCardTypeCheckWithApp("test", th.App, model.PostTypeCard)
|
|
assert.NotNil(t, appErr)
|
|
assert.Equal(t, "api.post.create_post.card_type_disabled.app_error", appErr.Id)
|
|
})
|
|
|
|
t.Run("returns nil for card post when IntegratedBoards is enabled", func(t *testing.T) {
|
|
th := SetupConfig(t, func(cfg *model.Config) {
|
|
cfg.FeatureFlags.IntegratedBoards = true
|
|
})
|
|
|
|
appErr := PostCardTypeCheckWithApp("test", th.App, model.PostTypeCard)
|
|
assert.Nil(t, appErr)
|
|
})
|
|
|
|
t.Run("returns nil for non-card post when IntegratedBoards is disabled", func(t *testing.T) {
|
|
th := SetupConfig(t, func(cfg *model.Config) {
|
|
cfg.FeatureFlags.IntegratedBoards = false
|
|
})
|
|
|
|
appErr := PostCardTypeCheckWithApp("test", th.App, "")
|
|
assert.Nil(t, appErr)
|
|
})
|
|
}
|