summaryrefslogtreecommitdiffstats
path: root/api4/reaction_test.go
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-04-11 22:14:33 +0900
committerGeorge Goldberg <george@gberg.me>2017-04-11 14:14:33 +0100
commite841d0c5023640efc3dcf9d5284f55458e06a0a6 (patch)
treeb78e475ffd4760e1c8aed16dd0ab3fbb7fa6e571 /api4/reaction_test.go
parentd2be3de2d3b54c80f3499359dbd32306ccabd722 (diff)
downloadchat-e841d0c5023640efc3dcf9d5284f55458e06a0a6.tar.gz
chat-e841d0c5023640efc3dcf9d5284f55458e06a0a6.tar.bz2
chat-e841d0c5023640efc3dcf9d5284f55458e06a0a6.zip
APIv4 GET /posts/{post_id}/reactions (#6047)
Diffstat (limited to 'api4/reaction_test.go')
-rw-r--r--api4/reaction_test.go89
1 files changed, 89 insertions, 0 deletions
diff --git a/api4/reaction_test.go b/api4/reaction_test.go
new file mode 100644
index 000000000..457b905da
--- /dev/null
+++ b/api4/reaction_test.go
@@ -0,0 +1,89 @@
+// Copyright (c) 2017 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+package api4
+
+import (
+ "testing"
+
+ "reflect"
+
+ "github.com/mattermost/platform/app"
+ "github.com/mattermost/platform/model"
+)
+
+func TestGetReactions(t *testing.T) {
+ th := Setup().InitBasic().InitSystemAdmin()
+ defer TearDown()
+ Client := th.Client
+ userId := th.BasicUser.Id
+ user2Id := th.BasicUser2.Id
+ postId := th.BasicPost.Id
+
+ userReactions := []*model.Reaction{
+ {
+ UserId: userId,
+ PostId: postId,
+ EmojiName: "smile",
+ },
+ {
+ UserId: userId,
+ PostId: postId,
+ EmojiName: "happy",
+ },
+ {
+ UserId: userId,
+ PostId: postId,
+ EmojiName: "sad",
+ },
+ {
+ UserId: user2Id,
+ PostId: postId,
+ EmojiName: "smile",
+ },
+ {
+ UserId: user2Id,
+ PostId: postId,
+ EmojiName: "sad",
+ },
+ }
+
+ var reactions []*model.Reaction
+
+ for _, userReaction := range userReactions {
+ if result := <-app.Srv.Store.Reaction().Save(userReaction); result.Err != nil {
+ t.Fatal(result.Err)
+ } else {
+ reactions = append(reactions, result.Data.(*model.Reaction))
+ }
+ }
+
+ rr, resp := Client.GetReactions(postId)
+ CheckNoError(t, resp)
+
+ if len(rr) != 5 {
+ t.Fatal("reactions should returned correct length")
+ }
+
+ if !reflect.DeepEqual(rr, reactions) {
+ t.Fatal("reactions should have matched")
+ }
+
+ rr, resp = Client.GetReactions("junk")
+ CheckBadRequestStatus(t, resp)
+
+ if len(rr) != 0 {
+ t.Fatal("reactions should return empty")
+ }
+
+ _, resp = Client.GetReactions(GenerateTestId())
+ CheckForbiddenStatus(t, resp)
+
+ Client.Logout()
+
+ _, resp = Client.GetReactions(postId)
+ CheckUnauthorizedStatus(t, resp)
+
+ _, resp = th.SystemAdminClient.GetReactions(postId)
+ CheckNoError(t, resp)
+}