mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
80 lines
2.7 KiB
JavaScript
80 lines
2.7 KiB
JavaScript
// Copyright (c) 2016-present 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));
|
|
}
|
|
);
|
|
});
|
|
});
|
|
});
|