Я тестирую CreateAPIView
с классом APITestCase
. С анонимным пользователем все работает, как и ожидалось, но когда я вхожу в систему () как пользователь, я получаю исключение 405 HttpResponseNotAllowed
. Я могу успешно создать объект во время авторизации от имени пользователя через веб-интерфейс django -rest-framework. Я использую djangorestframework версии 3.9.4 и Django 1.11.29.
Вот основные части кода для общего представления о том, что я делаю:
class SherdNoteCreate(CreateAPIView):
serializer_class = SherdNoteSerializer
def post(self, request, *args, **kwargs):
data = request.data.copy()
data['asset'] = kwargs.get('asset_id')
serializer = SherdNoteSerializer(data=data)
if serializer.is_valid():
serializer.save()
return Response(serializer.data, status=status.HTTP_201_CREATED)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)
class SherdNoteTests(APITestCase):
def test_create_sherdnote_on_own_asset(self):
# Removing this auth block allows the test to pass
self.u = UserFactory(username='test_user')
self.u.set_password('test')
self.u.save()
login = self.client.login(username='test_user', password='test')
assert(login is True)
asset = AssetFactory(primary_source='image', author=self.u)
url = reverse('sherdnote-create', kwargs={'asset_id': asset.pk})
data = {
'title': 'note title',
'body': 'note body'
}
response = self.client.post(url, data, format='json')
# This fails with a 405!
self.assertEqual(response.status_code, status.HTTP_201_CREATED)
Маршрут в urls.py:
url(r'^(?P<asset_id>\d+)/sherdnote/create/$',
SherdNoteCreate.as_view(),
name='sherdnote-create'),
Вот распечатанные response
и response.__dict__
из вышеприведенного теста:
<HttpResponseNotAllowed [GET, HEAD, OPTIONS] status_code=405, "text/html; charset=utf-8">
{'_headers': {'content-type': ('Content-Type', 'text/html; charset=utf-8'), 'allow': ('Allow', 'GET, HEAD, OPTIONS'), 'vary': ('Va
ry', 'Origin, Cookie'), 'x-frame-options': ('X-Frame-Options', 'SAMEORIGIN'), 'content-length': ('Content-Length', '0')}, '_closab
le_objects': [<WSGIRequest: POST '/asset/1/sherdnote/create/'>], '_handler_class': None, 'cookies': <SimpleCookie: >, 'closed': Tr
ue, '_reason_phrase': None, '_charset': None, '_container': [b''], 'wsgi_request': <WSGIRequest: POST '/asset/1/sherdnote/create/'
>, 'client': <rest_framework.test.APIClient object at 0x7f9880902f10>, 'request': {'PATH_INFO': '/asset/1/sherdnote/create/', 'REQ
UEST_METHOD': 'POST', 'SERVER_PORT': '80', 'wsgi.url_scheme': 'http', 'CONTENT_LENGTH': 41, 'CONTENT_TYPE': 'application/json; cha
rset=None', 'wsgi.input': <django.test.client.FakePayload object at 0x7f987e834790>, 'QUERY_STRING': ''}, 'templates': [], 'contex
t': None, 'json': <function curry.<locals>._curried at 0x7f988018e440>, 'resolver_match': <SimpleLazyObject: <function Client.requ
est.<locals>.<lambda> at 0x7f988018eef0>>, '_dont_enforce_csrf_checks': True}
У меня возникли проблемы отслеживая, почему это происходит. У кого-нибудь есть идеи?