This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/plugins/chat/test/javascripts/acceptance/chat-message-test.js
Roman Rizzi 0a5f548635
DEV: Move discourse-chat to the core repo. (#18776)
As part of this move, we are also renaming `discourse-chat` to `chat`.
2022-11-02 10:41:30 -03:00

86 lines
2.5 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, []);
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"],
"it tracks the emoji"
);
await click(
`.chat-message-container[data-id="176"] .chat-message-reaction[data-emoji-name="heart"]`
);
assert.deepEqual(
emojiReactionStore.favorites,
["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, []);
await visit("/chat/channel/4/public-category");
await triggerEvent(".chat-message-container[data-id='176']", "mouseenter");
await click(".chat-msgactions-hover .react-btn");
await click(`[data-emoji="grinning"]`);
assert.deepEqual(
emojiReactionStore.favorites,
["grinning"],
"it tracks the emoji"
);
await click(
`.chat-message-container[data-id="176"] .chat-message-reaction[data-emoji-name="grinning"]`
);
assert.deepEqual(
emojiReactionStore.favorites,
["grinning"],
"it doesnt untrack when removing the reaction"
);
});
});