224 lines
7.8 KiB
JavaScript
224 lines
7.8 KiB
JavaScript
|
/* @odoo-module */
|
||
|
|
||
|
import { startServer } from "@bus/../tests/helpers/mock_python_environment";
|
||
|
|
||
|
import { start } from "@mail/../tests/helpers/test_utils";
|
||
|
|
||
|
import { editInput, makeDeferred, patchWithCleanup } from "@web/../tests/helpers/utils";
|
||
|
import { click, contains } from "@web/../tests/utils";
|
||
|
|
||
|
QUnit.module("follower");
|
||
|
|
||
|
QUnit.test("base rendering not editable", async () => {
|
||
|
const pyEnv = await startServer();
|
||
|
const [threadId, partnerId] = pyEnv["res.partner"].create([{}, {}]);
|
||
|
pyEnv["mail.followers"].create({
|
||
|
is_active: true,
|
||
|
partner_id: partnerId,
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
});
|
||
|
const { openView } = await start({
|
||
|
async mockRPC(route, args, performRpc) {
|
||
|
if (route === "/mail/thread/data") {
|
||
|
// mimic user without write access
|
||
|
const res = await performRpc(...arguments);
|
||
|
res["hasWriteAccess"] = false;
|
||
|
return res;
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
openView({
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
views: [[false, "form"]],
|
||
|
});
|
||
|
await click(".o-mail-Followers-button");
|
||
|
await contains(".o-mail-Follower");
|
||
|
await contains(".o-mail-Follower-details");
|
||
|
await contains(".o-mail-Follower-avatar");
|
||
|
await contains(".o-mail-Follower-action", { count: 0 });
|
||
|
});
|
||
|
|
||
|
QUnit.test("base rendering editable", async () => {
|
||
|
const pyEnv = await startServer();
|
||
|
const [threadId, partnerId] = pyEnv["res.partner"].create([{}, {}]);
|
||
|
pyEnv["mail.followers"].create({
|
||
|
is_active: true,
|
||
|
partner_id: partnerId,
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
});
|
||
|
const { openView } = await start();
|
||
|
openView({
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
views: [[false, "form"]],
|
||
|
});
|
||
|
await click(".o-mail-Followers-button");
|
||
|
await contains(".o-mail-Follower");
|
||
|
await contains(".o-mail-Follower-details");
|
||
|
await contains(".o-mail-Follower-avatar");
|
||
|
await contains(".o-mail-Follower");
|
||
|
await contains("button[title='Edit subscription']");
|
||
|
await contains("button[title='Remove this follower']");
|
||
|
});
|
||
|
|
||
|
QUnit.test("click on partner follower details", async (assert) => {
|
||
|
const pyEnv = await startServer();
|
||
|
const [threadId, partnerId] = pyEnv["res.partner"].create([{}, {}]);
|
||
|
pyEnv["mail.followers"].create({
|
||
|
is_active: true,
|
||
|
partner_id: partnerId,
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
});
|
||
|
const openFormDef = makeDeferred();
|
||
|
const { env, openView } = await start();
|
||
|
openView({
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
views: [[false, "form"]],
|
||
|
});
|
||
|
patchWithCleanup(env.services.action, {
|
||
|
doAction(action) {
|
||
|
assert.step("do_action");
|
||
|
assert.strictEqual(action.res_id, partnerId);
|
||
|
assert.strictEqual(action.res_model, "res.partner");
|
||
|
assert.strictEqual(action.type, "ir.actions.act_window");
|
||
|
openFormDef.resolve();
|
||
|
},
|
||
|
});
|
||
|
await click(".o-mail-Followers-button");
|
||
|
await contains(".o-mail-Follower");
|
||
|
await contains(".o-mail-Follower-details");
|
||
|
|
||
|
$(".o-mail-Follower-details")[0].click();
|
||
|
await openFormDef;
|
||
|
assert.verifySteps(["do_action"], "redirect to partner profile");
|
||
|
});
|
||
|
|
||
|
QUnit.test("click on edit follower", async (assert) => {
|
||
|
const pyEnv = await startServer();
|
||
|
const [threadId, partnerId] = pyEnv["res.partner"].create([{}, {}]);
|
||
|
pyEnv["mail.followers"].create({
|
||
|
is_active: true,
|
||
|
partner_id: partnerId,
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
});
|
||
|
const { openView } = await start({
|
||
|
async mockRPC(route, args) {
|
||
|
if (route.includes("/mail/read_subscription_data")) {
|
||
|
assert.step("fetch_subtypes");
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
openView({
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
views: [[false, "form"]],
|
||
|
});
|
||
|
await click(".o-mail-Followers-button");
|
||
|
await contains(".o-mail-Follower");
|
||
|
await contains("button[title='Edit subscription']");
|
||
|
|
||
|
await click("button[title='Edit subscription']");
|
||
|
await contains(".o-mail-Follower", { count: 0 });
|
||
|
assert.verifySteps(["fetch_subtypes"]);
|
||
|
await contains(".o-mail-FollowerSubtypeDialog");
|
||
|
});
|
||
|
|
||
|
QUnit.test("edit follower and close subtype dialog", async (assert) => {
|
||
|
const pyEnv = await startServer();
|
||
|
const [threadId, partnerId] = pyEnv["res.partner"].create([{}, {}]);
|
||
|
pyEnv["mail.followers"].create({
|
||
|
is_active: true,
|
||
|
partner_id: partnerId,
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
});
|
||
|
const { openView } = await start({
|
||
|
async mockRPC(route, args) {
|
||
|
if (route.includes("/mail/read_subscription_data")) {
|
||
|
assert.step("fetch_subtypes");
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
openView({
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
views: [[false, "form"]],
|
||
|
});
|
||
|
await click(".o-mail-Followers-button");
|
||
|
await contains(".o-mail-Follower");
|
||
|
await contains("button[title='Edit subscription']");
|
||
|
|
||
|
await click("button[title='Edit subscription']");
|
||
|
await contains(".o-mail-FollowerSubtypeDialog");
|
||
|
assert.verifySteps(["fetch_subtypes"]);
|
||
|
|
||
|
await click(".o-mail-FollowerSubtypeDialog button", { text: "Cancel" });
|
||
|
await contains(".o-mail-FollowerSubtypeDialog", { count: 0 });
|
||
|
});
|
||
|
|
||
|
QUnit.test("remove a follower in a dirty form view", async (assert) => {
|
||
|
const pyEnv = await startServer();
|
||
|
const [threadId, partnerId] = pyEnv["res.partner"].create([{}, {}]);
|
||
|
pyEnv["discuss.channel"].create({ name: "General", display_name: "General" });
|
||
|
pyEnv["mail.followers"].create({
|
||
|
is_active: true,
|
||
|
partner_id: partnerId,
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
});
|
||
|
const views = {
|
||
|
"res.partner,false,form": `
|
||
|
<form>
|
||
|
<field name="name"/>
|
||
|
<field name="channel_ids" widget="many2many_tags"/>
|
||
|
<div class="oe_chatter">
|
||
|
<field name="message_ids"/>
|
||
|
<field name="message_follower_ids"/>
|
||
|
</div>
|
||
|
</form>`,
|
||
|
};
|
||
|
const { openFormView } = await start({ serverData: { views } });
|
||
|
openFormView("res.partner", threadId);
|
||
|
await click(".o_field_many2many_tags[name='channel_ids'] input");
|
||
|
await click(".dropdown-item", { text: "General" });
|
||
|
await contains(".o_tag", { text: "General" });
|
||
|
await contains(".o-mail-Followers-counter", { text: "1" });
|
||
|
await editInput(document.body, ".o_field_char[name=name] input", "some value");
|
||
|
await click(".o-mail-Followers-button");
|
||
|
await click("button[title='Remove this follower']");
|
||
|
await contains(".o-mail-Followers-counter", { text: "0" });
|
||
|
await contains(".o_field_char[name=name] input", { value: "some value" });
|
||
|
await contains(".o_tag", { text: "General" });
|
||
|
});
|
||
|
|
||
|
QUnit.test("removing a follower should reload form view", async function (assert) {
|
||
|
const pyEnv = await startServer();
|
||
|
const [threadId, partnerId] = pyEnv["res.partner"].create([{}, {}]);
|
||
|
pyEnv["mail.followers"].create({
|
||
|
is_active: true,
|
||
|
partner_id: partnerId,
|
||
|
res_id: threadId,
|
||
|
res_model: "res.partner",
|
||
|
});
|
||
|
const { openFormView } = await start({
|
||
|
async mockRPC(route, args) {
|
||
|
if (args.method === "web_read") {
|
||
|
assert.step(`read ${args.args[0][0]}`);
|
||
|
}
|
||
|
},
|
||
|
});
|
||
|
openFormView("res.partner", threadId);
|
||
|
await contains(".o-mail-Followers-button");
|
||
|
assert.verifySteps([`read ${threadId}`]);
|
||
|
await click(".o-mail-Followers-button");
|
||
|
await click("button[title='Remove this follower']");
|
||
|
await contains(".o-mail-Followers-counter", { text: "0" });
|
||
|
assert.verifySteps([`read ${threadId}`]);
|
||
|
});
|