mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
* command_help_test, cors_test: use testify * cors_test: remove extraneous lines * command_help_test: remove extraneous lines * command_help_test: set checks to nonterminal
34 lines
1.1 KiB
Go
34 lines
1.1 KiB
Go
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api4
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mattermost/mattermost-server/model"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestHelpCommand(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
Client := th.Client
|
|
channel := th.BasicChannel
|
|
|
|
HelpLink := *th.App.Config().SupportSettings.HelpLink
|
|
defer func() {
|
|
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.SupportSettings.HelpLink = HelpLink })
|
|
}()
|
|
|
|
th.App.UpdateConfig(func(cfg *model.Config) { *cfg.SupportSettings.HelpLink = "" })
|
|
rs1, _ := Client.ExecuteCommand(channel.Id, "/help ")
|
|
assert.Equal(t, rs1.GotoLocation, model.SUPPORT_SETTINGS_DEFAULT_HELP_LINK, "failed to default help link")
|
|
|
|
th.App.UpdateConfig(func(cfg *model.Config) {
|
|
*cfg.SupportSettings.HelpLink = "https://docs.mattermost.com/guides/user.html"
|
|
})
|
|
rs2, _ := Client.ExecuteCommand(channel.Id, "/help ")
|
|
assert.Equal(t, rs2.GotoLocation, "https://docs.mattermost.com/guides/user.html", "failed to help link")
|
|
}
|