add /test post command to post a message as different user to a channel/team (#10798)
Этот коммит содержится в:
коммит произвёл
Harrison Healey
родитель
fb6c1debf0
Коммит
28b057c972
@@ -7,6 +7,7 @@ import (
|
|||||||
"io"
|
"io"
|
||||||
"net/http"
|
"net/http"
|
||||||
"path"
|
"path"
|
||||||
|
"regexp"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
@@ -28,25 +29,31 @@ var usage = `Mattermost testing commands to help configure the system
|
|||||||
|
|
||||||
Users - Add a specified number of random users with fuzz text to current team.
|
Users - Add a specified number of random users with fuzz text to current team.
|
||||||
/test users [fuzz] <Min Users> <Max Users>
|
/test users [fuzz] <Min Users> <Max Users>
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
/test users fuzz 5 10
|
/test users fuzz 5 10
|
||||||
|
|
||||||
Channels - Add a specified number of random channels with fuzz text to current team.
|
Channels - Add a specified number of random channels with fuzz text to current team.
|
||||||
/test channels [fuzz] <Min Channels> <Max Channels>
|
/test channels [fuzz] <Min Channels> <Max Channels>
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
/test channels fuzz 5 10
|
/test channels fuzz 5 10
|
||||||
|
|
||||||
Posts - Add some random posts with fuzz text to current channel.
|
Posts - Add some random posts with fuzz text to current channel.
|
||||||
/test posts [fuzz] <Min Posts> <Max Posts> <Max Images>
|
/test posts [fuzz] <Min Posts> <Max Posts> <Max Images>
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
/test posts fuzz 5 10 3
|
/test posts fuzz 5 10 3
|
||||||
|
|
||||||
|
Post - Add post to a channel as another user.
|
||||||
|
/test post u=@username p=passwd c=~channelname t=teamname "message"
|
||||||
|
|
||||||
|
Example:
|
||||||
|
/test post u=@user-1 p=user-1 c=~town-square t=ad-1 "message"
|
||||||
|
|
||||||
Url - Add a post containing the text from a given url to current channel.
|
Url - Add a post containing the text from a given url to current channel.
|
||||||
/test url
|
/test url
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
/test http://www.example.com/sample_file.md
|
/test http://www.example.com/sample_file.md
|
||||||
|
|
||||||
@@ -62,6 +69,14 @@ const (
|
|||||||
CMD_TEST = "test"
|
CMD_TEST = "test"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var (
|
||||||
|
userRE = regexp.MustCompile(`u=@([^\s]+)`)
|
||||||
|
passwdRE = regexp.MustCompile(`p=([^\s]+)`)
|
||||||
|
teamRE = regexp.MustCompile(`t=([^\s]+)`)
|
||||||
|
channelRE = regexp.MustCompile(`c=~([^\s]+)`)
|
||||||
|
messageRE = regexp.MustCompile(`"(.*)"`)
|
||||||
|
)
|
||||||
|
|
||||||
type LoadTestProvider struct {
|
type LoadTestProvider struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -108,6 +123,10 @@ func (me *LoadTestProvider) DoCommand(a *App, args *model.CommandArgs, message s
|
|||||||
return me.PostsCommand(a, args, message)
|
return me.PostsCommand(a, args, message)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if strings.HasPrefix(message, "post") {
|
||||||
|
return me.PostCommand(a, args, message)
|
||||||
|
}
|
||||||
|
|
||||||
if strings.HasPrefix(message, "url") {
|
if strings.HasPrefix(message, "url") {
|
||||||
return me.UrlCommand(a, args, message)
|
return me.UrlCommand(a, args, message)
|
||||||
}
|
}
|
||||||
@@ -308,6 +327,57 @@ func (me *LoadTestProvider) PostsCommand(a *App, args *model.CommandArgs, messag
|
|||||||
return &model.CommandResponse{Text: "Added posts", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
return &model.CommandResponse{Text: "Added posts", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getMatch(re *regexp.Regexp, text string) string {
|
||||||
|
if match := re.FindStringSubmatch(text); match != nil {
|
||||||
|
return match[1]
|
||||||
|
}
|
||||||
|
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
func (me *LoadTestProvider) PostCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse {
|
||||||
|
textMessage := getMatch(messageRE, message)
|
||||||
|
if textMessage == "" {
|
||||||
|
return &model.CommandResponse{Text: "No message to post", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
|
}
|
||||||
|
|
||||||
|
teamName := getMatch(teamRE, message)
|
||||||
|
team, err := a.GetTeamByName(teamName)
|
||||||
|
if err != nil {
|
||||||
|
return &model.CommandResponse{Text: "Failed to get a team", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
|
}
|
||||||
|
|
||||||
|
channelName := getMatch(channelRE, message)
|
||||||
|
channel, err := a.GetChannelByName(channelName, team.Id, true)
|
||||||
|
if err != nil {
|
||||||
|
return &model.CommandResponse{Text: "Failed to get a channel", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
|
}
|
||||||
|
|
||||||
|
passwd := getMatch(passwdRE, message)
|
||||||
|
username := getMatch(userRE, message)
|
||||||
|
user, err := a.GetUserByUsername(username)
|
||||||
|
if err != nil {
|
||||||
|
return &model.CommandResponse{Text: "Failed to get a user", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
|
}
|
||||||
|
|
||||||
|
client := model.NewAPIv4Client(args.SiteURL)
|
||||||
|
_, resp := client.LoginById(user.Id, passwd)
|
||||||
|
if resp != nil && resp.Error != nil {
|
||||||
|
return &model.CommandResponse{Text: "Failed to login a user", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
|
}
|
||||||
|
|
||||||
|
post := &model.Post{
|
||||||
|
ChannelId: channel.Id,
|
||||||
|
Message: textMessage,
|
||||||
|
}
|
||||||
|
_, resp = client.CreatePost(post)
|
||||||
|
if resp != nil && resp.Error != nil {
|
||||||
|
return &model.CommandResponse{Text: "Failed to create a post", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
|
}
|
||||||
|
|
||||||
|
return &model.CommandResponse{Text: "Added a post to " + channel.DisplayName, ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL}
|
||||||
|
}
|
||||||
|
|
||||||
func (me *LoadTestProvider) UrlCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse {
|
func (me *LoadTestProvider) UrlCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse {
|
||||||
url := strings.TrimSpace(strings.TrimPrefix(message, "url"))
|
url := strings.TrimSpace(strings.TrimPrefix(message, "url"))
|
||||||
if len(url) == 0 {
|
if len(url) == 0 {
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user