odoo.define('crm.form_rainbowman_tests', function (require) { "use strict"; var CrmFormView = require('crm.crm_form').CrmFormView; var CrmKanbanView = require('crm.crm_kanban').CrmKanbanView; var testUtils = require('web.test_utils'); var createView = testUtils.createView; QUnit.module('Crm Rainbowman Triggers', { beforeEach: function () { const format = "YYYY-MM-DD HH:mm:ss"; this.data = { 'res.users': { fields: { display_name: { string: 'Name', type: 'char' }, }, records: [ { id: 1, name: 'Mario' }, { id: 2, name: 'Luigi' }, { id: 3, name: 'Link' }, { id: 4, name: 'Zelda' }, ], }, 'crm.team': { fields: { display_name: { string: 'Name', type: 'char' }, member_ids: { string: 'Members', type: 'many2many', relation: 'res.users' }, }, records: [ { id: 1, name: 'Mushroom Kingdom', member_ids: [1, 2] }, { id: 2, name: 'Hyrule', member_ids: [3, 4] }, ], }, 'crm.stage': { fields: { display_name: { string: 'Name', type: 'char' }, is_won: { string: 'Is won', type: 'boolean' }, }, records: [ { id: 1, name: 'Start' }, { id: 2, name: 'Middle' }, { id: 3, name: 'Won', is_won: true}, ], }, 'crm.lead': { fields: { display_name: { string: 'Name', type: 'char' }, planned_revenue: { string: 'Revenue', type: 'float' }, stage_id: { string: 'Stage', type: 'many2one', relation: 'crm.stage' }, team_id: { string: 'Sales Team', type: 'many2one', relation: 'crm.team' }, user_id: { string: 'Salesperson', type: 'many2one', relation: 'res.users' }, date_closed: { string: 'Date closed', type: 'datetime' }, }, records : [ { id: 1, name: 'Lead 1', planned_revenue: 5.0, stage_id: 1, team_id: 1, user_id: 1 }, { id: 2, name: 'Lead 2', planned_revenue: 5.0, stage_id: 2, team_id: 2, user_id: 4 }, { id: 3, name: 'Lead 3', planned_revenue: 3.0, stage_id: 3, team_id: 1, user_id: 1, date_closed: moment().subtract(5, 'days').format(format) }, { id: 4, name: 'Lead 4', planned_revenue: 4.0, stage_id: 3, team_id: 2, user_id: 4, date_closed: moment().subtract(23, 'days').format(format) }, { id: 5, name: 'Lead 5', planned_revenue: 7.0, stage_id: 3, team_id: 1, user_id: 1, date_closed: moment().subtract(20, 'days').format(format) }, { id: 6, name: 'Lead 6', planned_revenue: 4.0, stage_id: 2, team_id: 1, user_id: 2 }, { id: 7, name: 'Lead 7', planned_revenue: 1.8, stage_id: 3, team_id: 2, user_id: 3, date_closed: moment().subtract(23, 'days').format(format) }, { id: 8, name: 'Lead 8', planned_revenue: 1.9, stage_id: 1, team_id: 2, user_id: 3 }, { id: 9, name: 'Lead 9', planned_revenue: 1.5, stage_id: 3, team_id: 2, user_id: 3, date_closed: moment().subtract(5, 'days').format(format) }, { id: 10, name: 'Lead 10', planned_revenue: 1.7, stage_id: 2, team_id: 2, user_id: 3 }, { id: 11, name: 'Lead 11', planned_revenue: 2.0, stage_id: 3, team_id: 2, user_id: 4, date_closed: moment().subtract(5, 'days').format(format) }, ], }, }; this.testFormView = { arch: `
`, data: this.data, model: 'crm.lead', View: CrmFormView, }; this.testKanbanView = { arch: `
`, data: this.data, model: 'crm.lead', View: CrmKanbanView, groupBy: ['stage_id'], }; }, }, function () { QUnit.test("first lead won, click on statusbar", async function (assert) { assert.expect(2); this.testFormView.res_id = 6; this.testFormView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const form = await createView(this.testFormView); await testUtils.dom.click(form.$(".o_statusbar_status button[data-value='3']")); assert.verifySteps(['Go, go, go! Congrats for your first deal.']); form.destroy(); }); QUnit.test("first lead won, click on statusbar in edit mode then save", async function (assert) { assert.expect(3); const form = await createView(_.extend(this.testFormView, { res_id: 6, mockRPC: async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }, viewOptions: {mode: 'edit'} })); await testUtils.dom.click(form.$(".o_statusbar_status button[data-value='3']")); assert.verifySteps([]); // no message displayed yet await testUtils.form.clickSave(form); assert.verifySteps(['Go, go, go! Congrats for your first deal.']); form.destroy(); }); QUnit.test("team record 30 days, click on statusbar", async function (assert) { assert.expect(2); this.testFormView.res_id = 2; this.testFormView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const form = await createView(this.testFormView); await testUtils.dom.click(form.$(".o_statusbar_status button[data-value='3']")); assert.verifySteps(['Boom! Team record for the past 30 days.']); form.destroy(); }); QUnit.test("team record 7 days, click on statusbar", async function (assert) { assert.expect(2); this.testFormView.res_id = 1; this.testFormView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const form = await createView(this.testFormView); await testUtils.dom.click(form.$(".o_statusbar_status button[data-value='3']")); assert.verifySteps(['Yeah! Deal of the last 7 days for the team.']); form.destroy(); }); QUnit.test("user record 30 days, click on statusbar", async function (assert) { assert.expect(2); this.testFormView.res_id = 8; this.testFormView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const form = await createView(this.testFormView); await testUtils.dom.click(form.$(".o_statusbar_status button[data-value='3']")); assert.verifySteps(['You just beat your personal record for the past 30 days.']); form.destroy(); }); QUnit.test("user record 7 days, click on statusbar", async function (assert) { assert.expect(2); this.testFormView.res_id = 10; this.testFormView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const form = await createView(this.testFormView); await testUtils.dom.click(form.$(".o_statusbar_status button[data-value='3']")); assert.verifySteps(['You just beat your personal record for the past 7 days.']); form.destroy(); }); QUnit.test("click on stage (not won) on statusbar", async function (assert) { assert.expect(2); this.testFormView.res_id = 1; this.testFormView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const form = await createView(this.testFormView); await testUtils.dom.click(form.$(".o_statusbar_status button[data-value='2']")); assert.verifySteps(['no rainbowman']); form.destroy(); }); QUnit.test("first lead won, drag & drop kanban", async function (assert) { assert.expect(2); this.testKanbanView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const kanban = await createView(this.testKanbanView); kanban.model.defaultGroupedBy = ['stage_id']; await kanban.reload(); await testUtils.dom.dragAndDrop(kanban.$('.o_kanban_record:contains("Lead 6")'), kanban.$('.o_kanban_group:eq(2)')); assert.verifySteps(['Go, go, go! Congrats for your first deal.']); kanban.destroy(); }); QUnit.test("team record 30 days, drag & drop kanban", async function (assert) { assert.expect(2); this.testKanbanView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const kanban = await createView(this.testKanbanView); kanban.model.defaultGroupedBy = ['stage_id']; await kanban.reload(); await testUtils.dom.dragAndDrop(kanban.$('.o_kanban_record:contains("Lead 2")'), kanban.$('.o_kanban_group:eq(2)')); assert.verifySteps(['Boom! Team record for the past 30 days.']); kanban.destroy(); }); QUnit.test("team record 7 days, drag & drop kanban", async function (assert) { assert.expect(2); this.testKanbanView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const kanban = await createView(this.testKanbanView); kanban.model.defaultGroupedBy = ['stage_id']; await kanban.reload(); await testUtils.dom.dragAndDrop(kanban.$('.o_kanban_group:eq(0) .o_kanban_record:contains("Lead 1")'), kanban.$('.o_kanban_group:eq(2)')); assert.verifySteps(['Yeah! Deal of the last 7 days for the team.']); kanban.destroy(); }); QUnit.test("user record 30 days, drag & drop kanban", async function (assert) { assert.expect(2); this.testKanbanView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const kanban = await createView(this.testKanbanView); kanban.model.defaultGroupedBy = ['stage_id']; await kanban.reload(); await testUtils.dom.dragAndDrop(kanban.$('.o_kanban_record:contains("Lead 8")'), kanban.$('.o_kanban_group:eq(2)')); assert.verifySteps(['You just beat your personal record for the past 30 days.']); kanban.destroy(); }); QUnit.test("user record 7 days, drag & drop kanban", async function (assert) { assert.expect(2); this.testKanbanView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const kanban = await createView(this.testKanbanView); kanban.model.defaultGroupedBy = ['stage_id']; await kanban.reload(); await testUtils.dom.dragAndDrop(kanban.$('.o_kanban_record:contains("Lead 10")'), kanban.$('.o_kanban_group:eq(2)')); assert.verifySteps(['You just beat your personal record for the past 7 days.']); kanban.destroy(); }); QUnit.test("drag & drop record kanban in stage not won", async function (assert) { assert.expect(2); this.testKanbanView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; const kanban = await createView(this.testKanbanView); kanban.model.defaultGroupedBy = ['stage_id']; await kanban.reload(); await testUtils.dom.dragAndDrop(kanban.$('.o_kanban_record:contains("Lead 8")'), kanban.$('.o_kanban_group:eq(1)')); assert.verifySteps(["no rainbowman"]); kanban.destroy(); }); QUnit.test("drag & drop record in kanban not grouped by stage_id", async function (assert) { assert.expect(1); this.testKanbanView.mockRPC = async function (route, args) { const result = await this._super(...arguments); if (args.model === 'crm.lead' && args.method === 'get_rainbowman_message') { assert.step(result || "no rainbowman"); } return result; }; this.testKanbanView.groupBy = ['user_id']; const kanban = await createView(this.testKanbanView); kanban.model.defaultGroupedBy = ['stage_id']; await kanban.reload(); await testUtils.dom.dragAndDrop(kanban.$('.o_kanban_group:eq(0) .o_kanban_record:first'), kanban.$('.o_kanban_group:eq(1)')); assert.verifySteps([]); // Should never pass by the rpc kanban.destroy(); }); }); });