mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
* model -> public/model * plugin -> public/plugin * public/model/utils -> public/utils * platform/shared/mlog -> public/shared/mlog * platform/shared/i18n -> public/shared/i18n * platform/shared/markdown -> public/shared/markdown * platform/services/timezones -> public/shared/timezones * channels/einterfaces -> einterfaces * expose public/ submodule * go mod tidy * .github: cache-dependency-path, setup-go-work * modules-tidy for public/ too * remove old gomodtidy
99 lines
2.9 KiB
Go
99 lines
2.9 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import (
|
|
"net/url"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAutocompleteData(t *testing.T) {
|
|
ad := NewAutocompleteData("jira", "", "Available commands:")
|
|
assert.NoError(t, ad.IsValid())
|
|
ad.RoleID = "some_id"
|
|
assert.Error(t, ad.IsValid())
|
|
ad.RoleID = SystemAdminRoleId
|
|
assert.NoError(t, ad.IsValid())
|
|
ad.AddDynamicListArgument("help", "/some/url", true)
|
|
assert.NoError(t, ad.IsValid())
|
|
ad.AddNamedTextArgument("name", "help", "[text]", "", true)
|
|
assert.NoError(t, ad.IsValid())
|
|
|
|
ad = getAutocompleteData()
|
|
assert.NoError(t, ad.IsValid())
|
|
command := NewAutocompleteData("", "", "")
|
|
ad.AddCommand(command)
|
|
assert.Error(t, ad.IsValid())
|
|
|
|
ad = getAutocompleteData()
|
|
command = NewAutocompleteData("disconnect", "", "disconnect")
|
|
command.AddTextArgument("help", "[text]", "")
|
|
command.AddNamedTextArgument("some", "help", "[text]", "", true)
|
|
ad.AddCommand(command)
|
|
assert.NoError(t, ad.IsValid())
|
|
|
|
ad = getAutocompleteData()
|
|
command = NewAutocompleteData("disconnect", "", "disconnect")
|
|
command.AddDynamicListArgument("help", "valid_url", true)
|
|
ad.AddCommand(command)
|
|
assert.NoError(t, ad.IsValid())
|
|
|
|
ad = getAutocompleteData()
|
|
command = NewAutocompleteData("disconnect", "", "disconnect")
|
|
command.AddDynamicListArgument("help", "/valid/url", true)
|
|
items := []AutocompleteListItem{
|
|
{
|
|
Hint: "help",
|
|
Item: "",
|
|
HelpText: "text",
|
|
},
|
|
}
|
|
command.AddStaticListArgument("help", true, items)
|
|
ad.AddCommand(command)
|
|
assert.Error(t, ad.IsValid())
|
|
|
|
ad = getAutocompleteData()
|
|
ad.AddCommand(nil)
|
|
assert.Error(t, ad.IsValid())
|
|
|
|
ad = getAutocompleteData()
|
|
command = NewAutocompleteData("Disconnect", "", "")
|
|
ad.AddCommand(command)
|
|
assert.Error(t, ad.IsValid())
|
|
}
|
|
|
|
func getAutocompleteData() *AutocompleteData {
|
|
ad := NewAutocompleteData("jira", "", "Available commands:")
|
|
ad.RoleID = SystemUserRoleId
|
|
command := NewAutocompleteData("connect", "", "Connect to mattermost")
|
|
command.RoleID = SystemAdminRoleId
|
|
items := []AutocompleteListItem{
|
|
{
|
|
Hint: "arg1",
|
|
Item: "help1",
|
|
HelpText: "text1",
|
|
}, {
|
|
Hint: "arg2",
|
|
Item: "help2",
|
|
HelpText: "text2",
|
|
},
|
|
}
|
|
command.AddStaticListArgument("help", true, items)
|
|
command.AddNamedTextArgument("some", "help", "[text]", "", true)
|
|
command.AddNamedDynamicListArgument("other", "help", "/other/url", true)
|
|
ad.AddCommand(command)
|
|
return ad
|
|
}
|
|
|
|
func TestUpdateRelativeURLsForPluginCommands(t *testing.T) {
|
|
ad := getAutocompleteData()
|
|
baseURL, _ := url.Parse("http://localhost:8065/plugins/com.mattermost.demo-plugin")
|
|
err := ad.UpdateRelativeURLsForPluginCommands(baseURL)
|
|
assert.NoError(t, err)
|
|
arg, ok := ad.SubCommands[0].Arguments[2].Data.(*AutocompleteDynamicListArg)
|
|
assert.True(t, ok)
|
|
assert.Equal(t, "http://localhost:8065/plugins/com.mattermost.demo-plugin/other/url", arg.FetchURL)
|
|
}
|