calendar/static/tests/activity_tests.js

68 lines
2.3 KiB
JavaScript
Raw Permalink Normal View History

2024-05-03 12:43:00 +03:00
/* @odoo-module */
import { startServer } from "@bus/../tests/helpers/mock_python_environment";
import { start } from "@mail/../tests/helpers/test_utils";
import { click, contains } from "@web/../tests/utils";
QUnit.test("activity click on Reschedule", async () => {
const pyEnv = await startServer();
const resPartnerId = pyEnv["res.partner"].create({});
const meetingActivityTypeId = pyEnv["mail.activity.type"].create({
icon: "fa-calendar",
name: "Meeting",
});
const calendarAttendeeId = pyEnv["calendar.attendee"].create({
partner_id: resPartnerId,
});
const calendaMeetingId = pyEnv["calendar.event"].create({
res_model: "calendar.event",
name: "meeting1",
start: "2022-07-06 06:30:00",
attendee_ids: [calendarAttendeeId],
});
pyEnv["mail.activity"].create({
name: "Small Meeting",
activity_type_id: meetingActivityTypeId,
can_write: true,
res_id: resPartnerId,
res_model: "res.partner",
calendar_event_id: calendaMeetingId,
});
const { openFormView } = await start();
openFormView("res.partner", resPartnerId);
await click(".btn", { text: "Reschedule" });
await contains(".o_calendar_view");
});
QUnit.test("Can cancel activity linked to an event", async () => {
const pyEnv = await startServer();
const partnerId = pyEnv["res.partner"].create({ name: "Milan Kundera" });
const activityTypeId = pyEnv["mail.activity.type"].create({
icon: "fa-calendar",
name: "Meeting",
});
const attendeeId = pyEnv["calendar.attendee"].create({
partner_id: partnerId,
});
const calendaMeetingId = pyEnv["calendar.event"].create({
res_model: "calendar.event",
name: "meeting1",
start: "2022-07-06 06:30:00",
attendee_ids: [attendeeId],
});
pyEnv["mail.activity"].create({
name: "Small Meeting",
activity_type_id: activityTypeId,
can_write: true,
res_id: partnerId,
res_model: "res.partner",
calendar_event_id: calendaMeetingId,
});
const { openFormView } = await start();
await openFormView("res.partner", partnerId);
await click(".o-mail-Activity .btn", { text: "Cancel" });
await contains(".o-mail-Activity", { count: 0 });
});