# -*- coding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. from odoo import tests from odoo.addons.base.tests.common import HttpCaseWithUserDemo from odoo.addons.website_livechat.tests.common import TestLivechatCommon @tests.tagged('post_install', '-at_install') class TestLivechatRequestHttpCase(HttpCaseWithUserDemo, TestLivechatCommon): def test_livechat_request_complete_flow(self): self._clean_livechat_sessions() # Send first chat request - Open chat from operator side channel_1 = self._common_chat_request_flow() # Visitor Rates the conversation (Good) self._send_rating(channel_1, self.visitor, 5) # Operator Re-Send a chat request channel_2 = self._common_chat_request_flow() # Visitor Rates the conversation (Bad) self._send_rating(channel_2, self.visitor, 1, "Stop bothering me! I hate you %s has left the conversation.

" % self.visitor.display_name) self.assertEqual(channel.livechat_active, False, "The livechat session must be inactive as the visitor sent his feedback.") return channel def _clean_livechat_sessions(self): # clean every possible mail channel linked to the visitor active_channels = self.env['mail.channel'].search([('livechat_visitor_id', '=', self.visitor.id), ('livechat_active', '=', True)]) for active_channel in active_channels: active_channel._close_livechat_session()