[MM-46663] Only enable marketplace command completion when config allows it (#20919)

Этот коммит содержится в:
Julien Tant
2022-09-06 08:43:34 -07:00
коммит произвёл GitHub
родитель 1f933263e7
Коммит d23c7ed2a3
2 изменённых файлов: 67 добавлений и 1 удалений

Просмотреть файл

@@ -26,9 +26,15 @@ func (h *MarketplaceProvider) GetTrigger() string {
}
func (h *MarketplaceProvider) GetCommand(a *app.App, T i18n.TranslateFunc) *model.Command {
enabled := false
pluginSettings := a.Config().PluginSettings
if *pluginSettings.Enable && *pluginSettings.EnableMarketplace {
enabled = true
}
return &model.Command{
Trigger: CmdMarketplace,
AutoComplete: true,
AutoComplete: enabled,
AutoCompleteDesc: T("api.command_marketplace.desc"),
DisplayName: T("api.command_marketplace.name"),
}

Просмотреть файл

@@ -0,0 +1,60 @@
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package slashcommands
import (
"testing"
"github.com/mattermost/mattermost-server/v6/model"
"github.com/stretchr/testify/require"
)
func TestMarketplaceProviderGetCommand(t *testing.T) {
th := setup(t).initBasic()
defer th.tearDown()
mp := MarketplaceProvider{}
testCases := []struct {
TestName string
PluginEnabled bool
MarketplaceEnabled bool
MustAutocomplete bool
}{
{
"All true",
true, true,
true,
},
{
"Plugin false",
false, true,
false,
},
{
"Marketplace false",
true, false,
false,
},
{
"All false",
false, false,
false,
},
}
for _, tc := range testCases {
t.Run(tc.TestName, func(t *testing.T) {
th.App.UpdateConfig(func(cfg *model.Config) {
*cfg.PluginSettings.Enable = tc.PluginEnabled
*cfg.PluginSettings.EnableMarketplace = tc.MarketplaceEnabled
})
cmd := mp.GetCommand(th.App, th.Context.T)
require.Equal(t, tc.MustAutocomplete, cmd.AutoComplete)
})
}
}