123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161 |
- import {GitHubIntegrationFixture} from 'sentry-fixture/githubIntegration';
- import {OrganizationFixture} from 'sentry-fixture/organization';
- import {ProjectFixture} from 'sentry-fixture/project';
- import {RepositoryFixture} from 'sentry-fixture/repository';
- import {RepositoryProjectPathConfigFixture} from 'sentry-fixture/repositoryProjectPathConfig';
- import {render, screen, userEvent, waitFor} from 'sentry-test/reactTestingLibrary';
- import selectEvent from 'sentry-test/selectEvent';
- import {
- makeClosableHeader,
- makeCloseButton,
- ModalBody,
- ModalFooter,
- } from 'sentry/components/globalModal/components';
- import {AddCodeOwnerModal} from 'sentry/views/settings/project/projectOwnership/addCodeOwnerModal';
- describe('AddCodeOwnerModal', function () {
- const org = OrganizationFixture({features: ['integrations-codeowners']});
- const project = ProjectFixture();
- const integration = GitHubIntegrationFixture();
- const repo = RepositoryFixture({
- integrationId: integration.id,
- id: '5',
- name: 'example/hello-there',
- });
- const codeMapping = RepositoryProjectPathConfigFixture({
- project,
- repo,
- integration,
- stackRoot: 'stack/root',
- sourceRoot: 'source/root',
- });
- beforeEach(function () {
- MockApiClient.addMockResponse({
- url: `/organizations/${org.slug}/code-mappings/`,
- method: 'GET',
- body: [codeMapping],
- });
- MockApiClient.addMockResponse({
- url: `/organizations/${org.slug}/integrations/`,
- method: 'GET',
- body: [integration],
- });
- });
- it('renders', function () {
- render(
- <AddCodeOwnerModal
- Body={ModalBody}
- closeModal={jest.fn()}
- CloseButton={makeCloseButton(jest.fn())}
- Header={makeClosableHeader(jest.fn())}
- Footer={ModalFooter}
- organization={org}
- project={project}
- />
- );
- expect(screen.getByRole('button', {name: 'Add File'})).toBeDisabled();
- });
- it('renders codeowner file', async function () {
- MockApiClient.addMockResponse({
- url: `/organizations/${org.slug}/code-mappings/${codeMapping.id}/codeowners/`,
- method: 'GET',
- body: {html_url: 'blah', filepath: 'CODEOWNERS', raw: '* @MeredithAnya\n'},
- });
- render(
- <AddCodeOwnerModal
- Body={ModalBody}
- closeModal={jest.fn()}
- CloseButton={makeCloseButton(jest.fn())}
- Header={makeClosableHeader(jest.fn())}
- Footer={ModalFooter}
- organization={org}
- project={project}
- />
- );
- await selectEvent.select(screen.getByText('--'), 'example/hello-there');
- expect(screen.getByTestId('icon-check-mark')).toBeInTheDocument();
- expect(screen.getByRole('button', {name: 'Preview File'})).toHaveAttribute(
- 'href',
- 'blah'
- );
- });
- it('renders no codeowner file found', async function () {
- MockApiClient.addMockResponse({
- url: `/organizations/${org.slug}/code-mappings/${codeMapping.id}/codeowners/`,
- method: 'GET',
- statusCode: 404,
- });
- render(
- <AddCodeOwnerModal
- Body={ModalBody}
- closeModal={jest.fn()}
- CloseButton={makeCloseButton(jest.fn())}
- Header={makeClosableHeader(jest.fn())}
- Footer={ModalFooter}
- organization={org}
- project={project}
- />
- );
- await selectEvent.select(screen.getByText('--'), 'example/hello-there');
- expect(screen.getByText('No codeowner file found.')).toBeInTheDocument();
- });
- it('adds codeowner file', async function () {
- MockApiClient.addMockResponse({
- url: `/organizations/${org.slug}/code-mappings/${codeMapping.id}/codeowners/`,
- method: 'GET',
- body: {html_url: 'blah', filepath: 'CODEOWNERS', raw: '* @MeredithAnya\n'},
- });
- const addFileRequest = MockApiClient.addMockResponse({
- url: `/projects/${org.slug}/${project.slug}/codeowners/`,
- method: 'POST',
- body: {},
- });
- const handleCloseModal = jest.fn();
- render(
- <AddCodeOwnerModal
- Body={ModalBody}
- closeModal={handleCloseModal}
- CloseButton={makeCloseButton(jest.fn())}
- Header={makeClosableHeader(jest.fn())}
- Footer={ModalFooter}
- organization={org}
- project={project}
- />
- );
- await selectEvent.select(screen.getByText('--'), 'example/hello-there');
- await userEvent.click(screen.getByRole('button', {name: 'Add File'}));
- await waitFor(() => {
- expect(addFileRequest).toHaveBeenCalledWith(
- `/projects/${org.slug}/${project.slug}/codeowners/`,
- expect.objectContaining({
- data: {codeMappingId: '2', raw: '* @MeredithAnya\n'},
- })
- );
- });
- expect(handleCloseModal).toHaveBeenCalled();
- });
- });
|