[Django]-Django-rest-framework http put failing with 415 on django 1.5

51đź‘Ť

âś…

You’re absolutely on the right track – the breaking test in that case is certainly due to Django’s change in PUT behavior for the test client.

Your fix looks right to me, too. 415 is the “Unsupported Media Type” response, which means that the request content type wasn’t something that could be handled by any of the parsers configured for the view.

Normally in case like this, that’d be due to forgetting to set the content type of the request, but it looks like you’ve got that correctly set to multipart/form-data; boundary=...

Things to double check:

  • Exactly what does response.data display as the error details?
  • What do you have configured in you DEFAULT_PARSER_CLASSES setting, if you have one, or what do you have set on the view attribute parser_classes if it has one?
  • Make sure there’s not a typo in content_type in the test (even though it’s correct here).

Edit:

Thanks for your comments – that clears everything up. You’ve only got the JSON parser installed, but you’re trying to send Form encoded data. You should either:

  • Add FormParser and MultiPartParser to your settings/view, so that it supports form encodings. (Note also that the default DEFAULT_PARSER_CLASSES setting does include them, so if you don’t set anything at all it’ll work as expected)

Or

  • Encode the request using json encoding, not form encoding… data=json.dumps(prepare_dict(self.account)), content_type='application/json' in your test case.
👤Tom Christie

11đź‘Ť

Got a 415 error because I used an instance of django.test import Client instead of rest_framework.test import APIClient. APIClient will encode the data automatically in it’s right way.

Pure json request:

client = APIClient()
client.post(url, format='json', data=json, headers=headers)
client.put(url, format='json', data=json, headers=headers)

Create/Update including file(s):

client = APIClient()
client.post(url, format='multipart', data=data, headers=headers)
client.put(url, format='multipart', data=data, headers=headers)

I spent a lot of time with this 415 error, so I hope this helps anyone else.

👤Tobias Ernst

0đź‘Ť

I got the error 415 while testing POST on Django REST Framework using JSON format. This is what I did to fix it:

I added these Django REST Framework settings to settings.py

REST_FRAMEWORK = {
    'DEFAULT_PARSER_CLASSES': [
        'rest_framework.parsers.JSONParser',
    ],
    'TEST_REQUEST_DEFAULT_FORMAT': 'json',
}

https://www.django-rest-framework.org/api-guide/settings/

In the test file:

from rest_framework.test import RequestsClient
from django.test import TestCase


class MyTestCase(TestCase):

    def test_post(self):
        url = 'http://localhost:8000/api/'
        my_data = {'key_1': 1, 'key_2': 'a_string'}

        client = RequestsClient()

        response = client.post(url, json=my_data, 
                        headers={'content-type': 'application/json'})
        
        status_code = response.status_code
        data = response.json()

Python and packages version:

  • python 3.8.0
  • Django==3.0.6
  • djangorestframework==3.11.0

This is not the solution for the question, but since I ended up here after some search, maybe this can help someone else.

👤angelacpd

Leave a comment