mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	Don't set a global default interpreted role function for reStructuredText. Instead, use the `default-role` directive to change the default only within the `parse_rst()` function. Thanks Malcolm Tredinnick for the report.
		
			
				
	
	
		
			90 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| 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 = ('<p><a class="reference external" href="/admindocs/%s">'
 | |
|                   'title</a></p>\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 = '<p>reST, <cite>interpreted text</cite>, default role.</p>\n'
 | |
|         parts = docutils.core.publish_parts(source=source, writer_name="html4css1")
 | |
|         self.assertEqual(parts['fragment'], markup)
 |