summaryrefslogtreecommitdiffstats
path: root/api4/channel_test.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-03-13 21:26:51 +0900
committerGeorge Goldberg <george@gberg.me>2017-03-13 12:26:51 +0000
commit8731465957ba41c1f828285e19ee3bb234e2ef58 (patch)
tree4051efe2fb0ec981e7004c32cf79d3592471fdfb /api4/channel_test.go
parent3559fb7959cf008b038239f2e7c43e604c44cd31 (diff)
downloadchat-8731465957ba41c1f828285e19ee3bb234e2ef58.tar.gz
chat-8731465957ba41c1f828285e19ee3bb234e2ef58.tar.bz2
chat-8731465957ba41c1f828285e19ee3bb234e2ef58.zip
Endpoint for APIv4: GET /team/{team_id}/channels (#5681)
Diffstat (limited to 'api4/channel_test.go')
-rw-r--r--api4/channel_test.go80
1 files changed, 80 insertions, 0 deletions
diff --git a/api4/channel_test.go b/api4/channel_test.go
index c8faf7aa1..a7dbb958b 100644
--- a/api4/channel_test.go
+++ b/api4/channel_test.go
@@ -254,6 +254,86 @@ func TestGetChannel(t *testing.T) {
CheckNotFoundStatus(t, resp)
}
+func TestGetPublicChannelsForTeam(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+ Client := th.Client
+ team := th.BasicTeam
+ publicChannel1 := th.BasicChannel
+ publicChannel2 := th.BasicChannel2
+
+ channels, resp := Client.GetPublicChannelsForTeam(team.Id, 0, 100, "")
+ CheckNoError(t, resp)
+ if len(*channels) != 4 {
+ t.Fatal("wrong length")
+ }
+
+ for i, c := range *channels {
+ if c.Type != model.CHANNEL_OPEN {
+ t.Fatal("should include open channel only")
+ }
+
+ // only check the created 2 public channels
+ if i < 2 && !(c.DisplayName == publicChannel1.DisplayName || c.DisplayName == publicChannel2.DisplayName) {
+ t.Logf("channel %v: %v", i, c.DisplayName)
+ t.Fatal("should match public channel display name only")
+ }
+ }
+
+ privateChannel := th.CreatePrivateChannel()
+ channels, resp = Client.GetPublicChannelsForTeam(team.Id, 0, 100, "")
+ CheckNoError(t, resp)
+ if len(*channels) != 4 {
+ t.Fatal("wrong length")
+ }
+
+ for _, c := range *channels {
+ if c.Type != model.CHANNEL_OPEN {
+ t.Fatal("should not include private channel")
+ }
+
+ if c.DisplayName == privateChannel.DisplayName {
+ t.Fatal("should not match private channel display name")
+ }
+ }
+
+ channels, resp = Client.GetPublicChannelsForTeam(team.Id, 0, 1, "")
+ CheckNoError(t, resp)
+ if len(*channels) != 1 {
+ t.Fatal("should be one channel per page")
+ }
+
+ channels, resp = Client.GetPublicChannelsForTeam(team.Id, 1, 1, "")
+ CheckNoError(t, resp)
+ if len(*channels) != 1 {
+ t.Fatal("should be one channel per page")
+ }
+
+ channels, resp = Client.GetPublicChannelsForTeam(team.Id, 10000, 100, "")
+ CheckNoError(t, resp)
+ if len(*channels) != 0 {
+ t.Fatal("should be no channel")
+ }
+
+ _, resp = Client.GetPublicChannelsForTeam("junk", 0, 100, "")
+ CheckBadRequestStatus(t, resp)
+
+ _, resp = Client.GetPublicChannelsForTeam(model.NewId(), 0, 100, "")
+ CheckForbiddenStatus(t, resp)
+
+ Client.Logout()
+ _, resp = Client.GetPublicChannelsForTeam(team.Id, 0, 100, "")
+ CheckUnauthorizedStatus(t, resp)
+
+ user := th.CreateUser()
+ Client.Login(user.Email, user.Password)
+ _, resp = Client.GetPublicChannelsForTeam(team.Id, 0, 100, "")
+ CheckForbiddenStatus(t, resp)
+
+ _, resp = th.SystemAdminClient.GetPublicChannelsForTeam(team.Id, 0, 100, "")
+ CheckNoError(t, resp)
+}
+
func TestGetChannelByName(t *testing.T) {
th := Setup().InitBasic().InitSystemAdmin()
defer TearDown()