import {OrganizationFixture} from 'sentry-fixture/organization';
import {PluginFixture} from 'sentry-fixture/plugin';
import {ProjectFixture} from 'sentry-fixture/project';
import {RouterContextFixture} from 'sentry-fixture/routerContextFixture';
import {render, screen, userEvent} from 'sentry-test/reactTestingLibrary';
import ProjectPluginRow from 'sentry/views/settings/projectPlugins/projectPluginRow';
describe('ProjectPluginRow', function () {
const plugin = PluginFixture();
const org = OrganizationFixture({access: ['project:write']});
const project = ProjectFixture();
const params = {orgId: org.slug, projectId: project.slug};
const routerContext = RouterContextFixture([{organization: org, project}]);
it('calls `onChange` when clicked', async function () {
const onChange = jest.fn();
render(
,
{context: routerContext}
);
await userEvent.click(screen.getByRole('checkbox'));
expect(onChange).toHaveBeenCalledWith('amazon-sqs', true);
});
it('can not enable/disable or configure plugin without `project:write`', async function () {
const onChange = jest.fn();
render(
,
{
organization: OrganizationFixture({access: []}),
}
);
await userEvent.click(screen.getByRole('checkbox'));
expect(onChange).not.toHaveBeenCalled();
});
});