mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
Do not list related field choices in OPTIONS requests.
Do not list related field choices in OPTIONS requests.
This commit is contained in:
parent
9d5773772b
commit
014e24b024
|
@ -137,7 +137,9 @@ class SimpleMetadata(BaseMetadata):
|
|||
elif getattr(field, 'fields', None):
|
||||
field_info['children'] = self.get_serializer_info(field)
|
||||
|
||||
if not field_info.get('read_only') and hasattr(field, 'choices'):
|
||||
if (not field_info.get('read_only') and
|
||||
not isinstance(field, serializers.RelatedField) and
|
||||
hasattr(field, 'choices')):
|
||||
field_info['choices'] = [
|
||||
{
|
||||
'value': choice_value,
|
||||
|
|
|
@ -11,6 +11,8 @@ from rest_framework.renderers import BrowsableAPIRenderer
|
|||
from rest_framework.request import Request
|
||||
from rest_framework.test import APIRequestFactory
|
||||
|
||||
from .models import BasicModel
|
||||
|
||||
request = Request(APIRequestFactory().options('/'))
|
||||
|
||||
|
||||
|
@ -261,10 +263,21 @@ class TestMetadata:
|
|||
view = ExampleView.as_view(versioning_class=scheme)
|
||||
view(request=request)
|
||||
|
||||
|
||||
class TestSimpleMetadataFieldInfo(TestCase):
|
||||
def test_null_boolean_field_info_type(self):
|
||||
options = metadata.SimpleMetadata()
|
||||
field_info = options.get_field_info(serializers.NullBooleanField())
|
||||
assert field_info['type'] == 'boolean'
|
||||
self.assertEqual(field_info['type'], 'boolean')
|
||||
|
||||
def test_related_field_choices(self):
|
||||
options = metadata.SimpleMetadata()
|
||||
BasicModel.objects.create()
|
||||
with self.assertNumQueries(0):
|
||||
field_info = options.get_field_info(
|
||||
serializers.RelatedField(queryset=BasicModel.objects.all())
|
||||
)
|
||||
self.assertNotIn('choices', field_info)
|
||||
|
||||
|
||||
class TestModelSerializerMetadata(TestCase):
|
||||
|
|
Loading…
Reference in New Issue
Block a user