123456789101112131415161718192021222324252627282930313233343536373839 |
- from django.test.client import RequestFactory
- from django.urls import reverse
- from fixtures.apidocs_test_case import APIDocsTestCase
- from sentry.models import EventUser
- from sentry.testutils.silo import region_silo_test
- @region_silo_test(stable=True)
- class ProjectUsersDocs(APIDocsTestCase):
- def setUp(self):
- self.project = self.create_project()
- self.euser1 = EventUser.objects.create(
- project_id=self.project.id,
- ident="1",
- email="foo@example.com",
- username="foobar",
- ip_address="127.0.0.1",
- )
- self.euser2 = EventUser.objects.create(
- project_id=self.project.id,
- ident="2",
- email="bar@example.com",
- username="baz",
- ip_address="192.168.0.1",
- )
- self.url = reverse(
- "sentry-api-0-project-users",
- kwargs={"organization_slug": self.organization.slug, "project_slug": self.project.slug},
- )
- self.login_as(user=self.user)
- def test_get(self):
- response = self.client.get(self.url)
- request = RequestFactory().get(self.url)
- self.validate_schema(request, response)
|