* MM-12359 Add 'command show' CLI command This new CLI command prints out the detailed information of a given slash command. * Fix typo in error returned when moving slash commands * Move prettyPrint CLI functions to util * Move prettyPrint CLI tests to util
217 строки
6.8 KiB
Go
217 строки
6.8 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package commands
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/mattermost/mattermost-server/model"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestCreateCommand(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
config := th.Config()
|
|
*config.ServiceSettings.EnableCommands = true
|
|
th.SetConfig(config)
|
|
|
|
team := th.BasicTeam
|
|
adminUser := th.TeamAdminUser
|
|
user := th.BasicUser
|
|
|
|
testCases := []struct {
|
|
Description string
|
|
Args []string
|
|
ExpectedErr string
|
|
}{
|
|
{
|
|
"nil error",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"",
|
|
},
|
|
{
|
|
"Team not specified",
|
|
[]string{"command", "create", "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Error: requires at least 1 arg(s), only received 0",
|
|
},
|
|
{
|
|
"Team not found",
|
|
[]string{"command", "create", "fakeTeam", "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Error: unable to find team",
|
|
},
|
|
{
|
|
"Creator not specified",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler"},
|
|
`Error: required flag(s) "creator" not set`,
|
|
},
|
|
{
|
|
"Creator not found",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", "fakeuser"},
|
|
"unable to find user",
|
|
},
|
|
{
|
|
"Creator not team admin",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", user.Username},
|
|
"the creator must be a user who has permissions to manage slash commands",
|
|
},
|
|
{
|
|
"Command not specified",
|
|
[]string{"command", "", team.Name, "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Error: unknown flag: --trigger-word",
|
|
},
|
|
{
|
|
"Trigger not specified",
|
|
[]string{"command", "create", team.Name, "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
`Error: required flag(s) "trigger-word" not set`,
|
|
},
|
|
{
|
|
"Blank trigger",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Invalid trigger",
|
|
},
|
|
{
|
|
"Trigger with space",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "test cmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Error: a trigger word must not contain spaces",
|
|
},
|
|
{
|
|
"Trigger starting with /",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "/testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Error: a trigger word cannot begin with a /",
|
|
},
|
|
{
|
|
"URL not specified",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd", "--creator", adminUser.Username},
|
|
`Error: required flag(s) "url" not set`,
|
|
},
|
|
{
|
|
"Blank URL",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd2", "--url", "", "--creator", adminUser.Username},
|
|
"Invalid URL",
|
|
},
|
|
{
|
|
"Invalid URL",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd2", "--url", "localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Invalid URL",
|
|
},
|
|
{
|
|
"Duplicate Command",
|
|
[]string{"command", "create", team.Name, "--trigger-word", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"This trigger word is already in use",
|
|
},
|
|
{
|
|
"Misspelled flag",
|
|
[]string{"command", "create", team.Name, "--trigger-wor", "testcmd", "--url", "http://localhost:8000/my-slash-handler", "--creator", adminUser.Username},
|
|
"Error: unknown flag:",
|
|
},
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
|
t.Run(testCase.Description, func(t *testing.T) {
|
|
actual, _ := th.RunCommandWithOutput(t, testCase.Args...)
|
|
|
|
cmds, _ := th.SystemAdminClient.ListCommands(team.Id, true)
|
|
|
|
if testCase.ExpectedErr == "" {
|
|
if len(cmds) == 0 || cmds[0].Trigger != "testcmd" {
|
|
t.Fatal("Failed to create command")
|
|
}
|
|
assert.Contains(t, string(actual), "PASS")
|
|
} else {
|
|
if len(cmds) > 1 {
|
|
t.Fatal("Created command that shouldn't have been created")
|
|
}
|
|
assert.Contains(t, string(actual), testCase.ExpectedErr)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestShowCommand(t *testing.T) {
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
|
|
url := "http://localhost:8000/test-command"
|
|
team := th.BasicTeam
|
|
user := th.BasicUser
|
|
th.LinkUserToTeam(user, team)
|
|
trigger := "trigger_" + model.NewId()
|
|
displayName := "dn_" + model.NewId()
|
|
|
|
c := &model.Command{
|
|
DisplayName: displayName,
|
|
Method: "G",
|
|
TeamId: team.Id,
|
|
Username: user.Username,
|
|
CreatorId: user.Id,
|
|
URL: url,
|
|
Trigger: trigger,
|
|
}
|
|
|
|
t.Run("existing command", func(t *testing.T) {
|
|
command, err := th.App.CreateCommand(c)
|
|
require.Nil(t, err)
|
|
commands, err := th.App.ListTeamCommands(team.Id)
|
|
require.Nil(t, err)
|
|
assert.Equal(t, len(commands), 1)
|
|
|
|
output := th.CheckCommand(t, "command", "show", command.Id)
|
|
assert.Contains(t, string(output), command.Id)
|
|
assert.Contains(t, string(output), command.TeamId)
|
|
assert.Contains(t, string(output), trigger)
|
|
assert.Contains(t, string(output), displayName)
|
|
assert.Contains(t, string(output), user.Username)
|
|
})
|
|
|
|
t.Run("not existing command", func(t *testing.T) {
|
|
assert.Error(t, th.RunCommand(t, "command", "show", "invalid"))
|
|
})
|
|
|
|
t.Run("no commandID", func(t *testing.T) {
|
|
assert.Error(t, th.RunCommand(t, "command", "show"))
|
|
})
|
|
}
|
|
|
|
func TestDeleteCommand(t *testing.T) {
|
|
// Skipped due to v5.6 RC build issues.
|
|
t.Skip()
|
|
|
|
th := Setup().InitBasic()
|
|
defer th.TearDown()
|
|
url := "http://localhost:8000/test-command"
|
|
team := th.BasicTeam
|
|
user := th.BasicUser
|
|
th.LinkUserToTeam(user, team)
|
|
|
|
c := &model.Command{
|
|
DisplayName: "dn_" + model.NewId(),
|
|
Method: "G",
|
|
TeamId: team.Id,
|
|
Username: user.Username,
|
|
CreatorId: user.Id,
|
|
URL: url,
|
|
Trigger: "trigger_" + model.NewId(),
|
|
}
|
|
|
|
t.Run("existing command", func(t *testing.T) {
|
|
command, err := th.App.CreateCommand(c)
|
|
require.Nil(t, err)
|
|
commands, err := th.App.ListTeamCommands(team.Id)
|
|
require.Nil(t, err)
|
|
assert.Equal(t, len(commands), 1)
|
|
|
|
th.CheckCommand(t, "command", "delete", command.Id)
|
|
commands, err = th.App.ListTeamCommands(team.Id)
|
|
require.Nil(t, err)
|
|
assert.Equal(t, len(commands), 0)
|
|
})
|
|
|
|
t.Run("not existing command", func(t *testing.T) {
|
|
assert.Error(t, th.RunCommand(t, "command", "delete", "invalid"))
|
|
})
|
|
}
|