Miroslav Shubernetskiy 10 anni fa
parent
commit
7c843f0f6e

+ 6 - 0
rest_framework_bulk/drf3/serializers.py

@@ -1,4 +1,6 @@
 from __future__ import print_function, unicode_literals
 from __future__ import print_function, unicode_literals
+import inspect
+
 from rest_framework.exceptions import ValidationError
 from rest_framework.exceptions import ValidationError
 from rest_framework.serializers import ListSerializer
 from rest_framework.serializers import ListSerializer
 
 
@@ -41,6 +43,10 @@ class BulkListSerializer(ListSerializer):
             for i in all_validated_data
             for i in all_validated_data
         }
         }
 
 
+        if not all((bool(i) and not inspect.isclass(i)
+                    for i in all_validated_data_by_id.keys())):
+            raise ValidationError('')
+
         # since this method is given a queryset which can have many
         # since this method is given a queryset which can have many
         # model instances, first find all objects to update
         # model instances, first find all objects to update
         # and only then update the models
         # and only then update the models

+ 1 - 2
rest_framework_bulk/tests/test_generics.py

@@ -1,6 +1,5 @@
 from __future__ import unicode_literals, print_function
 from __future__ import unicode_literals, print_function
 import json
 import json
-import unittest
 
 
 from django.core.urlresolvers import reverse
 from django.core.urlresolvers import reverse
 from django.test import TestCase
 from django.test import TestCase
@@ -85,7 +84,6 @@ class TestBulkAPIView(TestCase):
             ]
             ]
         )
         )
 
 
-    @unittest.skip('')
     def test_put_without_update_key(self):
     def test_put_without_update_key(self):
         """
         """
         Test that PUT request updates all submitted resources.
         Test that PUT request updates all submitted resources.
@@ -94,6 +92,7 @@ class TestBulkAPIView(TestCase):
             '',
             '',
             json.dumps([
             json.dumps([
                 {'contents': 'foo', 'number': 3},
                 {'contents': 'foo', 'number': 3},
+                {'contents': 'rainbows', 'number': 4},  # multiple objects without id
                 {'contents': 'bar', 'number': 4, 'id': 555},  # non-existing id
                 {'contents': 'bar', 'number': 4, 'id': 555},  # non-existing id
             ]),
             ]),
             content_type='application/json',
             content_type='application/json',