web/test/unittest_http_headers.py
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 10072 934341b848a6
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.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9989
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     1
import unittest
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     2
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     3
from cubicweb.web import http_headers
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     4
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     5
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     6
class TestGenerators(unittest.TestCase):
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     7
    def test_generate_true_false(self):
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     8
        for v in (True, 1, 'true', 'True', 'TRUE'):
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
     9
            self.assertEqual('true', http_headers.generateTrueFalse(v))
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
    10
        for v in (False, 0, 'false', 'False', 'FALSE'):
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
    11
            self.assertEqual('false', http_headers.generateTrueFalse(v))
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
    12
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
    13
        with self.assertRaises(ValueError):
cfb6e9dab902 [cors] Fix CORS headers generators
Christophe de Vienne <christophe@unlish.com>
parents:
diff changeset
    14
            http_headers.generateTrueFalse('any value')
10072
934341b848a6 [test] missing unittest.main() call in unittest_http_headers.py
David Douard <david.douard@logilab.fr>
parents: 9989
diff changeset
    15
934341b848a6 [test] missing unittest.main() call in unittest_http_headers.py
David Douard <david.douard@logilab.fr>
parents: 9989
diff changeset
    16
if __name__ == '__main__':
934341b848a6 [test] missing unittest.main() call in unittest_http_headers.py
David Douard <david.douard@logilab.fr>
parents: 9989
diff changeset
    17
    from unittest import main
934341b848a6 [test] missing unittest.main() call in unittest_http_headers.py
David Douard <david.douard@logilab.fr>
parents: 9989
diff changeset
    18
    main()