summaryrefslogtreecommitdiffstats
path: root/api4/channel_test.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-05-10 11:41:56 -0400
committerCorey Hulen <corey@hulen.com>2017-05-10 08:41:56 -0700
commit4f589e077c82da00dd505319ddcf3565c699d4e6 (patch)
treeeb1e5da4762d66e4a8e6e614ce6ffafa36c9424d /api4/channel_test.go
parenta67898186175d9986b9e8cd8321afbc6fa84c8c6 (diff)
downloadchat-4f589e077c82da00dd505319ddcf3565c699d4e6.tar.gz
chat-4f589e077c82da00dd505319ddcf3565c699d4e6.tar.bz2
chat-4f589e077c82da00dd505319ddcf3565c699d4e6.zip
Removing channel list alias from apiv4 client (#6383)
Diffstat (limited to 'api4/channel_test.go')
-rw-r--r--api4/channel_test.go38
1 files changed, 19 insertions, 19 deletions
diff --git a/api4/channel_test.go b/api4/channel_test.go
index 10cb272f3..c1eb2a806 100644
--- a/api4/channel_test.go
+++ b/api4/channel_test.go
@@ -502,7 +502,7 @@ func TestGetDeletedChannelsForTeam(t *testing.T) {
channels, resp = Client.GetDeletedChannelsForTeam(team.Id, 0, 100, "")
CheckNoError(t, resp)
- if len(*channels) != 0 {
+ if len(channels) != 0 {
t.Fatal("should be no deleted channels")
}
@@ -512,7 +512,7 @@ func TestGetDeletedChannelsForTeam(t *testing.T) {
channels, resp = Client.GetDeletedChannelsForTeam(team.Id, 0, 100, "")
CheckNoError(t, resp)
- if len(*channels) != 1 {
+ if len(channels) != 1 {
t.Fatal("should be 1 deleted channel")
}
@@ -521,19 +521,19 @@ func TestGetDeletedChannelsForTeam(t *testing.T) {
channels, resp = Client.GetDeletedChannelsForTeam(team.Id, 0, 100, "")
CheckNoError(t, resp)
- if len(*channels) != 2 {
+ if len(channels) != 2 {
t.Fatal("should be 2 deleted channels")
}
channels, resp = Client.GetDeletedChannelsForTeam(team.Id, 0, 1, "")
CheckNoError(t, resp)
- if len(*channels) != 1 {
+ if len(channels) != 1 {
t.Fatal("should be one channel per page")
}
channels, resp = Client.GetDeletedChannelsForTeam(team.Id, 1, 1, "")
CheckNoError(t, resp)
- if len(*channels) != 1 {
+ if len(channels) != 1 {
t.Fatal("should be one channel per page")
}
}
@@ -548,11 +548,11 @@ func TestGetPublicChannelsForTeam(t *testing.T) {
channels, resp := Client.GetPublicChannelsForTeam(team.Id, 0, 100, "")
CheckNoError(t, resp)
- if len(*channels) != 4 {
+ if len(channels) != 4 {
t.Fatal("wrong length")
}
- for i, c := range *channels {
+ for i, c := range channels {
if c.Type != model.CHANNEL_OPEN {
t.Fatal("should include open channel only")
}
@@ -567,11 +567,11 @@ func TestGetPublicChannelsForTeam(t *testing.T) {
privateChannel := th.CreatePrivateChannel()
channels, resp = Client.GetPublicChannelsForTeam(team.Id, 0, 100, "")
CheckNoError(t, resp)
- if len(*channels) != 4 {
+ if len(channels) != 4 {
t.Fatal("wrong length")
}
- for _, c := range *channels {
+ for _, c := range channels {
if c.Type != model.CHANNEL_OPEN {
t.Fatal("should not include private channel")
}
@@ -583,19 +583,19 @@ func TestGetPublicChannelsForTeam(t *testing.T) {
channels, resp = Client.GetPublicChannelsForTeam(team.Id, 0, 1, "")
CheckNoError(t, resp)
- if len(*channels) != 1 {
+ 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 {
+ 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 {
+ if len(channels) != 0 {
t.Fatal("should be no channel")
}
@@ -629,11 +629,11 @@ func TestGetPublicChannelsByIdsForTeam(t *testing.T) {
channels, resp := Client.GetPublicChannelsByIdsForTeam(teamId, input)
CheckNoError(t, resp)
- if len(*channels) != 1 {
+ if len(channels) != 1 {
t.Fatal("should return 1 channel")
}
- if (*channels)[0].DisplayName != output[0] {
+ if (channels)[0].DisplayName != output[0] {
t.Fatal("missing channel")
}
@@ -646,11 +646,11 @@ func TestGetPublicChannelsByIdsForTeam(t *testing.T) {
channels, resp = Client.GetPublicChannelsByIdsForTeam(teamId, input)
CheckNoError(t, resp)
- if len(*channels) != 2 {
+ if len(channels) != 2 {
t.Fatal("should return 2 channels")
}
- for i, c := range *channels {
+ for i, c := range channels {
if c.DisplayName != output[i] {
t.Fatal("missing channel")
}
@@ -689,7 +689,7 @@ func TestGetChannelsForTeamForUser(t *testing.T) {
CheckNoError(t, resp)
found := make([]bool, 3)
- for _, c := range *channels {
+ for _, c := range channels {
if c.Id == th.BasicChannel.Id {
found[0] = true
} else if c.Id == th.BasicChannel2.Id {
@@ -739,7 +739,7 @@ func TestSearchChannels(t *testing.T) {
CheckNoError(t, resp)
found := false
- for _, c := range *channels {
+ for _, c := range channels {
if c.Type != model.CHANNEL_OPEN {
t.Fatal("should only return public channels")
}
@@ -758,7 +758,7 @@ func TestSearchChannels(t *testing.T) {
CheckNoError(t, resp)
found = false
- for _, c := range *channels {
+ for _, c := range channels {
if c.Id == th.BasicPrivateChannel.Id {
found = true
}