import unittest try: import docutils except ImportError: docutils = None from django.contrib.admindocs import utils from django.contrib.auth.models import User from django.test import TestCase from django.test.utils import override_settings @override_settings(PASSWORD_HASHERS=('django.contrib.auth.hashers.SHA1PasswordHasher',)) class XViewMiddlewareTest(TestCase): fixtures = ['data.xml'] urls = 'admin_docs.urls' def test_xview_func(self): user = User.objects.get(username='super') response = self.client.head('/xview/func/') self.assertFalse('X-View' in response) self.client.login(username='super', password='secret') response = self.client.head('/xview/func/') self.assertTrue('X-View' in response) self.assertEqual(response['X-View'], 'admin_docs.views.xview') user.is_staff = False user.save() response = self.client.head('/xview/func/') self.assertFalse('X-View' in response) user.is_staff = True user.is_active = False user.save() response = self.client.head('/xview/func/') self.assertFalse('X-View' in response) def test_xview_class(self): user = User.objects.get(username='super') response = self.client.head('/xview/class/') self.assertFalse('X-View' in response) self.client.login(username='super', password='secret') response = self.client.head('/xview/class/') self.assertTrue('X-View' in response) self.assertEqual(response['X-View'], 'admin_docs.views.XViewClass') user.is_staff = False user.save() response = self.client.head('/xview/class/') self.assertFalse('X-View' in response) user.is_staff = True user.is_active = False user.save() response = self.client.head('/xview/class/') self.assertFalse('X-View' in response) @unittest.skipUnless(docutils, "no docutils installed.") class DefaultRoleTest(TestCase): urls = 'admin_docs.urls' def test_parse_rst(self): """ Tests that ``django.contrib.admindocs.utils.parse_rst`` uses ``cmsreference`` as the default role. """ markup = ('

' 'title

\n') self.assertEqual(utils.parse_rst('`title`', 'model'), markup % 'models/title/') self.assertEqual(utils.parse_rst('`title`', 'view'), markup % 'views/title/') self.assertEqual(utils.parse_rst('`title`', 'template'), markup % 'templates/title/') self.assertEqual(utils.parse_rst('`title`', 'filter'), markup % 'filters/#title') self.assertEqual(utils.parse_rst('`title`', 'tag'), markup % 'tags/#title') def test_publish_parts(self): """ Tests that Django hasn't broken the default role for interpreted text when ``publish_parts`` is used directly, by setting it to ``cmsreference``. See #6681. """ self.assertNotEqual(docutils.parsers.rst.roles.DEFAULT_INTERPRETED_ROLE, 'cmsreference') source = 'reST, `interpreted text`, default role.' markup = '

reST, interpreted text, default role.

\n' parts = docutils.core.publish_parts(source=source, writer_name="html4css1") self.assertEqual(parts['fragment'], markup)