Browse Source

Add tests with failing condition for OPTIONS request method

Mjumbe Wawatu Ukweli 10 years ago
parent
commit
7390f87676

+ 16 - 0
rest_framework_bulk/tests/test_generics.py

@@ -0,0 +1,16 @@
+from django.test import TestCase
+from django.test.client import RequestFactory
+from simple_app.views import SimpleBulkUpdateAPIView
+
+
+class TestBulkUpdateAPIView (TestCase):
+    def test_OPTIONS_request(self):
+        """
+        OPTIONS requests must work for CORS requests. Test that OPTIONS
+        requests aren't failing for simple cases.
+        """
+        view = SimpleBulkUpdateAPIView.as_view()
+        request = RequestFactory().options('')
+        response = view(request)
+
+        self.assertEqual(response.status_code, 200)

+ 1 - 0
tests/settings.py

@@ -12,6 +12,7 @@ DATABASES = {
 INSTALLED_APPS = (
     'django_nose',
     'rest_framework_bulk',
+    'simple_app',
 )
 
 TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

+ 0 - 0
tests/simple_app/__init__.py


+ 5 - 0
tests/simple_app/models.py

@@ -0,0 +1,5 @@
+from django.db import models
+
+
+class SimpleModel (models.Model):
+    contents = models.TextField()

+ 6 - 0
tests/simple_app/views.py

@@ -0,0 +1,6 @@
+from rest_framework_bulk import generics
+from . import models
+
+
+class SimpleBulkUpdateAPIView (generics.BulkUpdateAPIView):
+    model = models.SimpleModel