web/test/data/static/jstests/test_ajax.html
author Rémi Cardona <remi.cardona@logilab.fr>, Julien Cristau <julien.cristau@logilab.fr>
Thu, 26 Nov 2015 11:30:54 +0100
changeset 10935 049209b9e9d6
parent 8879 web/test/jstests/test_ajax.html@982a49239420
permissions -rw-r--r--
[qunit] stop dealing with filesystem paths qunit tests need a few things served by cubicweb: - qunit itself, which is now handled by CWDevtoolsStaticController (serving files in cubicweb/devtools/data) - standard cubicweb or cubes data files, handled by the DataController - the tests themselves and their dependencies. These can live in <apphome>/data or <apphome>/static and be served by one of the STATIC_CONTROLLERS This avoids having to guess in CWSoftwareRootStaticController where to serve things from (some files may be installed, others are in the source tree), and should hopefully make it possible to have these tests pass when using tox, and to write qunit tests for cubes, outside of cubicweb itself. This requires modifying the tests to only declare URL paths instead of filesystem paths, and moving support files below test/data/static.

<html>
  <head>
    <!-- dependencies -->
    <script type="text/javascript">
      var JSON_BASE_URL = '';
    </script>
    <script type="text/javascript" src="/data/jquery.js"></script>
    <script src="/data/cubicweb.js" type="text/javascript"></script>
    <script src="/data/cubicweb.htmlhelpers.js" type="text/javascript"></script>
    <script src="/data/cubicweb.python.js" type="text/javascript"></script>
    <script src="/data/cubicweb.compat.js" type="text/javascript"></script>
    <script src="/data/cubicweb.ajax.js" type="text/javascript"></script>
    <!-- qunit files -->
    <script type="text/javascript" src="/devtools/qunit.js"></script>
    <link rel="stylesheet" type="text/css" media="all" href="/devtools/qunit.css" />
    <!-- test suite -->
    <script src="/devtools/cwmock.js" type="text/javascript"></script>
    <script src="test_ajax.js" type="text/javascript"></script>
  </head>
  <body>
    <div id="main"> </div>
    <h1 id="qunit-header">cubicweb.ajax.js functions tests</h1>
    <h2 id="qunit-banner"></h2>
    <ol id="qunit-tests">
  </body>
</html>