It was a good decision in hindsight to keep the public module as 0.x because this would have been a breaking change again. https://mattermost.atlassian.net/browse/MM-53032 ```release-note Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8. For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public ```
105 строки
3.3 KiB
Go
105 строки
3.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package slashcommands
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
func TestRenameProviderDoCommand(t *testing.T) {
|
|
th := setup(t).initBasic()
|
|
defer th.tearDown()
|
|
|
|
th.addPermissionToRole(model.PermissionManagePublicChannelProperties.Id, model.ChannelUserRoleId)
|
|
|
|
rp := RenameProvider{}
|
|
args := &model.CommandArgs{
|
|
T: func(s string, args ...any) string { return s },
|
|
ChannelId: th.BasicChannel.Id,
|
|
UserId: th.BasicUser.Id,
|
|
}
|
|
|
|
// Table Test for basic cases. Blank text in response indicates success
|
|
for msg, expected := range map[string]string{
|
|
"": "api.command_channel_rename.message.app_error",
|
|
"o": "",
|
|
"joram": "",
|
|
"More than 22 chars but less than 64": "",
|
|
strings.Repeat("12345", 13): "api.command_channel_rename.too_long.app_error",
|
|
} {
|
|
actual := rp.DoCommand(th.App, th.Context, args, msg).Text
|
|
assert.Equal(t, expected, actual)
|
|
}
|
|
|
|
// Try a public channel *without* permission.
|
|
th.removePermissionFromRole(model.PermissionManagePublicChannelProperties.Id, model.ChannelUserRoleId)
|
|
|
|
args = &model.CommandArgs{
|
|
T: func(s string, args ...any) string { return s },
|
|
ChannelId: th.BasicChannel.Id,
|
|
UserId: th.BasicUser.Id,
|
|
}
|
|
|
|
actual := rp.DoCommand(th.App, th.Context, args, "hello").Text
|
|
assert.Equal(t, "api.command_channel_rename.permission.app_error", actual)
|
|
|
|
// Try a private channel *with* permission.
|
|
privateChannel := th.createPrivateChannel(th.BasicTeam)
|
|
|
|
th.addPermissionToRole(model.PermissionManagePrivateChannelProperties.Id, model.ChannelUserRoleId)
|
|
|
|
args = &model.CommandArgs{
|
|
T: func(s string, args ...any) string { return s },
|
|
ChannelId: privateChannel.Id,
|
|
UserId: th.BasicUser.Id,
|
|
}
|
|
|
|
actual = rp.DoCommand(th.App, th.Context, args, "hello").Text
|
|
assert.Equal(t, "", actual)
|
|
|
|
// Try a private channel *without* permission.
|
|
th.removePermissionFromRole(model.PermissionManagePrivateChannelProperties.Id, model.ChannelUserRoleId)
|
|
|
|
args = &model.CommandArgs{
|
|
T: func(s string, args ...any) string { return s },
|
|
ChannelId: privateChannel.Id,
|
|
UserId: th.BasicUser.Id,
|
|
}
|
|
|
|
actual = rp.DoCommand(th.App, th.Context, args, "hello").Text
|
|
assert.Equal(t, "api.command_channel_rename.permission.app_error", actual)
|
|
|
|
// Try a group channel *with* being a member.
|
|
user1 := th.createUser()
|
|
user2 := th.createUser()
|
|
|
|
groupChannel := th.createGroupChannel(user1, user2)
|
|
|
|
args = &model.CommandArgs{
|
|
T: func(s string, args ...any) string { return s },
|
|
ChannelId: groupChannel.Id,
|
|
UserId: th.BasicUser.Id,
|
|
}
|
|
|
|
actual = rp.DoCommand(th.App, th.Context, args, "hello").Text
|
|
assert.Equal(t, "api.command_channel_rename.direct_group.app_error", actual)
|
|
|
|
// Try a direct channel *with* being a member.
|
|
directChannel := th.createDmChannel(user1)
|
|
|
|
args = &model.CommandArgs{
|
|
T: func(s string, args ...any) string { return s },
|
|
ChannelId: directChannel.Id,
|
|
UserId: th.BasicUser.Id,
|
|
}
|
|
|
|
actual = rp.DoCommand(th.App, th.Context, args, "hello").Text
|
|
assert.Equal(t, "api.command_channel_rename.direct_group.app_error", actual)
|
|
}
|