cubicweb/web/test/test_jscript.py
author Philippe Pepiot <ph@itsalwaysdns.eu>
Mon, 30 Mar 2020 15:17:10 +0200
changeset 12958 3667f6df1ec3
parent 11850 87443f279b0f
permissions -rw-r--r--
[server] extract "no pooler" CnxSet class to a _BaseCnxSet class So we get rid of "if self._queue is None" in each method of _CnxSetPool Also add helper get_cnxset(source, size) to instantiate the correct pooler class.

from unittest import SkipTest

from cubicweb.devtools import qunit

from os import path as osp


class JScript(qunit.QUnitTestCase):

    timeout_error = SkipTest
    all_js_tests = (
        ("/static/jstests/test_utils.js", (
            "/data/cubicweb.js",
            "/data/cubicweb.compat.js",
            "/data/cubicweb.python.js",
            "/static/jstests/utils.js",
            ),
         ),

        ("/static/jstests/test_htmlhelpers.js", (
            "/data/cubicweb.js",
            "/data/cubicweb.compat.js",
            "/data/cubicweb.python.js",
            "/data/cubicweb.htmlhelpers.js",
            ),
         ),

        ("/static/jstests/test_ajax.js", (
            "/data/cubicweb.python.js",
            "/data/cubicweb.js",
            "/data/cubicweb.compat.js",
            "/data/cubicweb.htmlhelpers.js",
            "/data/cubicweb.ajax.js",
            ),
         ),
    )


if __name__ == '__main__':
    from unittest import main
    main()