summaryrefslogtreecommitdiffstats
path: root/api4/channel_test.go
diff options
context:
space:
mode:
authorCarlos Tadeu Panato Junior <ctadeu@gmail.com>2018-01-12 15:01:45 +0100
committerJoram Wilander <jwawilander@gmail.com>2018-01-12 09:01:45 -0500
commit3d3a234fca1d2ee43f5c4fc8961d44fde2512c82 (patch)
treeaf962fff2db3c4c412268600adf270eec3ecff46 /api4/channel_test.go
parent4acc2238e9088fbdc0a1e288987d5b9d349dd2eb (diff)
downloadchat-3d3a234fca1d2ee43f5c4fc8961d44fde2512c82.tar.gz
chat-3d3a234fca1d2ee43f5c4fc8961d44fde2512c82.tar.bz2
chat-3d3a234fca1d2ee43f5c4fc8961d44fde2512c82.zip
[PLT-8430] Auto lowercase team and channel names in API requests (#7992)
Diffstat (limited to 'api4/channel_test.go')
-rw-r--r--api4/channel_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/api4/channel_test.go b/api4/channel_test.go
index 79cbb8331..724b0d84b 100644
--- a/api4/channel_test.go
+++ b/api4/channel_test.go
@@ -9,6 +9,7 @@ import (
"reflect"
"sort"
"strconv"
+ "strings"
"testing"
"github.com/mattermost/mattermost-server/model"
@@ -1136,6 +1137,9 @@ func TestGetChannelByName(t *testing.T) {
t.Fatal("names did not match")
}
+ _, resp = Client.GetChannelByName(strings.ToUpper(th.BasicPrivateChannel.Name), th.BasicTeam.Id, "")
+ CheckNoError(t, resp)
+
Client.RemoveUserFromChannel(th.BasicChannel.Id, th.BasicUser.Id)
_, resp = Client.GetChannelByName(th.BasicChannel.Name, th.BasicTeam.Id, "")
CheckNoError(t, resp)