oca-ocb-core/odoo-bringout-oca-ocb-mail/mail/static/tests/message/message.test.js
Ernad Husremovic 2d3ee4855a 19.0 vanilla
2026-03-09 09:30:27 +01:00

2330 lines
86 KiB
JavaScript

import { setSelection } from "@html_editor/../tests/_helpers/selection";
import {
insertText as htmlInsertText,
tripleClick,
} from "@html_editor/../tests/_helpers/user_actions";
import {
click,
contains,
defineMailModels,
focus,
hover,
insertText,
onRpcBefore,
openDiscuss,
openFormView,
patchUiSize,
SIZES,
start,
startServer,
triggerHotkey,
} from "@mail/../tests/mail_test_helpers";
import { LONG_PRESS_DELAY } from "@mail/utils/common/hooks";
import { describe, expect, test } from "@odoo/hoot";
import { animationFrame, leave, pointerDown, press, queryFirst, waitFor } from "@odoo/hoot-dom";
import { advanceTime, mockDate, mockTouch, mockUserAgent, tick } from "@odoo/hoot-mock";
import {
asyncStep,
contains as webContains,
Command,
mockService,
onRpc,
patchWithCleanup,
serverState,
waitForSteps,
withUser,
getService,
} from "@web/../tests/web_test_helpers";
import { browser } from "@web/core/browser/browser";
import { deserializeDateTime } from "@web/core/l10n/dates";
import { getOrigin, url } from "@web/core/utils/urls";
const { DateTime } = luxon;
describe.current.tags("desktop");
defineMailModels();
test("Start edition on click edit", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer-input", { value: "Hello world" });
await click("button", { text: "cancel" });
await contains(".o-mail-Message .o-mail-Composer-input", { count: 0 });
});
test.tags("html composer");
test("edit a message with styling keeps the styling", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "<strong>Hello world</strong>",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
const composerService = getService("mail.composer");
composerService.setHtmlComposer();
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Composer-html.odoo-editor-editable strong:contains('Hello world')");
});
test.tags("html composer");
test("edit a message styling", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "<strong>Hello world</strong>",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
const composerService = getService("mail.composer");
composerService.setHtmlComposer();
await contains(".o-mail-Message[data-persistent] strong:contains(Hello world)", { count: 1 });
await contains(".o-mail-Message[data-persistent] em:contains(Hello world)", {
count: 0,
});
await click(".o-mail-Message [title='Edit']");
await focus(".o-mail-Message .o-mail-Composer-html.odoo-editor-editable");
const editor = {
document,
editable: document.querySelector(
".o-mail-Message .o-mail-Composer-html.odoo-editor-editable"
),
};
await tripleClick(editor.editable);
await press("Control+b");
await press("Control+i");
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message[data-persistent] strong:contains(Hello world)", { count: 0 });
await contains(".o-mail-Message[data-persistent] em:contains(Hello world)", {
count: 1,
});
await contains(".o-mail-Message-content", {
text: "Hello world (edited)",
});
});
test("Can only edit one message at a time", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "general" });
pyEnv["mail.message"].create([
{
author_id: serverState.partnerId,
body: "Hello!",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
},
{
author_id: serverState.partnerId,
body: "Goodbye!",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
},
]);
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']", {
parent: [".o-mail-Message", { text: "Goodbye!" }],
});
await contains(".o-mail-Composer-input", { value: "Goodbye!" });
await click(".o-mail-Message [title='Edit']", {
parent: [".o-mail-Message", { text: "Hello!" }],
});
await contains(".o-mail-Message .o-mail-Composer-input", { count: 1 });
await contains(".o-mail-Composer-input", { value: "Hello!" });
await focus(".o-mail-Composer-input", { value: "" });
await press("ArrowUp");
await contains(".o-mail-Message .o-mail-Composer-input", { count: 1 });
await contains(".o-mail-Composer-input", { value: "Goodbye!" });
});
test("Edit message (mobile)", async () => {
patchUiSize({ size: SIZES.SM });
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Edit')");
await contains(".o-mail-Message.o-editing .o-mail-Composer-input", { value: "Hello world" });
await click("button", { text: "Discard editing" });
await contains(".o-mail-Message.o-editing .o-mail-Composer", { count: 0 });
await contains(".o-mail-Message-content", { text: "Hello world" });
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Edit')");
await insertText(".o-mail-Message .o-mail-Composer-input", "edited message", { replace: true });
await click(".o-mail-Message .fa-paper-plane-o");
await contains(".o-mail-Message-content", { text: "edited message (edited)" });
});
test("Can add reaction to a message on an ipad", async () => {
mockTouch(true);
mockUserAgent("android");
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
await pointerDown(".o-mail-Message");
await advanceTime(LONG_PRESS_DELAY);
await click("button:contains('Add a Reaction')");
await click(".o-EmojiPicker-content .o-Emoji:contains('😀')");
await contains(".o-mail-MessageReaction:contains('😀 1')");
});
test("Editing message keeps the mentioned channels", async () => {
const pyEnv = await startServer();
const channelId1 = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["discuss.channel"].create({
name: "other",
channel_type: "channel",
});
await start();
await openDiscuss(channelId1);
await insertText(".o-mail-Composer-input", "#");
await click(".o-mail-Composer-suggestion strong", { text: "other" });
await press("Enter");
await contains(".o_channel_redirect", { count: 1, text: "other" });
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer-input", { value: "#other" });
await insertText(".o-mail-Message .o-mail-Composer-input", "#other bye", { replace: true });
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message-content", { text: "other bye (edited)" });
await click(".o_channel_redirect", { text: "other" });
await contains(".o-mail-DiscussContent-threadName", { value: "other" });
// Test editing via arrow up shortcut
await click(".o-mail-DiscussSidebarChannel", { text: "general" });
await contains(".o-mail-Message");
await press("ArrowUp");
await contains(".o-mail-Message .o-mail-Composer-input", { value: "#other bye" });
await insertText(".o-mail-Message .o-mail-Composer-input", "#other hello", { replace: true });
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message-content", { text: "other hello (edited)" });
await click(".o_channel_redirect", { text: "other" });
await contains(".o-mail-DiscussContent-threadName", { value: "other" });
});
test("Editing message keeps the mentioned roles", async () => {
const pyEnv = await startServer();
pyEnv["res.role"].create([{ name: "admin" }]);
const channelId = pyEnv["discuss.channel"].create({ name: "general" });
await start();
await openDiscuss(channelId);
await insertText(".o-mail-Composer-input", "@");
await click(".o-mail-Composer-suggestion strong", { text: "admin" });
await press("Enter");
await contains(".o-discuss-mention", { text: "@admin" });
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer-input", { value: "@admin" });
await insertText(".o-mail-Message .o-mail-Composer-input", "@admin edit", { replace: true });
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message-content", { text: "@admin edit (edited)" });
await contains(".o-discuss-mention", { text: "@admin" });
});
test("Can edit message comment in chatter", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({ name: "TestPartner" });
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "original message",
message_type: "comment",
model: "res.partner",
res_id: partnerId,
});
await start();
await openFormView("res.partner", partnerId);
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer.o-focused");
await webContains(".o-mail-Message .o-mail-Composer-input").edit("edited message");
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message-content", { text: "edited message (edited)" });
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message:contains('Escape to cancel, CTRL-Enter to save')");
await contains(".o-mail-Message .o-mail-Composer.o-focused");
await webContains(".o-mail-Message .o-mail-Composer-input").edit("edited again");
await webContains(".o-mail-Message .o-mail-Composer-input").press("Enter");
await animationFrame();
await contains(".o-mail-Message .o-mail-Composer-input"); // still editing message
await contains(".o-mail-Message .o-mail-Composer-input:value('edited again')"); // FIXME: even though value has trailing '\n', HOOT selector doesn't see it on the node
await webContains(".o-mail-Message .o-mail-Composer-input").press(["Control", "Enter"]);
await contains(".o-mail-Message-content", { text: "edited again (edited)" });
// save without change should keep (edited)
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer.o-focused");
await contains(".o-mail-Message .o-mail-Composer-input:value('edited again')");
await contains(".o-mail-Message:contains('Escape to cancel, CTRL-Enter to save')");
await webContains(".o-mail-Message .o-mail-Composer-input").press(["Control", "Enter"]);
await contains(".o-mail-Message-content", { text: "edited again (edited)" });
});
test("Basic list of edit message actions in chatter", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({ name: "TestPartner" });
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "original message",
message_type: "comment",
model: "res.partner",
res_id: partnerId,
});
await start();
await openFormView("res.partner", partnerId);
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer.o-focused");
await click(".o-mail-Message .o-mail-Composer button[title='More Actions']");
await contains(".dropdown-menu .dropdown-item", { count: 1 });
await contains(".dropdown-menu .dropdown-item:has(:text('Attach Files'))");
});
test("Cursor is at end of composer input on edit", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "",
});
pyEnv["mail.message"].create({
body: "sattva",
res_id: channelId,
model: "discuss.channel",
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
const textarea = queryFirst(".o-mail-Composer-input");
const contentLength = textarea.value.length;
expect(textarea.selectionStart).toBe(contentLength);
expect(textarea.selectionEnd).toBe(contentLength);
});
test("Stop edition on click cancel", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await click(".o-mail-Message button", { text: "cancel" });
await contains(".o-mail-Message.o-editing .o-mail-Composer", { count: 0 });
});
test("Stop edition on press escape", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
triggerHotkey("Escape", false);
await contains(".o-mail-Message.o-editing .o-mail-Composer", { count: 0 });
});
test("Stop edition on click save", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message.o-editing .o-mail-Composer", { count: 0 });
});
test("Stop edition on press enter", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
triggerHotkey("Enter", false);
await contains(".o-mail-Message.o-editing .o-mail-Composer", { count: 0 });
});
test("Do not stop edition on click away when clicking on emoji", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await click(".o-mail-Composer button[title='Add Emojis']");
await click(".o-EmojiPicker-content :nth-child(1 of .o-Emoji)");
await contains(".o-mail-Message.o-editing .o-mail-Composer");
});
test("Edit and click save", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await insertText(".o-mail-Message .o-mail-Composer-input", "Goodbye World", { replace: true });
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message-body", { text: "Goodbye World (edited)" });
});
test("Do not call server on save if no changes", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
onRpcBefore("/mail/message/update_content", () => asyncStep("update_content"));
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await click(".o-mail-Message button", { text: "save" });
await waitForSteps([]);
await click(".o-mail-Message [title='Edit']");
await insertText(".o-mail-Message .o-mail-Composer-input", " - updated");
await click(".o-mail-Message button", { text: "save" });
await waitForSteps(["update_content"]);
await click(".o-mail-Message [title='Edit']");
await click(".o-mail-Message button", { text: "save" });
await waitForSteps([]);
});
test("Update the link previews when a message is edited", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
onRpcBefore("/mail/link_preview", (args) => asyncStep("link_preview"));
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await insertText(".o-mail-Message .o-mail-Composer-input", "http://odoo.com", {
replace: true,
});
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message-body", { text: "http://odoo.com" });
await waitForSteps(["link_preview"]);
});
test("Scroll bar to the top when edit starts", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world!".repeat(1000),
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer-input");
const textarea = document.querySelector(".o-mail-Message .o-mail-Composer-input");
expect(textarea.scrollHeight).toBeGreaterThan(textarea.clientHeight);
await contains(".o-mail-Message .o-mail-Composer-input", { scroll: 0 });
});
test("[text composer] mentions and special mentions are kept when editing message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: '<div>Hello <a class="o_mail_redirect" target="_blank">@Mitchell Admin</a> and <a href="#" class="o-discuss-mention">@everyone</a></div>',
model: "discuss.channel",
partner_ids: [serverState.partnerId],
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message", {
text: "Hello @Mitchell Admin and @everyone",
contains: [
["a.o_mail_redirect", { text: "@Mitchell Admin" }],
["a.o-discuss-mention", { text: "@everyone" }],
],
});
await click(".o-mail-Message [title='Edit']");
await insertText(".o-mail-Message .o-mail-Composer-input", " abc");
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message", {
text: "Hello @Mitchell Admin and @everyone abc (edited)",
contains: [
["a.o_mail_redirect", { text: "@Mitchell Admin" }],
["a.o-discuss-mention", { text: "@everyone" }],
],
});
});
test.tags("html composer");
test("mentions and special mentions are kept when editing message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
await start();
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: '<div>Hello <a class="o_mail_redirect" target="_blank">@Mitchell Admin</a> and <a href="#" class="o-discuss-mention">@everyone</a></div>',
model: "discuss.channel",
partner_ids: [serverState.partnerId],
res_id: channelId,
message_type: "comment",
});
const composerService = getService("mail.composer");
composerService.setHtmlComposer();
await openDiscuss(channelId);
await contains(".o-mail-Message", {
text: "Hello @Mitchell Admin and @everyone",
contains: [
["a.o_mail_redirect", { text: "@Mitchell Admin" }],
["a.o-discuss-mention", { text: "@everyone" }],
],
});
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer-html", {
text: "Hello \uFEFF@Mitchell Admin\uFEFF and \uFEFF@everyone",
contains: [
["a.o_mail_redirect[contenteditable=false]", { text: "@Mitchell Admin" }],
["a.o-discuss-mention[contenteditable=false]", { text: "@everyone" }],
],
});
const editor = {
document,
editable: document.querySelector(
".o-mail-Message .o-mail-Composer-html.odoo-editor-editable"
),
};
const paragraph = editor.editable.querySelector("div.o-paragraph");
setSelection({
anchorNode: paragraph,
anchorOffset: paragraph.childNodes.length,
});
await htmlInsertText(editor, " abc");
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message", {
text: "Hello @Mitchell Admin and @everyone abc (edited)",
contains: [
["a.o_mail_redirect", { text: "@Mitchell Admin" }],
["a.o-discuss-mention", { text: "@everyone" }],
],
});
});
test("can add new mentions when editing message", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({
email: "testpartner@odoo.com",
name: "TestPartner",
});
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_member_ids: [
Command.create({ partner_id: serverState.partnerId }),
Command.create({ partner_id: partnerId }),
],
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello",
model: "discuss.channel",
partner_ids: [serverState.partnerId],
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await insertText(".o-mail-Message .o-mail-Composer-input", " @");
await click(".o-mail-Composer-suggestion strong", { text: "TestPartner" });
await contains(".o-mail-Composer-input", { value: "Hello @TestPartner " });
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message", {
text: "Hello @TestPartner (edited)",
contains: ["a.o_mail_redirect", { text: "@TestPartner" }],
});
});
test("Other messages are grayed out when replying to another one", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create([
{ body: "Hello world", res_id: channelId, model: "discuss.channel" },
{ body: "Goodbye world", res_id: channelId, model: "discuss.channel" },
]);
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message", { count: 2 });
await click(".o-mail-Message [title='Reply']", {
parent: [".o-mail-Message", { text: "Hello world" }],
});
await contains(".o-mail-Message.o-selected:has(:text('Hello world'))");
expect(
getComputedStyle(queryFirst(".o-mail-Message:has(:text('Goodbye world'))")).opacity
).toBe("0.5");
expect(getComputedStyle(queryFirst(".o-mail-Message:has(:text('Hello world))")).opacity).toBe(
"1"
);
});
test("Parent message body is displayed on replies", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Reply']");
await insertText(".o-mail-Composer-input", "FooBarFoo");
await press("Enter");
await contains(".o-mail-MessageInReply-message", { text: "Hello world" });
});
test("Updating the parent message of a reply also updates the visual of the reply", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
const messageId = pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
parent_id: messageId,
});
await start();
await openDiscuss(channelId);
await click(":nth-child(1 of .o-mail-Message) [title='Edit']");
await insertText(".o-mail-Message .o-mail-Composer-input", "Goodbye World", {
replace: true,
});
triggerHotkey("Enter");
await contains(".o-mail-MessageInReply-message", { text: "Goodbye World (edited)" });
});
test("Deleting parent message of a reply should adapt reply visual", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Reply')");
await insertText(".o-mail-Composer-input", "FooBarFoo");
triggerHotkey("Enter", false);
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Delete')");
await click(".modal button", { text: "Delete" });
await contains(".o-mail-MessageInReply", { text: "Original message was deleted" });
});
test("Can open emoji picker after edit mode", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await click(".o-mail-Message button", { text: "save" });
await contains(".o-mail-Message", { text: "Hello world" });
await click("[title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu [title='Toggle Emoji Picker']");
await contains(".o-EmojiPicker");
});
test("Can add a reaction", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click("[title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu [title='Toggle Emoji Picker']");
await click(".o-Emoji", { text: "😅" });
await contains(".o-mail-MessageReaction", { text: "😅1" });
});
test("Can remove a reaction", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click("[title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu button", { text: "😅" });
await click(".o-mail-MessageReaction");
await contains(".o-mail-MessageReaction", { count: 0 });
});
test("Two users reacting with the same emoji", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({ name: "Demo" });
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
const messageId = pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
pyEnv["mail.message.reaction"].create([
{
message_id: messageId,
content: "😅",
partner_id: serverState.partnerId,
},
{
message_id: messageId,
content: "😅",
partner_id: partnerId,
},
]);
await start();
await openDiscuss(channelId);
await click(".o-mail-MessageReaction", { text: "😅2" });
await click(".o-mail-MessageReaction", { text: "😅1" });
await contains(".o-mail-MessageReaction", { text: "😅2" });
});
test("Can quickly add a reaction", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click("[title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu button", { text: "😅" });
await contains(".o-mail-MessageReaction", { text: "😅1" });
await click(".o-mail-MessageReactions button[title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu button", { text: "🤣" });
await contains(".o-mail-MessageReaction", { text: "🤣1" });
});
test("Reaction summary", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message", { text: "Hello world" });
const partnerNames = ["Foo", "Bar", "FooBar", "Bob", "Baz"];
const expectedSummaries = [
"😅:sweat_smile: reacted by Foo",
"😅:sweat_smile: reacted by Foo and Bar",
"😅:sweat_smile: reacted by Foo, Bar, and FooBar",
"😅:sweat_smile: reacted by Foo, Bar, FooBar, and 1 other",
"😅:sweat_smile: reacted by Foo, Bar, FooBar, and 2 others",
];
for (const [idx, name] of partnerNames.entries()) {
const partner_id = pyEnv["res.partner"].create({ name });
const userId = pyEnv["res.users"].create({ partner_id });
pyEnv["res.partner"].create({ name, user_ids: [Command.link(userId)] });
await withUser(userId, async () => {
await click(".o-mail-Message-actions [title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu button", { text: "😅" });
await waitFor(`.o-mail-MessageReaction:text(😅 ${idx + 1})`, {
exact: true,
timeout: 3000,
});
await hover(".o-mail-MessageReaction");
await contains(".o-mail-MessageReactionList-preview", {
text: `${expectedSummaries[idx]}`,
});
await leave(".o-mail-MessageReaction");
});
}
});
test("Select already reacted emoji from quick reaction removes the reaction on message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message-actions [title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu button", { text: "😅" });
await contains(".o-mail-MessageReaction", { text: "😅1" });
await click(".o-mail-Message-actions [title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu button", { text: "😅" });
await contains(".o-mail-MessageReaction", { count: 0 });
});
test("basic rendering of message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "general" });
const partnerId = pyEnv["res.partner"].create({ name: "Demo" });
pyEnv["res.users"].create({
partner_id: partnerId,
name: "Demo",
});
pyEnv["mail.message"].create({
author_id: partnerId,
body: "<p>body</p>",
date: "2019-04-20 10:00:00",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
await contains(".o-mail-Message .o-mail-Message-content", { text: "body" });
const partner = pyEnv["res.partner"].search_read([["id", "=", partnerId]])[0];
await contains(
`.o-mail-Message .o-mail-Message-sidebar .o-mail-Message-avatarContainer img.cursor-pointer[data-src='${getOrigin()}/web/image/res.partner/${partnerId}/avatar_128?unique=${
deserializeDateTime(partner.write_date).ts
}']`
);
await contains(".o-mail-Message .o-mail-Message-header .o-mail-Message-author.cursor-pointer", {
text: "Demo",
});
await contains(
`.o-mail-Message .o-mail-Message-header .o-mail-Message-date[title='${deserializeDateTime(
"2019-04-20 10:00:00"
).toLocaleString(DateTime.DATETIME_SHORT_WITH_SECONDS)}']`
);
});
test("should not be able to reply to temporary/transient messages", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "general" });
await start();
await openDiscuss(channelId);
// these user interactions is to forge a transient message response from channel command "/who"
await insertText(".o-mail-Composer-input", "/who");
await click(".o-mail-Composer button[title='Send']:enabled");
await contains(".o-mail-Message [title='Reply']", { count: 0 });
});
test.skip("squashed transient message should not have date in the sidebar", async () => {
// FIXME: mock timezone not working
mockDate("2024-03-26 10:00:00", 0);
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "Channel 1" });
pyEnv["mail.message"].create([
{
body: "Hello world 1",
model: "discuss.channel",
res_id: channelId,
},
{
body: "Hello world 2",
model: "discuss.channel",
res_id: channelId,
},
]);
await start();
await openDiscuss(channelId);
await click(".o-mail-Message.o-squashed");
await contains(".o-mail-Message.o-squashed .o-mail-Message-sidebar", {
text: "11:00", // FIXME: should be 10:00
});
await insertText(".o-mail-Composer-input", "/who");
await click(".o-mail-Composer button[title='Send']:enabled");
await contains(".o-mail-Message", { text: "You are alone in this channel." });
await insertText(".o-mail-Composer-input", "/who");
await click(".o-mail-Composer button[title='Send']:enabled");
await click(":nth-child(2 of .o-mail-Message.o-squashed");
await tick();
await contains(":nth-child(2 of .o-mail-Message.o-squashed) .o-mail-Message-sidebar", {
text: "11:00", // FIXME: should be 10:00
count: 0,
});
});
test("message comment of same author within 5min. should be squashed", async () => {
mockDate("2024-03-26 10:00:00", 0);
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "general" });
const partnerId = pyEnv["res.partner"].create({ name: "Demo" });
pyEnv["mail.message"].create([
{
author_id: partnerId,
body: "<p>body1</p>",
date: "2019-04-20 10:00:00",
message_type: "comment",
model: "discuss.channel",
res_id: channelId,
},
{
author_id: partnerId,
body: "<p>body2</p>",
date: "2019-04-20 10:02:30",
message_type: "comment",
model: "discuss.channel",
res_id: channelId,
},
]);
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message", { count: 2 });
await contains(".o-mail-Message", {
contains: [
[".o-mail-Message-content", { text: "body1" }],
[".o-mail-Message-header"],
[".o-mail-Message-sidebar", { contains: [".o-mail-Message-date", { count: 0 }] }],
],
});
await contains(".o-mail-Message", {
contains: [
[".o-mail-Message-content", { text: "body2" }],
[".o-mail-Message-header", { count: 0 }],
[".o-mail-Message-sidebar", { contains: [".o-mail-Message-date", { count: 0 }] }],
],
});
await click(".o-mail-Message", { text: "body2" });
await contains(".o-mail-Message", {
contains: [
[".o-mail-Message-content", { text: "body2" }],
[".o-mail-Message-sidebar .o-mail-Message-date", { text: "10:02 AM" }],
],
});
});
test("open author avatar card", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({
name: "Demo",
email: "demo@example.com",
phone: "+5646548",
});
pyEnv["res.users"].create({
partner_id: partnerId,
name: "Demo",
});
window.pyEnv = pyEnv;
const [channelId_1] = pyEnv["discuss.channel"].create([
{ name: "General" },
{
channel_member_ids: [
Command.create({ partner_id: serverState.partnerId }),
Command.create({ partner_id: partnerId }),
],
channel_type: "chat",
},
]);
pyEnv["mail.message"].create({
author_id: partnerId,
body: "not empty",
model: "discuss.channel",
res_id: channelId_1,
});
await start();
await openDiscuss(channelId_1);
await contains(".o-mail-DiscussSidebarChannel.o-active", { text: "General" });
await contains(".o-mail-DiscussContent .o-mail-Message-avatarContainer img");
await click(".o-mail-DiscussContent .o-mail-Message-avatarContainer img");
await contains(".o_avatar_card");
await contains(".o_card_user_infos > span", { text: "Demo" });
await contains(".o_card_user_infos > a", { text: "demo@example.com" });
await contains(".o_card_user_infos > a", { text: "+5646548" });
});
test("toggle_star message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "general" });
const messageId = pyEnv["mail.message"].create({
body: "not empty",
model: "discuss.channel",
res_id: channelId,
});
onRpc("mail.message", "toggle_message_starred", ({ args }) => {
asyncStep("rpc:toggle_message_starred");
expect(args[0][0]).toBe(messageId);
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
await contains(".o-mail-Message [title='Add Star']");
await contains(".o-mail-Message [title='Add Star']" + " i.fa-star-o");
await contains("button", { text: "Starred messages", contains: [".badge", { count: 0 }] });
await click(".o-mail-Message [title='Add Star']");
await contains("button", { text: "Starred messages", contains: [".badge", { text: "1" }] });
await waitForSteps(["rpc:toggle_message_starred"]);
await contains(".o-mail-Message");
await contains(".o-mail-Message [title='Remove Star']" + " i.fa-star");
await click(".o-mail-Message [title='Remove Star']");
await contains("button", { text: "Starred messages", contains: [".badge", { count: 0 }] });
await waitForSteps(["rpc:toggle_message_starred"]);
await contains(".o-mail-Message");
await contains(".o-mail-Message [title='Add Star']" + " i.fa-star-o");
});
test("can star a persistent message without thread", async () => {
const pyEnv = await startServer();
const messageId = pyEnv["mail.message"].create({
body: "Test",
message_type: "user_notification",
needaction: true,
});
pyEnv["mail.notification"].create({
mail_message_id: messageId,
notification_status: "sent",
notification_type: "inbox",
res_partner_id: serverState.partnerId,
});
await start();
await openDiscuss("mail.box_inbox");
await contains(".o-mail-Message:not([data-starred]):contains('Test')");
await click(".o-mail-Message:contains('Test') [title='Add Star']");
await contains(".o-mail-Message[data-starred]:contains('Test')");
});
test("Name of message author is only displayed in chat window for partners others than the current user", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ channel_type: "channel" });
const partnerId = pyEnv["res.partner"].create({ name: "Not the current user" });
pyEnv["mail.message"].create([
{
body: "not empty",
model: "discuss.channel",
res_id: channelId,
},
{
author_id: partnerId,
body: "not empty",
model: "discuss.channel",
res_id: channelId,
},
]);
await start();
await click(".o_menu_systray i[aria-label='Messages']");
await click(".o-mail-NotificationItem");
await contains(".o-mail-Message-author", { text: "Not the current user" });
});
test("Name of message author is not displayed in chat window for channel of type chat", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ channel_type: "chat" });
const partnerId = pyEnv["res.partner"].create({ name: "A" });
pyEnv["mail.message"].create([
{
body: "not empty",
model: "discuss.channel",
res_id: channelId,
},
{
author_id: partnerId,
body: "not empty",
model: "discuss.channel",
res_id: channelId,
},
]);
await start();
await click(".o_menu_systray i[aria-label='Messages']");
await click(".o-mail-NotificationItem");
await contains(".o-mail-Message-author", { count: 0 });
});
test("click on message edit button should open edit composer", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
pyEnv["mail.message"].create({
body: "not empty",
message_type: "comment",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message .o-mail-Composer");
});
test("Notification Sent", async () => {
const pyEnv = await startServer();
const [threadId, partnerId] = pyEnv["res.partner"].create([
{},
{ name: "Someone", partner_share: true },
]);
const messageId = pyEnv["mail.message"].create({
body: "not empty",
message_type: "email",
model: "res.partner",
res_id: threadId,
});
pyEnv["mail.notification"].create({
mail_message_id: messageId,
notification_status: "sent",
notification_type: "email",
res_partner_id: partnerId,
});
await start();
await openFormView("res.partner", threadId);
await contains(".o-mail-Message");
await contains(".o-mail-Message-notification");
await contains(".o-mail-Message-notification i");
expect(".o-mail-Message-notification i:first").toHaveClass("fa-envelope-o");
await click(".o-mail-Message-notification");
await contains(".o-mail-MessageNotificationPopover");
await contains(".o-mail-MessageNotificationPopover i");
expect(".o-mail-MessageNotificationPopover i:first").toHaveClass("fa-check");
await contains(".o-mail-MessageNotificationPopover", { text: "Someone" });
});
test("Notification Error", async () => {
const pyEnv = await startServer();
const [threadId, partnerId] = pyEnv["res.partner"].create([
{},
{ name: "Someone", partner_share: true },
]);
const messageId = pyEnv["mail.message"].create({
body: "not empty",
message_type: "email",
model: "res.partner",
res_id: threadId,
});
pyEnv["mail.notification"].create({
mail_message_id: messageId,
notification_status: "exception",
notification_type: "email",
res_partner_id: partnerId,
});
await start();
await openFormView("res.partner", threadId);
await contains(".o-mail-Message");
await contains(".o-mail-Message-notification");
await contains(".o-mail-Message-notification i");
expect(".o-mail-Message-notification i:first").toHaveClass("fa-envelope");
await click(".o-mail-Message-notification").then(() => {});
await contains(".o-mail-MessageNotificationPopover");
expect(".o-mail-MessageNotificationPopover i.fa-times.text-danger").toHaveCount(1);
});
test('Quick edit (edit from Composer with ArrowUp) ignores empty ("deleted") messages.', async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "not empty",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "", // empty body
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message", { count: 2 }); // shows "This message has been removed" too
triggerHotkey("ArrowUp");
await contains(".o-mail-Message.o-editing");
await contains(".o-mail-Message .o-mail-Composer-input", { value: "not empty" });
});
test("Editing a message to clear its composer opens message delete dialog.", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "not empty",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await insertText(".o-mail-Message.o-editing .o-mail-Composer-input", "", { replace: true });
triggerHotkey("Enter");
await contains(".o-mail-Message", { text: "not empty" });
await contains(".modal-body p", {
text: "Are you sure you want to bid farewell to this message forever?",
});
});
test("Clear message body should not open message delete dialog if it has attachments", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "not empty",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
attachment_ids: [
pyEnv["ir.attachment"].create({ name: "test.txt", mimetype: "text/plain" }),
],
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await insertText(".o-mail-Message.o-editing .o-mail-Composer-input", "", { replace: true });
triggerHotkey("Enter");
await contains(".o-mail-Message-textContent", { text: "" });
// weak test, no guarantee that we waited long enough for the potential dialog to show
await contains(".modal-body p", {
text: "Are you sure you want to bid farewell to this message forever?",
count: 0,
});
});
test("highlight the message mentioning the current user inside the channel", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({ display_name: "Test Partner" });
pyEnv["res.users"].create({ partner_id: partnerId });
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "General",
});
pyEnv["mail.message"].create({
author_id: partnerId,
body: "hello @Admin",
model: "discuss.channel",
partner_ids: [serverState.partnerId],
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message-bubble.o-orange");
});
test("not highlighting the message if not mentioning the current user inside the channel", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({
display_name: "testPartner",
email: "testPartner@odoo.com",
});
pyEnv["res.users"].create({ partner_id: partnerId });
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "General",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "hello @testPartner",
model: "discuss.channel",
partner_ids: [partnerId],
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message-bubble:not(.o-orange)");
});
test("allow attachment delete on authored message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "test" });
pyEnv["mail.message"].create({
attachment_ids: [
Command.create({
mimetype: "image/jpeg",
name: "BLAH",
res_id: channelId,
res_model: "discuss.channel",
}),
],
author_id: serverState.partnerId,
body: "<p>Test</p>",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-AttachmentImage");
await click("button[title='Remove']");
await contains(".modal-dialog .modal-body", { text: 'Do you really want to delete "BLAH"?' });
await click(".modal-footer .btn-primary");
await contains(".o-mail-AttachmentImage", { count: 0 });
});
test("prevent attachment delete on non-authored message in channels", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({});
const channelId = pyEnv["discuss.channel"].create({ name: "test" });
pyEnv["mail.message"].create({
attachment_ids: [
Command.create({
mimetype: "image/jpeg",
name: "BLAH",
res_id: channelId,
res_model: "discuss.channel",
}),
],
author_id: partnerId,
body: "<p>Test</p>",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-AttachmentImage");
await contains(".o-mail-AttachmentImage div[title='Remove']", { count: 0 });
});
test("Toggle star should update starred counter on all tabs", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "Hello world",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
const env1 = await start({ asTab: true });
const env2 = await start({ asTab: true });
await openDiscuss(channelId, { target: env1 });
await openDiscuss(undefined, { target: env2 });
await click(`${env1.selector} .o-mail-Message [title='Add Star']`);
await contains(`${env2.selector} button`, {
text: "Starred messages",
contains: [".badge", { text: "1" }],
});
});
test("allow attachment image download on message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "test" });
const attachmentId = pyEnv["ir.attachment"].create({
name: "Blah.jpg",
mimetype: "image/jpeg",
});
pyEnv["mail.message"].create({
attachment_ids: [attachmentId],
body: "<p>Test</p>",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-AttachmentImage");
await contains("button[title='Download']");
});
test("Can download all files of a message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "test" });
const [attachmentId_1, attachmentId_2, attachmentId_3] = pyEnv["ir.attachment"].create([
{ name: "test.png", mimetype: "image/png" },
{ name: "Blah.png", mimetype: "image/png" },
{ name: "shut.png", mimetype: "image/png" },
]);
pyEnv["mail.message"].create([
{
attachment_ids: [attachmentId_1, attachmentId_2],
body: "<p>Test</p>",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
},
{
attachment_ids: [attachmentId_3],
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
},
]);
await start();
await openDiscuss(channelId);
await click(":nth-child(1 of .o-mail-Message) [title='Expand']");
await contains(".o-dropdown-item:contains('Download Files')");
await click(":nth-child(2 of .o-mail-Message) [title='Expand']");
await contains(".o-dropdown-item:contains('Download Files')", { count: 0 });
});
test("Can remove files of message individually", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "test" });
const [attachmentId_1, attachmentId_2, attachmentId_3, attachmentId_4] = pyEnv[
"ir.attachment"
].create([
{ name: "attachment1.txt", mimetype: "text/plain" },
{ name: "attachment2.txt", mimetype: "text/plain" },
{ name: "attachment3.txt", mimetype: "text/plain" },
{ name: "attachment4.txt", mimetype: "text/plain" },
]);
pyEnv["mail.message"].create([
{
attachment_ids: [attachmentId_1, attachmentId_2],
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
},
{
attachment_ids: [attachmentId_3],
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
},
{
attachment_ids: [attachmentId_4],
body: "<p>Test</p>",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
},
]);
await start();
await openDiscuss(channelId);
await contains(
":nth-child(1 of .o-mail-Message) :nth-child(1 of .o-mail-AttachmentContainer) [title='Remove']"
);
await contains(
":nth-child(1 of .o-mail-Message) :nth-child(2 of .o-mail-AttachmentContainer) [title='Remove']"
);
await contains(
":nth-child(2 of .o-mail-Message) .o-mail-AttachmentContainer [title='Remove']",
{ count: 0 }
);
await contains(":nth-child(3 of .o-mail-Message) .o-mail-AttachmentContainer [title='Remove']");
});
test("avatar card from author should be opened after clicking on their avatar", async () => {
const pyEnv = await startServer();
const [partnerId_1, partnerId_2] = pyEnv["res.partner"].create([
{ name: "Partner_1" },
{ name: "Partner_2", email: "partner2@mail.com", phone: "+15968415" },
]);
pyEnv["res.users"].create({
partner_id: partnerId_2,
name: "Partner_2",
});
pyEnv["mail.message"].create({
author_id: partnerId_2,
body: "not empty",
model: "res.partner",
res_id: partnerId_1,
});
await start();
await openFormView("res.partner", partnerId_1);
await contains(".o-mail-Message-avatar");
expect(".o-mail-Message-avatarContainer:first").toHaveClass("cursor-pointer");
await click(".o-mail-Message-avatar");
await contains(".o_avatar_card");
await contains(".o_card_user_infos > span", { text: "Partner_2" });
await contains(".o_card_user_infos > a", { text: "partner2@mail.com" });
await contains(".o_card_user_infos > a", { text: "+15968415" });
});
test("avatar card from author should be opened after clicking on their name", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({
name: "Demo",
email: "demo@example.com",
phone: "+5646548",
});
pyEnv["res.users"].create({
partner_id: partnerId,
name: "Demo",
});
pyEnv["mail.message"].create({
author_id: partnerId,
body: "not empty",
model: "res.partner",
res_id: partnerId,
});
await start();
await openFormView("res.partner", partnerId);
await click(".o-mail-Message-author", { text: "Demo" });
await contains(".o_avatar_card");
await contains(".o_card_user_infos > span", { text: "Demo" });
await contains(".o_card_user_infos > a", { text: "demo@example.com" });
await contains(".o_card_user_infos > a", { text: "+5646548" });
});
test("subtype description should be displayed if it is different than body", async () => {
const pyEnv = await startServer();
const threadId = pyEnv["res.partner"].create({});
const subtypeId = pyEnv["mail.message.subtype"].create({ description: "Bonjour" });
pyEnv["mail.message"].create({
body: "<p>Hello</p>",
model: "res.partner",
res_id: threadId,
subtype_id: subtypeId,
});
await start();
await openFormView("res.partner", threadId);
await contains(".o-mail-Message-body", { text: "HelloBonjour" });
});
test("subtype description should not be displayed if it is similar to body", async () => {
const pyEnv = await startServer();
const threadId = pyEnv["res.partner"].create({});
const subtypeId = pyEnv["mail.message.subtype"].create({ description: "hello" });
pyEnv["mail.message"].create({
body: "<p>Hello</p>",
model: "res.partner",
res_id: threadId,
subtype_id: subtypeId,
});
await start();
await openFormView("res.partner", threadId);
await contains(".o-mail-Message-body", { text: "Hello" });
});
test("data-oe-id & data-oe-model link redirection on click", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({});
pyEnv["mail.message"].create({
body: '<p><a href="#" data-oe-id="250" data-oe-model="some.model">some.model_250</a></p>',
model: "res.partner",
res_id: partnerId,
});
mockService("action", {
doAction(action) {
if (action?.res_model === "res.partner") {
return super.doAction(...arguments);
}
expect(action.type).toBe("ir.actions.act_window");
expect(action.res_model).toBe("some.model");
expect(action.res_id).toBe(250);
asyncStep("do-action:openFormView_some.model_250");
},
});
await start();
await openFormView("res.partner", partnerId);
await click(".o-mail-Message-body a");
await waitForSteps(["do-action:openFormView_some.model_250"]);
});
test("Partner's avatar card should be opened after clicking on their mention", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({
name: "Test Partner",
email: "testpartner@odoo.com",
});
pyEnv["res.users"].create({ partner_id: partnerId });
await start();
await openFormView("res.partner", partnerId);
await click("button", { text: "Send message" });
await insertText(".o-mail-Composer-input", "@Te");
await click(".o-mail-Composer-suggestion strong", { text: "Test Partner" });
await contains(".o-mail-Composer-input", { value: "@Test Partner " });
await click(".o-mail-Composer-send:enabled");
await click(".o_mail_redirect");
await contains(".o_avatar_card:contains('Test Partner')");
});
test("Channel should be opened after clicking on its mention", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({});
pyEnv["discuss.channel"].create({ name: "my-channel" });
await start();
await openFormView("res.partner", partnerId);
await click("button", { text: "Send message" });
await insertText(".o-mail-Composer-input", "#");
await click(".o-mail-Composer-suggestion strong", { text: "my-channel" });
await click(".o-mail-Composer-send:enabled");
await click(".o_channel_redirect");
await contains(".o-mail-ChatWindow .o-mail-Thread");
await contains(".o-mail-ChatWindow", { text: "my-channel" });
});
test("delete all attachments of message without content should mark message as deleted", async () => {
const pyEnv = await startServer();
const attachmentId = pyEnv["ir.attachment"].create({
mimetype: "text/plain",
name: "Blah.txt",
});
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
pyEnv["mail.message"].create({
attachment_ids: [attachmentId],
message_type: "comment",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Delete')");
await click(".modal button", { text: "Delete" });
await contains(".o-mail-Message", { text: "This message has been removed" });
});
test("delete all attachments of a message with some text content should still keep it displayed", async () => {
const pyEnv = await startServer();
const attachmentId = pyEnv["ir.attachment"].create({
mimetype: "text/plain",
name: "Blah.txt",
});
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
pyEnv["mail.message"].create({
attachment_ids: [attachmentId],
body: "Some content",
message_type: "comment",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
await click(".o-mail-AttachmentContainer button[title='Remove']");
await click(".modal button", { text: "Ok" });
await contains(".o-mail-Message");
});
test("message with subtype should be displayed (and not considered as empty)", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
const subtypeId = pyEnv["mail.message.subtype"].create({ description: "Task created" });
pyEnv["mail.message"].create({
model: "discuss.channel",
res_id: channelId,
subtype_id: subtypeId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message-content", { text: "Task created" });
});
test("message considered deleted", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
pyEnv["mail.message"].create([
{
model: "discuss.channel",
res_id: channelId,
},
{
body: "",
model: "discuss.channel",
res_id: channelId,
},
{
body: "<p></p>",
model: "discuss.channel",
res_id: channelId,
},
{
body: "<p><br/></p>",
model: "discuss.channel",
res_id: channelId,
},
{
body: "<p><br></p>",
model: "discuss.channel",
res_id: channelId,
},
{
body: "<p>\n</p>",
model: "discuss.channel",
res_id: channelId,
},
{
body: "<p>\r\n\r\n</p>",
model: "discuss.channel",
res_id: channelId,
},
{
body: "<p> </p> ",
model: "discuss.channel",
res_id: channelId,
},
{
body: '<span class="o-mail-Message-edited"></span>',
model: "discuss.channel",
res_id: channelId,
},
]);
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message", { count: 9 });
await contains(".o-mail-Message", { count: 9, text: "This message has been removed" });
});
test("message with html not to be considered empty", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
pyEnv["mail.message"].create({
body: "<img src=''>",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
});
test("message with body 'test' should not be considered empty", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
pyEnv["mail.message"].create({
body: "test",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
});
test("Can reply to chatter messages from history", async () => {
const pyEnv = await startServer();
const messageId = pyEnv["mail.message"].create({
body: "Hello World!",
message_type: "comment",
model: "res.partner",
res_id: serverState.partnerId,
});
pyEnv["mail.notification"].create({
mail_message_id: messageId,
notification_type: "inbox",
is_read: true,
res_partner_id: serverState.partnerId,
});
await start();
await openDiscuss("mail.box_history");
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Reply')");
await click(".o-mail-Composer button[title='More Actions']");
await contains(".dropdown-item:contains('Open Full Composer')");
});
test("Can't reply to user notifications", async () => {
// User notifications are specific to a user
const pyEnv = await startServer();
const messageId = pyEnv["mail.message"].create({
body: "Dear Mitchell Admin, you have received a new rank",
message_type: "user_notification",
model: "res.partner",
});
pyEnv["mail.notification"].create({
mail_message_id: messageId,
notification_type: "inbox",
is_read: true,
res_partner_id: serverState.partnerId,
});
await start();
await openDiscuss("mail.box_history");
await contains(".o-mail-Message-actions");
await contains(".o-mail-Message-actions [title='Reply']", { count: 0 });
});
test("Mark as unread", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "chat",
name: "General",
});
const messageId = pyEnv["mail.message"].create({
model: "discuss.channel",
res_id: channelId,
body: "Hello World!",
});
const [memberId] = pyEnv["discuss.channel.member"].search([
["channel_id", "=", channelId],
["partner_id", "=", serverState.partnerId],
]);
pyEnv["discuss.channel.member"].write([memberId], {
seen_message_id: messageId,
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Mark as Unread')");
await contains(".o-mail-Thread-newMessage");
await contains(".o-mail-DiscussSidebarChannel .badge", { text: "1" });
});
test("Avatar of unknown author for email message", async () => {
const pyEnv = await startServer();
pyEnv["mail.message"].create({
body: "<p>Want to know features and benefits of using the new software.</p>",
email_from: "md@oilcompany.fr",
message_type: "email",
subject: "Need Details",
model: "res.partner",
res_id: serverState.partnerId,
author_id: null,
});
await start();
await openFormView("res.partner", serverState.partnerId);
await contains(".o-mail-Message-avatar[data-src*='mail/static/src/img/email_icon.png']");
});
test("Show email_from of message without author for email message", async () => {
const pyEnv = await startServer();
pyEnv["mail.message"].create({
author_id: null,
body: "<p>Want to know features and benefits of using the new software.</p>",
email_from: "md@oilcompany.fr",
message_type: "email",
subject: "Need Details",
model: "res.partner",
res_id: serverState.partnerId,
});
await start();
await openFormView("res.partner", serverState.partnerId);
await contains(".o-mail-Message-author", { text: "md@oilcompany.fr" });
});
test("Avatar of unknown author for not email message", async () => {
const pyEnv = await startServer();
pyEnv["mail.message"].create({
body: "<p>Want to know features and benefits of using the new software.</p>",
email_from: "md@oilcompany.fr",
message_type: "comment",
subject: "Need Details",
model: "res.partner",
res_id: serverState.partnerId,
author_id: null,
});
await start();
await openFormView("res.partner", serverState.partnerId);
await contains(".o-mail-Message-avatar[data-src*='/mail/static/src/img/smiley/avatar.jpg']");
});
test("Show email_from of message without author for not email message", async () => {
const pyEnv = await startServer();
pyEnv["mail.message"].create({
author_id: null,
body: "<p>Want to know features and benefits of using the new software.</p>",
email_from: "md@oilcompany.fr",
message_type: "comment",
subject: "Need Details",
model: "res.partner",
res_id: serverState.partnerId,
});
await start();
await openFormView("res.partner", serverState.partnerId);
await contains(".o-mail-Message-author", { text: "md@oilcompany.fr" });
});
test("Message should display attachments in order", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "not empty",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
attachment_ids: [
pyEnv["ir.attachment"].create({ name: "A.txt", mimetype: "text/plain" }),
pyEnv["ir.attachment"].create({ name: "B.txt", mimetype: "text/plain" }),
pyEnv["ir.attachment"].create({ name: "C.txt", mimetype: "text/plain" }),
],
});
await start();
await openDiscuss(channelId);
await contains(":nth-child(1 of .o-mail-AttachmentContainer)", { text: "A.txt" });
await contains(":nth-child(2 of .o-mail-AttachmentContainer)", { text: "B.txt" });
await contains(":nth-child(3 of .o-mail-AttachmentContainer)", { text: "C.txt" });
});
test("Can edit a message only containing an attachment", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
name: "general",
channel_type: "channel",
});
const attachmentId = pyEnv["ir.attachment"].create({
name: "Blah.jpg",
mimetype: "image/jpeg",
});
pyEnv["mail.message"].create({
attachment_ids: [attachmentId],
author_id: serverState.partnerId,
body: "",
model: "discuss.channel",
res_id: channelId,
message_type: "comment",
});
await start();
await openDiscuss(channelId);
await click(".o-mail-Message [title='Edit']");
await contains(".o-mail-Message.o-editing .o-mail-Composer-input");
});
test("Click on view reactions shows the reactions on the message", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await click("[title='Add a Reaction']");
await click(".o-mail-QuickReactionMenu button", { text: "😅" });
await contains(".o-mail-MessageReaction", { text: "😅1" });
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('View Reactions')");
await contains(".o-mail-MessageReactionMenu", { text: "😅1" });
});
test("Reactions are ordered by id", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
pyEnv["mail.message"].create({
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
reaction_ids: [
pyEnv["mail.message.reaction"].create({
content: "🔰",
partner_id: serverState.partnerId,
}),
pyEnv["mail.message.reaction"].create({
content: "🔢",
partner_id: serverState.partnerId,
}),
],
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-MessageReaction:eq(0)", { text: "🔰" });
await contains(".o-mail-MessageReaction:eq(1)", { text: "🔢" });
});
test("discuss - bigger font size when there is only emoji", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({
channel_type: "channel",
name: "channel1",
});
await start();
await openDiscuss(channelId);
await insertText(".o-mail-Composer-input", "🥳");
await press("Enter");
await contains(".o-mail-Message-body", { text: "🥳" });
await insertText(".o-mail-Composer-input", "not only emoji!! 😅");
await press("Enter");
await contains(".o-mail-Message-body", { text: "not only emoji!! 😅" });
const [emojiMessage, textMessage] = document.querySelectorAll(".o-mail-Message-body");
expect(
parseFloat(getComputedStyle(emojiMessage).getPropertyValue("font-size"))
).toBeGreaterThan(parseFloat(getComputedStyle(textMessage).getPropertyValue("font-size")));
});
test("chatter - font size unchanged when there is only emoji", async () => {
await startServer();
await start();
await openFormView("res.partner", serverState.partnerId);
await click(".o-mail-Chatter-sendMessage");
await insertText(".o-mail-Composer-input", "🥳");
await click(".o-mail-Composer-send:enabled");
await contains(".o-mail-Message-body", { text: "🥳" });
await click(".o-mail-Chatter-sendMessage");
await insertText(".o-mail-Composer-input", "not only emoji!! 😅");
await click(".o-mail-Composer-send:enabled");
await contains(".o-mail-Message-body", { text: "not only emoji!! 😅" });
const [emojiMessage, textMessage] = document.querySelectorAll(".o-mail-Message-body");
expect(parseFloat(getComputedStyle(emojiMessage).getPropertyValue("font-size"))).toBe(
parseFloat(getComputedStyle(textMessage).getPropertyValue("font-size"))
);
});
test("Copy Message Link", async () => {
patchWithCleanup(browser.navigator.clipboard, {
writeText(text) {
asyncStep(text);
super.writeText(text);
},
});
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "channel1" });
const [, messageId_2] = pyEnv["mail.message"].create([
{
body: "Message without type",
res_id: channelId,
model: "discuss.channel",
},
{
body: "Hello world",
res_id: channelId,
message_type: "comment",
model: "discuss.channel",
},
]);
await start();
await openDiscuss(channelId);
await click(".o-mail-Message:eq(0) [title='Expand']");
await contains(".o-dropdown-item:contains('Copy Link'_", { count: 0 });
await click(".o-mail-Message:eq(1) [title='Expand']");
await click(".o-dropdown-item:contains('Copy Link')");
await waitForSteps([url(`/mail/message/${messageId_2}`)]);
await press(["ctrl", "v"]);
await press("Enter");
await contains(`.o-mail-Message a[href='${url(`/mail/message/${messageId_2}`)}']`, {
text: "channel1",
});
});
test("deleted message should not have translate feature", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({ name: "Demo" });
pyEnv["mail.message"].create({
author_id: serverState.partnerId,
body: "not empty",
message_type: "comment",
model: "res.partner",
res_id: partnerId,
});
await start();
await openFormView("res.partner", partnerId);
await contains(".o-mail-Message:contains('not empty')");
await click(".o-mail-Message [title='Expand']");
await contains(".dropdown-menu");
await contains(".dropdown-item:contains('Translate')");
await click(".dropdown-item:contains('Delete')");
await click(".modal button:contains('Delete')");
await contains(".o-mail-Message:contains('This message has been removed')");
await contains(".o-mail-Message [title='Add a Reaction']");
await contains(".o-mail-Message [title='Add Star']");
await contains(".o-mail-Message [title*='Translate']", { count: 0 });
await animationFrame(); // in case some extra rendering for expand
if (queryFirst(".o-mail-Message [title='Expand']")) {
// Translate could hide itself in 'Expand' menu
await click(".o-mail-Message [title='Expand']");
await contains(".dropdown-menu");
await animationFrame(); // in case some rendering
await contains(".dropdown-item:contains('Translate')", { count: 0 });
}
});
test("display the notification message's posting date and time", async () => {
mockDate("2025-01-01 12:00:00", +1);
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "Hogwarts" });
const partnerId = pyEnv["res.partner"].create({ name: "Tom Riddle" });
const userId = pyEnv["res.users"].create({
name: "Harry Potter",
partner_id: partnerId,
});
await start();
await openDiscuss(channelId);
await withUser(userId, () => {
getService("orm").call("discuss.channel", "add_members", [[channelId]], {
partner_ids: [partnerId],
});
});
await contains(".o-mail-NotificationMessage", {
text: "Tom Riddle joined the channel1:00 PM",
});
});
test("Pause GIF when thread is not focused", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "General" });
const attachmentId = pyEnv["ir.attachment"].create({
mimetype: "image/gif",
name: "foo.gif",
type: "binary",
res_id: channelId,
res_model: "discuss.channel",
});
pyEnv["mail.message"].create({
attachment_ids: [attachmentId],
message_type: "comment",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-Message");
await focus(".o-mail-Thread");
await contains(".o-mail-AttachmentImage:not([data-paused])");
queryFirst(".o-mail-Thread").blur();
await contains(".o-mail-AttachmentImage[data-paused]");
await focus(".o-mail-Thread");
await contains(".o-mail-AttachmentImage:not([data-paused])");
});
test("Prettify message links", async () => {
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "channel1" });
const partnerId = pyEnv["res.partner"].create({
email: "testpartner@odoo.com",
name: "TestPartner",
});
const messageId_1 = pyEnv["mail.message"].create({
body: "Message on partner",
res_id: partnerId,
model: "res.partner",
});
await start();
await openDiscuss(channelId);
await insertText(
".o-mail-Composer-input",
`${url(`/mail/message/${messageId_1}`)} ${url(`/mail/message/100`)}`
);
await press("Enter");
await contains(".o-mail-Message", { text: "TestPartner" });
await contains(".o-mail-Message .fa.fa-comment");
await contains(".o-mail-Message", { text: url(`/mail/message/100`) });
});
test("Clicking message link does not open a new tab", async () => {
patchWithCleanup(window, {
open() {
expect.step("new_window");
super.open();
},
});
const pyEnv = await startServer();
const channelId = pyEnv["discuss.channel"].create({ name: "Channel" });
const otherChannelId = pyEnv["discuss.channel"].create({ name: "Other Channel" });
const messageId = pyEnv["mail.message"].create({
body: "Message on other channel",
res_id: otherChannelId,
model: "discuss.channel",
});
await start();
await openDiscuss(channelId);
await insertText(".o-mail-Composer-input", `${url(`/mail/message/${messageId}`)}`);
await press("Enter");
await click(".o_message_redirect");
await contains(".o-mail-DiscussContent-threadName[title='Other Channel']");
await contains(".o-mail-Message", { text: "Message on other channel" });
expect.verifySteps([]);
});
test("should delete link preview along with message", async () => {
const pyEnv = await startServer();
const linkPreviewId = pyEnv["mail.link.preview"].create({
og_title: "Test Link",
og_description: "Should be removed with the message.",
og_type: "article",
source_url: "https://www.odoo.com",
});
const channelId = pyEnv["discuss.channel"].create({ name: "PreviewTest" });
pyEnv["mail.message"].create({
body: "<a href='https://www.odoo.com'>https://www.odoo.com</a>",
message_link_preview_ids: [Command.create({ link_preview_id: linkPreviewId })],
message_type: "comment",
model: "discuss.channel",
res_id: channelId,
});
await start();
await openDiscuss(channelId);
await contains(".o-mail-LinkPreviewCard");
await click(".o-mail-Message [title='Expand']");
await click(".o-dropdown-item:contains('Delete')");
await click(".modal button", { text: "Delete" });
await contains(".o-mail-LinkPreviewCard", { count: 0 });
});