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
|
|
|
import flectra.tests
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
class TestUi(flectra.tests.HttpCase):
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
post_install = True
|
|
|
|
at_install = False
|
|
|
|
|
|
|
|
def test_01_admin_forum_tour(self):
|
2018-01-16 11:34:37 +01:00
|
|
|
self.phantom_js("/", "flectra.__DEBUG__.services['web_tour.tour'].run('question')", "flectra.__DEBUG__.services['web_tour.tour'].tours.question.ready", login="admin")
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
def test_02_demo_question(self):
|
|
|
|
with self.cursor() as test_cr:
|
|
|
|
env = self.env(cr=test_cr)
|
|
|
|
forum = env.ref('website_forum.forum_help')
|
|
|
|
demo = env.ref('base.user_demo')
|
|
|
|
demo.karma = forum.karma_post + 1
|
2018-01-16 11:34:37 +01:00
|
|
|
self.phantom_js("/", "flectra.__DEBUG__.services['web_tour.tour'].run('forum_question')", "flectra.__DEBUG__.services['web_tour.tour'].tours.forum_question.ready", login="demo")
|