summaryrefslogtreecommitdiffstats
path: root/webapp/tests/client/client_reaction.test.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/tests/client/client_reaction.test.jsx')
-rw-r--r--webapp/tests/client/client_reaction.test.jsx79
1 files changed, 79 insertions, 0 deletions
diff --git a/webapp/tests/client/client_reaction.test.jsx b/webapp/tests/client/client_reaction.test.jsx
new file mode 100644
index 000000000..a7b1f3389
--- /dev/null
+++ b/webapp/tests/client/client_reaction.test.jsx
@@ -0,0 +1,79 @@
+// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
+// See License.txt for license information.
+
+import TestHelper from 'tests/helpers/client-test-helper.jsx';
+
+describe('Client.Reaction', function() {
+ test('saveListReaction', function(done) {
+ TestHelper.initBasic(done, () => {
+ const channelId = TestHelper.basicChannel().id;
+ const postId = TestHelper.basicPost().id;
+
+ const reaction = {
+ post_id: postId,
+ user_id: TestHelper.basicUser().id,
+ emoji_name: 'upside_down_face'
+ };
+
+ TestHelper.basicClient().saveReaction(
+ channelId,
+ reaction,
+ function() {
+ TestHelper.basicClient().listReactions(
+ channelId,
+ postId,
+ function(reactions) {
+ if (reactions.length === 1 &&
+ reactions[0].post_id === reaction.post_id &&
+ reactions[0].user_id === reaction.user_id &&
+ reactions[0].emoji_name === reaction.emoji_name) {
+ done();
+ } else {
+ done.fail(new Error('test reaction wasn\'t returned'));
+ }
+ },
+ function(err) {
+ done.fail(new Error(err.message));
+ }
+ );
+ },
+ function(err) {
+ done.fail(new Error(err.message));
+ }
+ );
+ });
+ });
+
+ test('deleteReaction', function(done) {
+ TestHelper.initBasic(done, () => {
+ const channelId = TestHelper.basicChannel().id;
+ const postId = TestHelper.basicPost().id;
+
+ const reaction = {
+ post_id: postId,
+ user_id: TestHelper.basicUser().id,
+ emoji_name: 'upside_down_face'
+ };
+
+ TestHelper.basicClient().saveReaction(
+ channelId,
+ reaction,
+ function() {
+ TestHelper.basicClient().deleteReaction(
+ channelId,
+ reaction,
+ function() {
+ done();
+ },
+ function(err) {
+ done.fail(new Error(err.message));
+ }
+ );
+ },
+ function(err) {
+ done.fail(new Error(err.message));
+ }
+ );
+ });
+ });
+});