2015-01-22 18:29:12 +01:00
|
|
|
from unittest import TestCase
|
|
|
|
|
|
|
|
from openslides.utils import views
|
|
|
|
|
|
|
|
|
2015-02-12 22:42:54 +01:00
|
|
|
class TestAPIView(TestCase):
|
|
|
|
def test_class_creation(self):
|
|
|
|
"""
|
|
|
|
Tests that the APIView has all relevant methods
|
|
|
|
"""
|
2019-01-06 16:22:33 +01:00
|
|
|
http_methods = set(
|
|
|
|
("get", "post", "put", "patch", "delete", "head", "options", "trace")
|
|
|
|
)
|
2015-02-12 22:42:54 +01:00
|
|
|
|
|
|
|
self.assertTrue(
|
|
|
|
http_methods.issubset(views.APIView.__dict__),
|
2019-01-06 16:22:33 +01:00
|
|
|
"All http methods should be defined in the APIView",
|
|
|
|
)
|
2015-02-12 22:42:54 +01:00
|
|
|
self.assertFalse(
|
2019-01-06 16:22:33 +01:00
|
|
|
hasattr(views.APIView, "method_call"),
|
|
|
|
"The APIView should not have the method 'method_call'",
|
|
|
|
)
|