summaryrefslogtreecommitdiffstats
path: root/app/command_invite_people_test.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2018-07-10 09:56:04 +0100
committerCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-07-10 10:56:04 +0200
commitaf615ffc24b774d76deef8c93282831432669dd8 (patch)
treeddcfb2b17317914f1ad6f874bd72df296cdc5325 /app/command_invite_people_test.go
parent2d16a71af9bff88d89244279849f8129a326a0e1 (diff)
downloadchat-af615ffc24b774d76deef8c93282831432669dd8.tar.gz
chat-af615ffc24b774d76deef8c93282831432669dd8.tar.bz2
chat-af615ffc24b774d76deef8c93282831432669dd8.zip
MM-11229: Fix invite people slash command and add test case. (#9074)
Diffstat (limited to 'app/command_invite_people_test.go')
-rw-r--r--app/command_invite_people_test.go36
1 files changed, 36 insertions, 0 deletions
diff --git a/app/command_invite_people_test.go b/app/command_invite_people_test.go
new file mode 100644
index 000000000..6e10235f4
--- /dev/null
+++ b/app/command_invite_people_test.go
@@ -0,0 +1,36 @@
+// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package app
+
+import (
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+
+ "github.com/mattermost/mattermost-server/model"
+)
+
+func TestInvitePeopleProvider(t *testing.T) {
+ th := Setup().InitBasic()
+ defer th.TearDown()
+
+ cmd := InvitePeopleProvider{}
+
+ // Test without required permissions
+ args := &model.CommandArgs{
+ T: func(s string, args ...interface{}) string { return s },
+ ChannelId: th.BasicChannel.Id,
+ TeamId: th.BasicTeam.Id,
+ UserId: th.BasicUser.Id,
+ Session: model.Session{UserId: th.BasicUser.Id, TeamMembers: []*model.TeamMember{{TeamId: th.BasicTeam.Id, Roles: ""}}},
+ }
+
+ actual := cmd.DoCommand(th.App, args, model.NewId()+"@simulator.amazonses.com")
+ assert.Equal(t, "api.command_invite_people.permission.app_error", actual.Text)
+
+ // Test with required permissions.
+ args.Session.TeamMembers[0].Roles = model.TEAM_USER_ROLE_ID
+ actual = cmd.DoCommand(th.App, args, model.NewId()+"@simulator.amazonses.com")
+ assert.Equal(t, "api.command.invite_people.sent", actual.Text)
+}