test_keys.py 868 B

123456789101112131415161718192021222324252627282930
  1. from django.test.client import RequestFactory
  2. from django.urls import reverse
  3. from fixtures.apidocs_test_case import APIDocsTestCase
  4. from sentry.testutils.silo import region_silo_test
  5. @region_silo_test
  6. class ProjectKeysDocs(APIDocsTestCase):
  7. def setUp(self):
  8. self.url = reverse(
  9. "sentry-api-0-project-keys",
  10. kwargs={"organization_slug": self.organization.slug, "project_slug": self.project.slug},
  11. )
  12. self.login_as(user=self.user)
  13. def test_get(self):
  14. response = self.client.get(self.url)
  15. request = RequestFactory().get(self.url)
  16. self.validate_schema(request, response)
  17. def test_post(self):
  18. data = {"name": "bar"}
  19. response = self.client.post(self.url, data)
  20. request = RequestFactory().post(self.url, data)
  21. self.validate_schema(request, response)