mirror of
				https://github.com/encode/django-rest-framework.git
				synced 2025-10-31 16:07:38 +03:00 
			
		
		
		
	* url() is deprecated in Django 3.1 * update given feedbacks on url() is deprecated in Django 3.1 * Fix test_urlpatterns.py to continue testing mixed re_path() and path() * Fix one missed reference Co-authored-by: sanjusci <sanju.sci9@gmail.com>
		
			
				
	
	
		
			77 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.contrib.auth.models import User
 | |
| from django.http import HttpRequest
 | |
| from django.test import override_settings
 | |
| from django.urls import path
 | |
| 
 | |
| from rest_framework.authentication import TokenAuthentication
 | |
| from rest_framework.authtoken.models import Token
 | |
| from rest_framework.request import is_form_media_type
 | |
| from rest_framework.response import Response
 | |
| from rest_framework.test import APITestCase
 | |
| from rest_framework.views import APIView
 | |
| 
 | |
| 
 | |
| class PostView(APIView):
 | |
|     def post(self, request):
 | |
|         return Response(data=request.data, status=200)
 | |
| 
 | |
| 
 | |
| urlpatterns = [
 | |
|     path('auth', APIView.as_view(authentication_classes=(TokenAuthentication,))),
 | |
|     path('post', PostView.as_view()),
 | |
| ]
 | |
| 
 | |
| 
 | |
| class RequestUserMiddleware:
 | |
|     def __init__(self, get_response):
 | |
|         self.get_response = get_response
 | |
| 
 | |
|     def __call__(self, request):
 | |
|         response = self.get_response(request)
 | |
|         assert hasattr(request, 'user'), '`user` is not set on request'
 | |
|         assert request.user.is_authenticated, '`user` is not authenticated'
 | |
| 
 | |
|         return response
 | |
| 
 | |
| 
 | |
| class RequestPOSTMiddleware:
 | |
|     def __init__(self, get_response):
 | |
|         self.get_response = get_response
 | |
| 
 | |
|     def __call__(self, request):
 | |
|         assert isinstance(request, HttpRequest)
 | |
| 
 | |
|         # Parse body with underlying Django request
 | |
|         request.body
 | |
| 
 | |
|         # Process request with DRF view
 | |
|         response = self.get_response(request)
 | |
| 
 | |
|         # Ensure request.POST is set as appropriate
 | |
|         if is_form_media_type(request.content_type):
 | |
|             assert request.POST == {'foo': ['bar']}
 | |
|         else:
 | |
|             assert request.POST == {}
 | |
| 
 | |
|         return response
 | |
| 
 | |
| 
 | |
| @override_settings(ROOT_URLCONF='tests.test_middleware')
 | |
| class TestMiddleware(APITestCase):
 | |
| 
 | |
|     @override_settings(MIDDLEWARE=('tests.test_middleware.RequestUserMiddleware',))
 | |
|     def test_middleware_can_access_user_when_processing_response(self):
 | |
|         user = User.objects.create_user('john', 'john@example.com', 'password')
 | |
|         key = 'abcd1234'
 | |
|         Token.objects.create(key=key, user=user)
 | |
| 
 | |
|         self.client.get('/auth', HTTP_AUTHORIZATION='Token %s' % key)
 | |
| 
 | |
|     @override_settings(MIDDLEWARE=('tests.test_middleware.RequestPOSTMiddleware',))
 | |
|     def test_middleware_can_access_request_post_when_processing_response(self):
 | |
|         response = self.client.post('/post', {'foo': 'bar'})
 | |
|         assert response.status_code == 200
 | |
| 
 | |
|         response = self.client.post('/post', {'foo': 'bar'}, format='json')
 | |
|         assert response.status_code == 200
 |