2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra.api import Environment
|
|
|
|
import flectra.tests
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
@flectra.tests.common.at_install(False)
|
|
|
|
@flectra.tests.common.post_install(True)
|
|
|
|
class TestWebsiteCrm(flectra.tests.HttpCase):
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
def test_tour(self):
|
2018-01-16 11:34:37 +01:00
|
|
|
self.phantom_js("/", "flectra.__DEBUG__.services['web_tour.tour'].run('website_crm_tour')", "flectra.__DEBUG__.services['web_tour.tour'].tours.website_crm_tour.ready")
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
# need environment using the test cursor as it's not committed
|
|
|
|
cr = self.registry.cursor()
|
|
|
|
assert cr is self.registry.test_cr
|
|
|
|
env = Environment(cr, self.uid, {})
|
|
|
|
record = env['crm.lead'].search([('description', '=', '### TOUR DATA ###')])
|
|
|
|
assert len(record) == 1
|
|
|
|
assert record.contact_name == 'John Smith'
|
|
|
|
assert record.email_from == 'john@smith.com'
|
2018-01-16 11:34:37 +01:00
|
|
|
assert record.partner_name == 'Flectra S.A.'
|