diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/web/tests/test_js.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/web/tests/test_js.py')
| -rw-r--r-- | addons/web/tests/test_js.py | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/addons/web/tests/test_js.py b/addons/web/tests/test_js.py new file mode 100644 index 00000000..4d97e5f2 --- /dev/null +++ b/addons/web/tests/test_js.py @@ -0,0 +1,42 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import re +import odoo.tests + +RE_ONLY = re.compile('QUnit\.only\(') + + +@odoo.tests.tagged('post_install', '-at_install') +class WebSuite(odoo.tests.HttpCase): + + def test_js(self): + # webclient desktop test suite + self.browser_js('/web/tests?mod=web&failfast', "", "", login='admin', timeout=1800) + + def test_check_suite(self): + # verify no js test is using `QUnit.only` as it forbid any other test to be executed + self._check_only_call('web.qunit_suite_tests') + self._check_only_call('web.qunit_mobile_suite_tests') + + def _check_only_call(self, suite): + # As we currently aren't in a request context, we can't render `web.layout`. + # redefinied it as a minimal proxy template. + self.env.ref('web.layout').write({'arch_db': '<t t-name="web.layout"><head><meta charset="utf-8"/><t t-raw="head"/></head></t>'}) + + for asset in self.env['ir.qweb']._get_asset_content(suite, options={})[0]: + filename = asset['filename'] + if not filename or asset['atype'] != 'text/javascript': + continue + with open(filename, 'rb') as fp: + if RE_ONLY.search(fp.read().decode('utf-8')): + self.fail("`QUnit.only()` used in file %r" % asset['url']) + + +@odoo.tests.tagged('post_install', '-at_install') +class MobileWebSuite(odoo.tests.HttpCase): + browser_size = '375x667' + + def test_mobile_js(self): + # webclient mobile test suite + self.browser_js('/web/tests/mobile?mod=web&failfast', "", "", login='admin', timeout=1800) |
