web/test/unittest_urlpublisher.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 10890 504a67206fdc
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.

# -*- coding: utf-8 -*-
# copyright 2003-2014 LOGILAB S.A. (Paris, FRANCE), all rights reserved.
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr
#
# This file is part of CubicWeb.
#
# CubicWeb is free software: you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation, either version 2.1 of the License, or (at your option)
# any later version.
#
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License along
# with CubicWeb.  If not, see <http://www.gnu.org/licenses/>.
"""Unit tests for url publishing service"""

import re

from logilab.common.testlib import unittest_main

from cubicweb.rset import ResultSet
from cubicweb.devtools.testlib import CubicWebTC
from cubicweb.devtools.fake import FakeRequest
from cubicweb.web import NotFound, Redirect, views
from cubicweb.web.views.urlrewrite import SimpleReqRewriter


class URLPublisherTC(CubicWebTC):
    """test suite for QSPreProcessor"""

    def setup_database(self):
        with self.admin_access.repo_cnx() as cnx:
            self.create_user(cnx, u'ÿsaÿe')
            b = cnx.create_entity('BlogEntry', title=u'hell\'o', content=u'blabla')
            # take care: Tag's name normalized to lower case
            c = cnx.create_entity('Tag', name=u'yo')
            cnx.execute('SET C tags B WHERE C eid %(c)s, B eid %(b)s',
                        {'c':c.eid, 'b':b.eid})
            cnx.commit()

    def process(self, req, url):
        return self.app.url_resolver.process(req, url)

    def test_raw_path(self):
        """tests raw path resolution'"""
        with self.admin_access.web_request() as req:
            self.assertEqual(self.process(req, 'view'), ('view', None))
            self.assertEqual(self.process(req, 'edit'), ('edit', None))
            self.assertRaises(NotFound, self.process, req, 'whatever')

    def test_eid_path(self):
        """tests eid path resolution"""
        with self.admin_access.web_request() as req:
            self.assertIsInstance(self.process(req, '123')[1], ResultSet)
            self.assertEqual(len(self.process(req, '123')[1]), 1)
            self.assertRaises(NotFound, self.process, req, '123/345')
            self.assertRaises(NotFound, self.process, req, 'not_eid')

    def test_rest_path_etype(self):
        """tests the rest path resolution"""
        with self.admin_access.web_request() as req:
            ctrl, rset = self.process(req, 'CWEType')
            self.assertEqual(ctrl, 'view')
            self.assertEqual(rset.description[0][0], 'CWEType')
            self.assertEqual("Any X,AA,AB ORDERBY AB WHERE X is_instance_of CWEType, "
                             "X modification_date AA, X name AB",
                             rset.printable_rql())
            self.assertEqual(req.form['vid'], 'sameetypelist')

    def test_rest_path_by_attr(self):
        with self.admin_access.web_request() as req:
            ctrl, rset = self.process(req, 'CWUser/login/admin')
            self.assertEqual(ctrl, 'view')
            self.assertEqual(len(rset), 1)
            self.assertEqual(rset.description[0][0], 'CWUser')
            self.assertEqual('Any X,AA,AB,AC,AD WHERE X is_instance_of CWUser, '
                             'X firstname AA, X login AB, X modification_date AC, '
                             'X surname AD, X login "admin"',
                             rset.printable_rql())

    def test_rest_path_unique_attr(self):
        with self.admin_access.web_request() as req:
            ctrl, rset = self.process(req, 'cwuser/admin')
            self.assertEqual(ctrl, 'view')
            self.assertEqual(len(rset), 1)
            self.assertEqual(rset.description[0][0], 'CWUser')
            self.assertEqual('Any X,AA,AB,AC,AD WHERE X is_instance_of CWUser, '
                             'X firstname AA, X login AB, X modification_date AC, '
                             'X surname AD, X login "admin"',
                             rset.printable_rql())
            self.assertEqual(req.form['vid'], 'primary')

    def test_rest_path_eid(self):
        with self.admin_access.web_request() as req:
            ctrl, rset = self.process(req, 'cwuser/eid/%s' % req.user.eid)
            self.assertEqual(ctrl, 'view')
            self.assertEqual(len(rset), 1)
            self.assertEqual(rset.description[0][0], 'CWUser')
            self.assertEqual('Any X,AA,AB,AC,AD WHERE X is_instance_of CWUser, '
                             'X firstname AA, X login AB, X modification_date AC, '
                             'X surname AD, X eid %s' % rset[0][0],
                             rset.printable_rql())

    def test_rest_path_non_ascii_paths(self):
        with self.admin_access.web_request() as req:
            ctrl, rset = self.process(req, 'CWUser/login/%C3%BFsa%C3%BFe')
            self.assertEqual(ctrl, 'view')
            self.assertEqual(len(rset), 1)
            self.assertEqual(rset.description[0][0], 'CWUser')
            self.assertEqual(u'Any X,AA,AB,AC,AD WHERE X is_instance_of CWUser, '
                             u'X firstname AA, X login AB, X modification_date AC, '
                             u'X surname AD, X login "\xffsa\xffe"',
                             rset.printable_rql())

    def test_rest_path_quoted_paths(self):
        with self.admin_access.web_request() as req:
            ctrl, rset = self.process(req, 'BlogEntry/title/hell%27o')
            self.assertEqual(ctrl, 'view')
            self.assertEqual(len(rset), 1)
            self.assertEqual(rset.description[0][0], 'BlogEntry')
            self.assertEqual(u'Any X,AA,AB,AC WHERE X is_instance_of BlogEntry, '
                             'X creation_date AA, X modification_date AB, X title AC, '
                             'X title "hell\'o"',
                             rset.printable_rql())

    def test_rest_path_use_vid_from_rset(self):
        with self.admin_access.web_request(headers={'Accept': 'application/rdf+xml'}) as req:
            views.VID_BY_MIMETYPE['application/rdf+xml'] = 'rdf'
            try:
                ctrl, rset = self.process(req, 'CWEType')
            finally:
                views.VID_BY_MIMETYPE.pop('application/rdf+xml')
            self.assertEqual(req.form['vid'], 'rdf')

    def test_rest_path_errors(self):
        with self.admin_access.web_request() as req:
            self.assertRaises(NotFound, self.process, req, 'CWUser/eid/30000')
            self.assertRaises(NotFound, self.process, req, 'Workcases')
            self.assertRaises(NotFound, self.process, req, 'CWUser/inexistant_attribute/joe')

    def test_action_path(self):
        """tests the action path resolution"""
        with self.admin_access.web_request() as req:
            self.assertRaises(Redirect, self.process, req, '1/edit')
            self.assertRaises(Redirect, self.process, req, 'Tag/name/yo/edit')
            self.assertRaises(Redirect, self.process, req, 'Tag/yo/edit')
            self.assertRaises(NotFound, self.process, req, 'view/edit')
            self.assertRaises(NotFound, self.process, req, '1/non_action')
            self.assertRaises(NotFound, self.process, req, 'CWUser/login/admin/non_action')

    def test_regexp_path(self):
        """tests the regexp path resolution"""
        with self.admin_access.web_request() as req:
            ctrl, rset = self.process(req, 'add/Task')
            self.assertEqual(ctrl, 'view')
            self.assertEqual(rset, None)
            self.assertEqual(req.form, {'etype': "Task", 'vid': "creation"})
            self.assertRaises(NotFound, self.process, req, 'add/foo/bar')

    def test_nonascii_path(self):
        oldrules = SimpleReqRewriter.rules
        SimpleReqRewriter.rules = [(re.compile('/\w+', re.U), dict(vid='foo'))]
        with self.admin_access.web_request() as req:
            try:
                path = str(FakeRequest().url_quote(u'été'))
                ctrl, rset = self.process(req, path)
                self.assertEqual(rset, None)
                self.assertEqual(req.form, {'vid': "foo"})
            finally:
                SimpleReqRewriter.rules = oldrules


if __name__ == '__main__':
    unittest_main()