discourse/plugins/chat/test/javascripts/acceptance/chat-message-test.js

100 lines
3.0 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {
acceptance,
loggedInUser,
} from "discourse/tests/helpers/qunit-helpers";
import { click, triggerEvent, visit } from "@ember/test-helpers";
import { test } from "qunit";
import {
chatChannels,
generateChatView,
} from "discourse/plugins/chat/chat-fixtures";
function setupPretenders(server, helper) {
server.get("/chat/chat_channels.json", () => helper.response(chatChannels));
server.get("/chat/:chat_channel_id/messages.json", () =>
helper.response(generateChatView(loggedInUser()))
);
server.get("/chat/emojis.json", () =>
helper.response({ favorites: [{ name: "grinning" }] })
);
server.put("/chat/:id/react/:message_id.json", helper.response);
}
acceptance("Discourse Chat - Chat Message", function (needs) {
needs.user({ has_chat_enabled: true });
needs.settings({ chat_enabled: true });
needs.pretender((server, helper) => setupPretenders(server, helper));
test("when reacting to a message using inline reaction", async function (assert) {
const emojiReactionStore = this.container.lookup(
"service:chat-emoji-reaction-store"
);
assert.deepEqual(
emojiReactionStore.favorites,
this.siteSettings.default_emoji_reactions.split("|")
);
await visit("/chat/channel/4/public-category");
await click(
`.chat-message-container[data-id="176"] .chat-message-reaction[data-emoji-name="heart"]`
);
assert.deepEqual(
emojiReactionStore.favorites,
["heart"].concat(
this.siteSettings.default_emoji_reactions
.split("|")
.filter((r) => r !== "heart")
),
"it tracks the emoji"
);
await click(
`.chat-message-container[data-id="176"] .chat-message-reaction[data-emoji-name="heart"]`
);
assert.deepEqual(
emojiReactionStore.favorites,
["heart"].concat(
this.siteSettings.default_emoji_reactions
.split("|")
.filter((r) => r !== "heart")
),
"it doesnt untrack when removing the reaction"
);
});
test("when reacting to a message using emoji picker reaction", async function (assert) {
const emojiReactionStore = this.container.lookup(
"service:chat-emoji-reaction-store"
);
assert.deepEqual(
emojiReactionStore.favorites,
this.siteSettings.default_emoji_reactions.split("|")
);
await visit("/chat/channel/4/public-category");
await triggerEvent(".chat-message-container[data-id='176']", "mouseenter");
await click(".chat-message-actions-container .react-btn");
await click(`[data-emoji="grinning"]`);
assert.deepEqual(
emojiReactionStore.favorites,
["grinning"].concat(this.siteSettings.default_emoji_reactions.split("|")),
"it tracks the emoji"
);
await click(
`.chat-message-container[data-id="176"] .chat-message-reaction[data-emoji-name="grinning"]`
);
assert.deepEqual(
emojiReactionStore.favorites,
["grinning"].concat(this.siteSettings.default_emoji_reactions.split("|")),
"it doesnt untrack when removing the reaction"
);
});
});