test_generics.py 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. from __future__ import unicode_literals, print_function
  2. import json
  3. import unittest
  4. from django.core.urlresolvers import reverse
  5. from django.test import TestCase
  6. from django.test.client import RequestFactory
  7. from rest_framework import status
  8. from .simple_app.models import SimpleModel
  9. from .simple_app.views import FilteredBulkAPIView, SimpleBulkAPIView
  10. class TestBulkAPIView(TestCase):
  11. def setUp(self):
  12. super(TestBulkAPIView, self).setUp()
  13. self.view = SimpleBulkAPIView.as_view()
  14. self.request = RequestFactory()
  15. def test_get(self):
  16. """
  17. Test that GET request is successful on bulk view.
  18. """
  19. response = self.view(self.request.get(''))
  20. self.assertEqual(response.status_code, status.HTTP_200_OK)
  21. def test_post_single(self):
  22. """
  23. Test that POST request with single resource only creates a single resource.
  24. """
  25. response = self.view(self.request.post(
  26. '',
  27. json.dumps({'contents': 'hello world', 'number': 1}),
  28. content_type='application/json',
  29. ))
  30. self.assertEqual(response.status_code, status.HTTP_201_CREATED)
  31. self.assertEqual(SimpleModel.objects.count(), 1)
  32. self.assertEqual(SimpleModel.objects.get().contents, 'hello world')
  33. def test_post_bulk(self):
  34. """
  35. Test that POST request with multiple resources creates all posted resources.
  36. """
  37. response = self.view(self.request.post(
  38. '',
  39. json.dumps([
  40. {'contents': 'hello world', 'number': 1},
  41. {'contents': 'hello mars', 'number': 2},
  42. ]),
  43. content_type='application/json',
  44. ))
  45. self.assertEqual(response.status_code, status.HTTP_201_CREATED)
  46. self.assertEqual(SimpleModel.objects.count(), 2)
  47. self.assertEqual(list(SimpleModel.objects.all().values_list('contents', flat=True)), [
  48. 'hello world',
  49. 'hello mars',
  50. ])
  51. def test_put(self):
  52. """
  53. Test that PUT request updates all submitted resources.
  54. """
  55. obj1 = SimpleModel.objects.create(contents='hello world', number=1)
  56. obj2 = SimpleModel.objects.create(contents='hello mars', number=2)
  57. response = self.view(self.request.put(
  58. '',
  59. json.dumps([
  60. {'contents': 'foo', 'number': 3, 'id': obj1.pk},
  61. {'contents': 'bar', 'number': 4, 'id': obj2.pk},
  62. ]),
  63. content_type='application/json',
  64. ))
  65. self.assertEqual(response.status_code, status.HTTP_200_OK)
  66. self.assertEqual(SimpleModel.objects.count(), 2)
  67. self.assertEqual(
  68. list(SimpleModel.objects.all().values_list('id', 'contents', 'number')),
  69. [
  70. (obj1.pk, 'foo', 3),
  71. (obj2.pk, 'bar', 4),
  72. ]
  73. )
  74. @unittest.skip('')
  75. def test_put_without_update_key(self):
  76. """
  77. Test that PUT request updates all submitted resources.
  78. """
  79. response = self.view(self.request.put(
  80. '',
  81. json.dumps([
  82. {'contents': 'foo', 'number': 3},
  83. {'contents': 'bar', 'number': 4, 'id': 555}, # non-existing id
  84. ]),
  85. content_type='application/json',
  86. ))
  87. self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
  88. def test_patch(self):
  89. """
  90. Test that PATCH request partially updates all submitted resources.
  91. """
  92. obj1 = SimpleModel.objects.create(contents='hello world', number=1)
  93. obj2 = SimpleModel.objects.create(contents='hello mars', number=2)
  94. response = self.view(self.request.patch(
  95. '',
  96. json.dumps([
  97. {'contents': 'foo', 'id': obj1.pk},
  98. {'contents': 'bar', 'id': obj2.pk},
  99. ]),
  100. content_type='application/json',
  101. ))
  102. self.assertEqual(response.status_code, status.HTTP_200_OK)
  103. self.assertEqual(SimpleModel.objects.count(), 2)
  104. self.assertEqual(
  105. list(SimpleModel.objects.all().values_list('id', 'contents', 'number')),
  106. [
  107. (obj1.pk, 'foo', 1),
  108. (obj2.pk, 'bar', 2),
  109. ]
  110. )
  111. def test_delete_not_filtered(self):
  112. """
  113. Test that DELETE is not allowed when results are not filtered.
  114. """
  115. SimpleModel.objects.create(contents='hello world', number=1)
  116. SimpleModel.objects.create(contents='hello mars', number=10)
  117. response = self.view(self.request.delete(''))
  118. self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
  119. def test_delete_filtered(self):
  120. """
  121. Test that DELETE removes all filtered resources.
  122. """
  123. SimpleModel.objects.create(contents='hello world', number=1)
  124. SimpleModel.objects.create(contents='hello mars', number=10)
  125. response = FilteredBulkAPIView.as_view()(self.request.delete(''))
  126. self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
  127. self.assertEqual(SimpleModel.objects.count(), 1)
  128. self.assertEqual(SimpleModel.objects.get().contents, 'hello world')
  129. def test_options(self):
  130. """
  131. Test that OPTIONS request is successful on bulk view.
  132. """
  133. response = self.view(self.request.options(''))
  134. self.assertEqual(response.status_code, status.HTTP_200_OK)
  135. class TestBulkAPIViewSet(TestCase):
  136. """
  137. Integration class testing that viewset requests are correctly
  138. routed via bulk router and that expected status code is returned.
  139. """
  140. def setUp(self):
  141. super(TestBulkAPIViewSet, self).setUp()
  142. self.url = reverse('api:simple-list')
  143. def test_get_single(self):
  144. """
  145. Test that we are still able to query single resource
  146. """
  147. response = self.client.get(self.url)
  148. self.assertEqual(response.status_code, status.HTTP_200_OK)
  149. def test_get(self):
  150. """
  151. Test that GET returns 200
  152. """
  153. obj = SimpleModel.objects.create(contents='hello world', number=7)
  154. response = self.client.get(reverse('api:simple-detail', args=[obj.pk]))
  155. self.assertEqual(response.status_code, status.HTTP_200_OK)
  156. def test_post_single(self):
  157. """
  158. Test that POST with single resource returns 201
  159. """
  160. response = self.client.post(
  161. self.url,
  162. data=json.dumps({
  163. 'contents': 'hello world',
  164. 'number': 1,
  165. }),
  166. content_type='application/json',
  167. )
  168. self.assertEqual(response.status_code, status.HTTP_201_CREATED)
  169. def test_post_bulk(self):
  170. """
  171. Test that POST with multiple resources returns 201
  172. """
  173. response = self.client.post(
  174. self.url,
  175. data=json.dumps([
  176. {
  177. 'contents': 'hello world',
  178. 'number': 1,
  179. },
  180. {
  181. 'contents': 'hello mars',
  182. 'number': 2,
  183. },
  184. ]),
  185. content_type='application/json',
  186. )
  187. self.assertEqual(response.status_code, status.HTTP_201_CREATED)
  188. def test_put(self):
  189. """
  190. Test that PUT with multiple resources returns 200
  191. """
  192. obj1 = SimpleModel.objects.create(contents='hello world', number=7)
  193. obj2 = SimpleModel.objects.create(contents='hello mars', number=10)
  194. response = self.client.put(
  195. self.url,
  196. data=json.dumps([
  197. {
  198. 'contents': 'foo',
  199. 'number': 1,
  200. 'id': obj1.pk,
  201. },
  202. {
  203. 'contents': 'bar',
  204. 'number': 2,
  205. 'id': obj2.pk,
  206. },
  207. ]),
  208. content_type='application/json',
  209. )
  210. self.assertEqual(response.status_code, status.HTTP_200_OK)
  211. def test_patch(self):
  212. """
  213. Test that PATCH with multiple partial resources returns 200
  214. """
  215. obj1 = SimpleModel.objects.create(contents='hello world', number=7)
  216. obj2 = SimpleModel.objects.create(contents='hello mars', number=10)
  217. response = self.client.patch(
  218. self.url,
  219. data=json.dumps([
  220. {
  221. 'contents': 'foo',
  222. 'id': obj1.pk,
  223. },
  224. {
  225. 'contents': 'bar',
  226. 'id': obj2.pk,
  227. },
  228. ]),
  229. content_type='application/json',
  230. )
  231. self.assertEqual(response.status_code, status.HTTP_200_OK)
  232. def test_delete(self):
  233. """
  234. Test that PATCH with multiple partial resources returns 200
  235. """
  236. SimpleModel.objects.create(contents='hello world', number=7)
  237. SimpleModel.objects.create(contents='hello mars', number=10)
  238. response = self.client.delete(self.url)
  239. self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)