57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
import { describe, expect, test } from "@odoo/hoot";
|
|
import {
|
|
assertSteps,
|
|
click,
|
|
contains,
|
|
start,
|
|
startServer,
|
|
step,
|
|
} from "@mail/../tests/mail_test_helpers";
|
|
import { mockService, serverState } from "@web/../tests/web_test_helpers";
|
|
import { defineKnowledgeModels } from "@knowledge/../tests/knowledge_test_helpers";
|
|
|
|
describe.current.tags("desktop");
|
|
defineKnowledgeModels();
|
|
|
|
test("Expand article.thread opens linked article", async () => {
|
|
const pyEnv = await startServer();
|
|
const articleId = pyEnv["knowledge.article"].create({
|
|
name: "Thread tests",
|
|
body: `
|
|
<h1>Thread tests</h1>
|
|
<p>Hello World</p>
|
|
`,
|
|
});
|
|
const thread = pyEnv["knowledge.article.thread"].create({
|
|
article_id: articleId,
|
|
});
|
|
const messageThreadNotif = pyEnv["mail.message"].create({
|
|
author_id: serverState.partnerId,
|
|
body: "Howdy Neighbor",
|
|
needaction: true,
|
|
model: "knowledge.article.thread",
|
|
res_id: thread,
|
|
});
|
|
pyEnv["mail.notification"].create({
|
|
mail_message_id: messageThreadNotif,
|
|
notification_status: "sent",
|
|
notification_type: "inbox",
|
|
res_partner_id: serverState.partnerId,
|
|
});
|
|
mockService("action", {
|
|
doAction(action, params) {
|
|
expect(Boolean(params?.additionalContext?.res_id)).toBe(true);
|
|
expect(action).toBe("knowledge.ir_actions_server_knowledge_home_page");
|
|
step("knowledge_action_called");
|
|
},
|
|
});
|
|
await start();
|
|
await click(".o-mail-DiscussSystray-class .fa-comments");
|
|
await click(".o-mail-NotificationItem");
|
|
await contains(".o-mail-ChatWindow");
|
|
await click("[title='Open Actions Menu']");
|
|
await click(".o-dropdown-item", { text: "Open Form View" });
|
|
await assertSteps(["knowledge_action_called"]);
|
|
await contains(".o-mail-ChatWindow", { count: 0 });
|
|
});
|