You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

34 lines
1.5 KiB

# Copyright 2018 Ivan Yelizariev <https://it-projects.info/team/yelizariev>
# Copyright 2018 Kolushov Alex <https://it-projects.info/team/KolushovAlexandr>
# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html).
import odoo.tests
@odoo.tests.common.at_install(True)
@odoo.tests.common.post_install(True)
class TestUi(odoo.tests.HttpCase):
def test_pos_product_qty_available(self):
# needed because tests are run before the module is marked as
# installed. In js web will only load qweb coming from modules
# that are returned by the backend in module_boot. Without
# this you end up with js, css but no qweb.
env = self.env
env['ir.module.module'].search([('name',
'=',
'pos_product_qty_available')],
limit=1).state = 'installed'
env['product.template'].search([('name', '=', 'LED Lamp')]).write({
'type': 'product',
})
# without a delay there might be problems
# caused by a not yet loaded button's action
self.phantom_js("/web",
"odoo.__DEBUG__.services['web_tour.tour']."
"run('tour_pos_product_qty_available', 500)",
"odoo.__DEBUG__.services['web_tour.tour']."
"tours.tour_pos_product_qty_available.ready",
login="admin", timeout=200)