aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_serializer_bulk_update.py
blob: 3341ce590de2ed34c4e62bcb0fb5fcc2fc457be7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
# """
# Tests to cover bulk create and update using serializers.
# """
# from __future__ import unicode_literals
# from django.test import TestCase
# from rest_framework import serializers


# class BulkCreateSerializerTests(TestCase):
#     """
#     Creating multiple instances using serializers.
#     """

#     def setUp(self):
#         class BookSerializer(serializers.Serializer):
#             id = serializers.IntegerField()
#             title = serializers.CharField(max_length=100)
#             author = serializers.CharField(max_length=100)

#         self.BookSerializer = BookSerializer

#     def test_bulk_create_success(self):
#         """
#         Correct bulk update serialization should return the input data.
#         """

#         data = [
#             {
#                 'id': 0,
#                 'title': 'The electric kool-aid acid test',
#                 'author': 'Tom Wolfe'
#             }, {
#                 'id': 1,
#                 'title': 'If this is a man',
#                 'author': 'Primo Levi'
#             }, {
#                 'id': 2,
#                 'title': 'The wind-up bird chronicle',
#                 'author': 'Haruki Murakami'
#             }
#         ]

#         serializer = self.BookSerializer(data=data, many=True)
#         self.assertEqual(serializer.is_valid(), True)
#         self.assertEqual(serializer.object, data)

#     def test_bulk_create_errors(self):
#         """
#         Correct bulk update serialization should return the input data.
#         """

#         data = [
#             {
#                 'id': 0,
#                 'title': 'The electric kool-aid acid test',
#                 'author': 'Tom Wolfe'
#             }, {
#                 'id': 1,
#                 'title': 'If this is a man',
#                 'author': 'Primo Levi'
#             }, {
#                 'id': 'foo',
#                 'title': 'The wind-up bird chronicle',
#                 'author': 'Haruki Murakami'
#             }
#         ]
#         expected_errors = [
#             {},
#             {},
#             {'id': ['Enter a whole number.']}
#         ]

#         serializer = self.BookSerializer(data=data, many=True)
#         self.assertEqual(serializer.is_valid(), False)
#         self.assertEqual(serializer.errors, expected_errors)

#     def test_invalid_list_datatype(self):
#         """
#         Data containing list of incorrect data type should return errors.
#         """
#         data = ['foo', 'bar', 'baz']
#         serializer = self.BookSerializer(data=data, many=True)
#         self.assertEqual(serializer.is_valid(), False)

#         expected_errors = [
#             {'non_field_errors': ['Invalid data']},
#             {'non_field_errors': ['Invalid data']},
#             {'non_field_errors': ['Invalid data']}
#         ]

#         self.assertEqual(serializer.errors, expected_errors)

#     def test_invalid_single_datatype(self):
#         """
#         Data containing a single incorrect data type should return errors.
#         """
#         data = 123
#         serializer = self.BookSerializer(data=data, many=True)
#         self.assertEqual(serializer.is_valid(), False)

#         expected_errors = {'non_field_errors': ['Expected a list of items.']}

#         self.assertEqual(serializer.errors, expected_errors)

#     def test_invalid_single_object(self):
#         """
#         Data containing only a single object, instead of a list of objects
#         should return errors.
#         """
#         data = {
#             'id': 0,
#             'title': 'The electric kool-aid acid test',
#             'author': 'Tom Wolfe'
#         }
#         serializer = self.BookSerializer(data=data, many=True)
#         self.assertEqual(serializer.is_valid(), False)

#         expected_errors = {'non_field_errors': ['Expected a list of items.']}

#         self.assertEqual(serializer.errors, expected_errors)


# class BulkUpdateSerializerTests(TestCase):
#     """
#     Updating multiple instances using serializers.
#     """

#     def setUp(self):
#         class Book(object):
#             """
#             A data type that can be persisted to a mock storage backend
#             with `.save()` and `.delete()`.
#             """
#             object_map = {}

#             def __init__(self, id, title, author):
#                 self.id = id
#                 self.title = title
#                 self.author = author

#             def save(self):
#                 Book.object_map[self.id] = self

#             def delete(self):
#                 del Book.object_map[self.id]

#         class BookSerializer(serializers.Serializer):
#             id = serializers.IntegerField()
#             title = serializers.CharField(max_length=100)
#             author = serializers.CharField(max_length=100)

#             def restore_object(self, attrs, instance=None):
#                 if instance:
#                     instance.id = attrs['id']
#                     instance.title = attrs['title']
#                     instance.author = attrs['author']
#                     return instance
#                 return Book(**attrs)

#         self.Book = Book
#         self.BookSerializer = BookSerializer

#         data = [
#             {
#                 'id': 0,
#                 'title': 'The electric kool-aid acid test',
#                 'author': 'Tom Wolfe'
#             }, {
#                 'id': 1,
#                 'title': 'If this is a man',
#                 'author': 'Primo Levi'
#             }, {
#                 'id': 2,
#                 'title': 'The wind-up bird chronicle',
#                 'author': 'Haruki Murakami'
#             }
#         ]

#         for item in data:
#             book = Book(item['id'], item['title'], item['author'])
#             book.save()

#     def books(self):
#         """
#         Return all the objects in the mock storage backend.
#         """
#         return self.Book.object_map.values()

#     def test_bulk_update_success(self):
#         """
#         Correct bulk update serialization should return the input data.
#         """
#         data = [
#             {
#                 'id': 0,
#                 'title': 'The electric kool-aid acid test',
#                 'author': 'Tom Wolfe'
#             }, {
#                 'id': 2,
#                 'title': 'Kafka on the shore',
#                 'author': 'Haruki Murakami'
#             }
#         ]
#         serializer = self.BookSerializer(self.books(), data=data, many=True, allow_add_remove=True)
#         self.assertEqual(serializer.is_valid(), True)
#         self.assertEqual(serializer.data, data)
#         serializer.save()
#         new_data = self.BookSerializer(self.books(), many=True).data

#         self.assertEqual(data, new_data)

#     def test_bulk_update_and_create(self):
#         """
#         Bulk update serialization may also include created items.
#         """
#         data = [
#             {
#                 'id': 0,
#                 'title': 'The electric kool-aid acid test',
#                 'author': 'Tom Wolfe'
#             }, {
#                 'id': 3,
#                 'title': 'Kafka on the shore',
#                 'author': 'Haruki Murakami'
#             }
#         ]
#         serializer = self.BookSerializer(self.books(), data=data, many=True, allow_add_remove=True)
#         self.assertEqual(serializer.is_valid(), True)
#         self.assertEqual(serializer.data, data)
#         serializer.save()
#         new_data = self.BookSerializer(self.books(), many=True).data
#         self.assertEqual(data, new_data)

#     def test_bulk_update_invalid_create(self):
#         """
#         Bulk update serialization without allow_add_remove may not create items.
#         """
#         data = [
#             {
#                 'id': 0,
#                 'title': 'The electric kool-aid acid test',
#                 'author': 'Tom Wolfe'
#             }, {
#                 'id': 3,
#                 'title': 'Kafka on the shore',
#                 'author': 'Haruki Murakami'
#             }
#         ]
#         expected_errors = [
#             {},
#             {'non_field_errors': ['Cannot create a new item, only existing items may be updated.']}
#         ]
#         serializer = self.BookSerializer(self.books(), data=data, many=True)
#         self.assertEqual(serializer.is_valid(), False)
#         self.assertEqual(serializer.errors, expected_errors)

#     def test_bulk_update_error(self):
#         """
#         Incorrect bulk update serialization should return error data.
#         """
#         data = [
#             {
#                 'id': 0,
#                 'title': 'The electric kool-aid acid test',
#                 'author': 'Tom Wolfe'
#             }, {
#                 'id': 'foo',
#                 'title': 'Kafka on the shore',
#                 'author': 'Haruki Murakami'
#             }
#         ]
#         expected_errors = [
#             {},
#             {'id': ['Enter a whole number.']}
#         ]
#         serializer = self.BookSerializer(self.books(), data=data, many=True, allow_add_remove=True)
#         self.assertEqual(serializer.is_valid(), False)
#         self.assertEqual(serializer.errors, expected_errors)