django-rest-framework/tests/browsable_api/test_browsable_nested_api.py

41 lines
1.3 KiB
Python
Raw Normal View History

2015-07-16 15:40:41 +03:00
from django.test import TestCase
from django.test.utils import override_settings
from django.urls import path
2015-07-16 15:40:41 +03:00
from rest_framework import serializers
from rest_framework.generics import ListCreateAPIView
from rest_framework.renderers import BrowsableAPIRenderer
class NestedSerializer(serializers.Serializer):
one = serializers.IntegerField(max_value=10)
two = serializers.IntegerField(max_value=10)
class NestedSerializerTestSerializer(serializers.Serializer):
2015-07-16 15:40:41 +03:00
nested = NestedSerializer()
class NestedSerializersView(ListCreateAPIView):
renderer_classes = (BrowsableAPIRenderer, )
serializer_class = NestedSerializerTestSerializer
2015-07-16 15:40:41 +03:00
queryset = [{'nested': {'one': 1, 'two': 2}}]
urlpatterns = [
path('api/', NestedSerializersView.as_view(), name='api'),
2015-07-16 15:40:41 +03:00
]
class DropdownWithAuthTests(TestCase):
"""Tests correct dropdown behaviour with Auth views enabled."""
@override_settings(ROOT_URLCONF='tests.browsable_api.test_browsable_nested_api')
def test_login(self):
response = self.client.get('/api/')
assert 200 == response.status_code
content = response.content.decode()
assert 'form action="/api/"' in content
assert 'input name="nested.one"' in content
assert 'input name="nested.two"' in content