test_generics.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. from __future__ import unicode_literals, print_function
  2. import json
  3. from django.test import TestCase
  4. from django.test.client import RequestFactory
  5. from rest_framework import status
  6. from .simple_app.models import SimpleModel
  7. from .simple_app.views import FilteredBulkAPIView, SimpleBulkAPIView
  8. class TestBulkAPIView(TestCase):
  9. def setUp(self):
  10. super(TestBulkAPIView, self).setUp()
  11. self.view = SimpleBulkAPIView.as_view()
  12. self.request = RequestFactory()
  13. def test_get(self):
  14. """
  15. Test that GET request is successful on bulk view.
  16. """
  17. response = self.view(self.request.get(''))
  18. self.assertEqual(response.status_code, status.HTTP_200_OK)
  19. def test_post_single(self):
  20. """
  21. Test that POST request with single resource only creates a single resource.
  22. """
  23. response = self.view(self.request.post(
  24. '',
  25. json.dumps({'contents': 'hello world', 'number': 1}),
  26. content_type='application/json',
  27. ))
  28. self.assertEqual(response.status_code, status.HTTP_201_CREATED)
  29. self.assertEqual(SimpleModel.objects.count(), 1)
  30. self.assertEqual(SimpleModel.objects.get().contents, 'hello world')
  31. def test_post_bulk(self):
  32. """
  33. Test that POST request with multiple resources creates all posted resources.
  34. """
  35. response = self.view(self.request.post(
  36. '',
  37. json.dumps([
  38. {'contents': 'hello world', 'number': 1},
  39. {'contents': 'hello mars', 'number': 2},
  40. ]),
  41. content_type='application/json',
  42. ))
  43. self.assertEqual(response.status_code, status.HTTP_201_CREATED)
  44. self.assertEqual(SimpleModel.objects.count(), 2)
  45. self.assertEqual(list(SimpleModel.objects.all().values_list('contents', flat=True)), [
  46. 'hello world',
  47. 'hello mars',
  48. ])
  49. def test_put(self):
  50. """
  51. Test that PUT request updates all submitted resources.
  52. """
  53. obj1 = SimpleModel.objects.create(contents='hello world', number=1)
  54. obj2 = SimpleModel.objects.create(contents='hello mars', number=2)
  55. response = self.view(self.request.put(
  56. '',
  57. json.dumps([
  58. {'contents': 'foo', 'number': 3, 'id': obj1.pk},
  59. {'contents': 'bar', 'number': 4, 'id': obj2.pk},
  60. ]),
  61. content_type='application/json',
  62. ))
  63. self.assertEqual(response.status_code, status.HTTP_200_OK)
  64. self.assertEqual(SimpleModel.objects.count(), 2)
  65. self.assertEqual(
  66. list(SimpleModel.objects.all().values_list('id', 'contents', 'number')),
  67. [
  68. (obj1.pk, 'foo', 3),
  69. (obj2.pk, 'bar', 4),
  70. ]
  71. )
  72. def test_patch(self):
  73. """
  74. Test that PATCH request partially updates all submitted resources.
  75. """
  76. obj1 = SimpleModel.objects.create(contents='hello world', number=1)
  77. obj2 = SimpleModel.objects.create(contents='hello mars', number=2)
  78. response = self.view(self.request.patch(
  79. '',
  80. json.dumps([
  81. {'contents': 'foo', 'id': obj1.pk},
  82. {'contents': 'bar', 'id': obj2.pk},
  83. ]),
  84. content_type='application/json',
  85. ))
  86. self.assertEqual(response.status_code, status.HTTP_200_OK)
  87. self.assertEqual(SimpleModel.objects.count(), 2)
  88. self.assertEqual(
  89. list(SimpleModel.objects.all().values_list('id', 'contents', 'number')),
  90. [
  91. (obj1.pk, 'foo', 1),
  92. (obj2.pk, 'bar', 2),
  93. ]
  94. )
  95. def test_delete_not_filtered(self):
  96. """
  97. Test that DELETE is not allowed when results are not filtered.
  98. """
  99. SimpleModel.objects.create(contents='hello world', number=1)
  100. SimpleModel.objects.create(contents='hello mars', number=10)
  101. response = self.view(self.request.delete(''))
  102. self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
  103. def test_delete_filtered(self):
  104. """
  105. Test that DELETE removes all filtered resources.
  106. """
  107. SimpleModel.objects.create(contents='hello world', number=1)
  108. SimpleModel.objects.create(contents='hello mars', number=10)
  109. response = FilteredBulkAPIView.as_view()(self.request.delete(''))
  110. self.assertEqual(response.status_code, status.HTTP_204_NO_CONTENT)
  111. self.assertEqual(SimpleModel.objects.count(), 1)
  112. self.assertEqual(SimpleModel.objects.get().contents, 'hello world')
  113. def test_options(self):
  114. """
  115. Test that OPTIONS request is successful on bulk view.
  116. """
  117. response = self.view(self.request.options(''))
  118. self.assertEqual(response.status_code, status.HTTP_200_OK)